Can I use a load balancer in front of redis sentinels?

1.9k views Asked by At

We run a container environment (Kubernetes) and we have a set of redis sentinels that watch over a bunch of redis instances.

Since it's a containerized environment, configuration is mostly dynamic. A sentinel container might die, another one replaces it, etc.

This poses a problem for application configuration. Normally on a static setup, you provide the client with all the addresses for the sentinels and he works with it. On a frozen container, if the environment change, the configuration becomes outdated.

To solve this, we can use a load balancer in front of the redis sentinels. This way even if the underlying containers/ips change, the application configuration is still valid.

I'm aware that sentinels never forget other sentinels (and the same for slaves) but we can flush those when changes do happen.

We do use this today, and haven't felt any side-effects AFAIK, but of course I'd like to know if there's a risk of something going wrong because of this.

So the question is: can I use a load balancer in front of redis sentinels without any major issues?

0

There are 0 answers