fix: validate connection health and handle missing slots in cluster refresh #944
+185
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes critical bug where broken connections were blindly reused during cluster
topology refresh, causing persistent "wrong shard/slot" errors requiring pod restarts.
Root Cause
During
_refresh(), connections were reused without health validation. Networkissues could break connections, which would persist in error state indefinitely
across refresh cycles.
Changes
Validate connection health with
Error()before reusingAdd replica-to-master fallback for missing replica slots
Impact
This pull request improves the reliability of the Redis cluster client by ensuring that unhealthy (broken) connections are not reused after a topology refresh, and by making slot mapping more robust when the cluster topology is incomplete. It also adds comprehensive tests to validate these behaviors.
Testing enhancements: