Nick Craver
Nick Craver
For the other projects: if using the StackExchange.Redis client, we'd recommend upgrading to latest (2.6.x) and see if you actually hit any issues. If so, please ping ASAP and let's...
This looks like it's actually a slow SCAN - I recommend checking out the [SLOWLOG](https://redis.io/commands/slowlog-get/) server-side to see if anything's apparent there.
@sanjaysingharcadix I noticed here that you've only been connected 60 sec - is this happening right after connect a lot? Or is it possible you're re-creating multiplexers often? (they're meant...
@xclw2000 This seems like a disconnect happened - potential service maintenance? It's not abnormal to see this occasionally when those events happen, but what frequency are we talking about here?
@daviddahan01 This is handled for you by the multiplexer, you need only connect to the sentinel instances to get a connection to the current primary standalone instance, so instead of...
Can you show me current code and the error? The core bits are: connect to the sentinels, with a service name specified (so it knows _which_ primary to return).
Are you sure the code you have is getting deployed? That call stack still shows a direct call to `GetSentinelMasterConnection` which doesn't match your code. It would be an exception...
Looks like you're still not connecting, maybe still firewall. 2 things you'll want to do: 1. _Don't_ set `AbortOnConnectFail` to false, you want it true so it throws when diagnosing...
Since we ended up going the #2168 route - cleaning up!
We've added more info to the exception here for relevant cases like this, but inability to connect in this one is a config issue, hope you were able to figure...