Replies: 1 comment 1 reply
-
Ideally, you query your AWS deployment for the presence/absence of clusters and nodes if Redis-specific details aren't sufficient. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I am currently building an application that manages a connection pool to multiple Redis clusters. The application uses caching to store metadata related to the cluster management. Sometimes this metadata can become stale. It's possible for commands to be send to a cluster that no longer exists in this case.
The challenge I'm currently wrestling with is the ability to assert a node is no longer present, rather than there being a network partition, by only trying to make a network request to it. I know this is not possible, but I'm hoping someone can help me understand what the closest alternative is to this. For reference, I am using AWS ElastiCache to manage the underlying infrastructure of the Redis resources.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions