Simple retry client for aiohttp
Reason this release was yanked:
https://github.com/inyutin/aiohttp_retry/issues/59#issuecomment-1207519720
Project description
Simple aiohttp retry client
Python 3.7 or higher.
Install: pip install aiohttp-retry.
Examples of usage:
from aiohttp_retry import RetryClient, ExponentialRetry
async def main():
retry_options = ExponentialRetry(attempts=1)
retry_client = RetryClient(raise_for_status=False, retry_options=retry_options)
async with retry_client.get('https://ya.ru') as response:
print(response.status)
await retry_client.close()
from aiohttp import ClientSession
from aiohttp_retry import RetryClient
async def main():
client_session = ClientSession()
retry_client = RetryClient(client_session=client_session)
async with retry_client.get('https://ya.ru') as response:
print(response.status)
await client_session.close()
from aiohttp_retry import RetryClient, RandomRetry
async def main():
retry_options = RandomRetry(attempts=1)
retry_client = RetryClient(raise_for_status=False, retry_options=retry_options)
response = await retry_client.get('/ping')
print(response.status)
await retry_client.close()
from aiohttp_retry import RetryClient
async def main():
async with RetryClient() as client:
async with client.get('https://ya.ru') as response:
print(response.status)
You can also add some logic, F.E. logging, on failures by using trace mechanic.
import logging
import sys
from types import SimpleNamespace
from aiohttp import ClientSession, TraceConfig, TraceRequestStartParams
from aiohttp_retry import RetryClient, ExponentialRetry
handler = logging.StreamHandler(sys.stdout)
logging.basicConfig(handlers=[handler])
logger = logging.getLogger(__name__)
retry_options = ExponentialRetry(attempts=2)
async def on_request_start(
session: ClientSession,
trace_config_ctx: SimpleNamespace,
params: TraceRequestStartParams,
) -> None:
current_attempt = trace_config_ctx.trace_request_ctx['current_attempt']
if retry_options.attempts <= current_attempt:
logger.warning('Wow! We are in last attempt')
async def main():
trace_config = TraceConfig()
trace_config.on_request_start.append(on_request_start)
retry_client = RetryClient(retry_options=retry_options, trace_configs=[trace_config])
response = await retry_client.get('https://httpstat.us/503', ssl=False)
print(response.status)
await retry_client.close()
Look tests for more examples.
Be aware: last request returns as it is.
If the last request ended with exception, that this exception will be raised from RetryClient request
Documentation
RetryClient takes the same arguments as ClientSession[docs]
RetryClient has methods:
- get
- options
- head
- post
- put
- patch
- put
- delete
They are same as for ClientSession, but take one possible additional argument:
class RetryOptionsBase:
def __init__(
self,
attempts: int = 3, # How many times we should retry
statuses: Optional[Iterable[int]] = None, # On which statuses we should retry
exceptions: Optional[Iterable[Type[Exception]]] = None, # On which exceptions we should retry
retry_all_server_errors: bool = True, # If should retry all 500 errors or not
):
...
@abc.abstractmethod
def get_timeout(self, attempt: int, response: Optional[Response] = None) -> float:
raise NotImplementedError
You can specify RetryOptions both for RetryClient and it's methods.
RetryOptions in methods override RetryOptions defined in RetryClient constructor.
Important: by default all 5xx responses are retried + statuses you specified as statuses param
If you will pass retry_all_server_errors=False than you can manually set what 5xx errors to retry.
You can define your own timeouts logic or use:
ExponentialRetrywith exponential backoffRandomRetryfor random backoffListRetrywith backoff you predefine by listFibonacciRetrywith backoff that looks like fibonacci sequenceJitterRetryexponential retry with a bit of randomness
Important: you can server response as an parameter for calculating next timeout.
However this response can be None, server didn't make a response or you have set up raise_for_status=True
Look here for an example: https://github.com/inyutin/aiohttp_retry/issues/59
Request Trace Context
RetryClient add current attempt number to request_trace_ctx (see examples,
for more info see aiohttp doc).
Change URL between retries
You can change URL between retries by specifying url as list of urls. Example:
from aiohttp_retry import RetryClient
retry_client = RetryClient()
async with retry_client.get(url=['/internal_error', '/ping']) as response:
text = await response.text()
assert response.status == 200
assert text == 'Ok!'
await retry_client.close()
In this example we request /interval_error, fail and then successfully request /ping.
If you specify less urls than attempts number in RetryOptions, RetryClient will request last url at last attempts.
This means that in example above we would request /ping once again in case of failure.
Types
aiohttp_retry is a typed project. It should be fully compatablie with mypy.
It also introduce one special type:
ClientType = Union[ClientSession, RetryClient]
This type can be imported by from aiohttp_retry.types import ClientType
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiohttp_retry-2.5.6.tar.gz.
File metadata
- Download URL: aiohttp_retry-2.5.6.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09795c80d70a9e923ce358874976ebacba31a67b049c20b59b4be62791bda27c
|
|
| MD5 |
ce5ead0c13b83584c5f1a1e97a712f18
|
|
| BLAKE2b-256 |
fb6501b13d04017fa0e99871785b7d5d0a26a72a7ea9ace3693e53c739ce4f4d
|
File details
Details for the file aiohttp_retry-2.5.6-py3-none-any.whl.
File metadata
- Download URL: aiohttp_retry-2.5.6-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3934e7377b0bad6f81f1baf1da487e1c5c999809867db008a014b8456909f24
|
|
| MD5 |
5eb290ce51bbb97836e09161fc2b4000
|
|
| BLAKE2b-256 |
ce55bedfdc2a5a02092b3b6fb6bfe1dc64b36caa930176e66075159b8432e414
|