You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in #527 - if the connection is reset while you have a long running connection open, while the connection will self heal, the first request after network issues or a Tile38 restart will cause a redis.ConnectionError to be thrown.
Adding retry to the redis client will cause this error to be retried meaning it is never raised.
diff --git a/pyle38/client.py b/pyle38/client.py
index 94d89ca..7980f1f 100644
--- a/pyle38/client.py+++ b/pyle38/client.py@@ -2,6 +2,8 @@ from enum import Enum
from typing import Dict, Sequence, Union
import redis.asyncio as redis
+from redis.asyncio.retry import Retry+from redis.backoff import ExponentialBackoff
from redis.asyncio.connection import parse_url
from .parse_response import parse_response
@@ -157,6 +159,8 @@ class Client:
single_connection_client=True,
decode_responses=True,
redis_connect_func=self.__on_connect,
+ retry=Retry(ExponentialBackoff(), 10), # about 3 seconds+ retry_on_error=[redis.ConnectionError, redis.TimeoutError],
)
self.__redis = r
It would be great to be able to configure this from the pyle38 side. Either by having the retry configurable, or by being able to pass an entire redis client to pyle38.
First check
Example
Here's a self-contained, minimal, reproducible, example with my use case:
Description
As discussed in #527 - if the connection is reset while you have a long running connection open, while the connection will self heal, the first request after network issues or a Tile38 restart will cause a
redis.ConnectionError
to be thrown.Adding retry to the redis client will cause this error to be retried meaning it is never raised.
It would be great to be able to configure this from the pyle38 side. Either by having the retry configurable, or by being able to pass an entire redis client to pyle38.
The text was updated successfully, but these errors were encountered: