-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
Hi,
We've been using StackExchange.Redis version 1.2.6 NuGet to communicate with our Azure instance for the last year. As we suffered from a lot of transient connection failures, we recently decided to upgrade the StackExchange.Redis NuGet version to 2.0.601 as it promised to be provide more network stabillity.
However, we are now getting a new type of transient errors, some of the errors I've collected are:
- StackExchange.Redis.RedisConnectionException: UnableToConnect
- StackExchange.Redis.RedisConnectionException: Failed to write ---> StackExchange.Redis.RedisConnectionException: No connection is available to service this operation: SET
3.StackExchange.Redis.RedisConnectionException: SocketFailure on redis.server.dns
Our connection string contains the following configuration:
- abortConnect=false
- ssl=true
Our Cloud Service communicates with 2 different Azure Redis instances (each one different purposes) and both of them have the same issues.
Both Redis servers are not heavily utilized.
Can someone advise how can we overcome this transient errors except adding retry logic ?
Does anyone else suffers from the same issues?
Thanks.