Replies: 1 comment
-
|
@heshuhua Trying to provide some hints, assuming you are referring to using
RedisClusterClient handles both redirect following (on
Currently, Jedis attempts a topology refresh (e.g., refreshing slot/node cluster info) on a redirect or after two sequential connection errors. See here. and here. If this root cause is confirmed, it might make sense to introduce a grace period after a topology refresh is performed. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
When a Redis cluster experiences a master node failure while connected with Jedis, there is a delay before a replica is promoted to master. Under high traffic, this causes Jedis client threads to block. We observed that disabling Jedis retries mitigates the performance impact on other Redis shards. What are the potential side effects of this approach? Furthermore, what would be the best practice to handle this situation?
Beta Was this translation helpful? Give feedback.
All reactions