Hi Guys,

We have a requirement for redis cache to store session information for one of the application we use in-house.

To ensure high availability I have created a redis cluster with 3 VM’s. 3 masters and 3 slaves.

But unable to find out how to provide a single IP/DNS name for client to access the cluster?

Comment From: itamarhaber

Hello @vaemjal

To use a Redis cluster with a single address you'll need a proxy such as https://github.com/RedisLabs/redis-cluster-proxy. Cluster clients expect one or more nodes' addresses, not a single one. Alternatively, you can you a non-clustered Redis with Sentinel - that setup provides service discovery.

Keep in mind that this issue tracker should be used for reporting bugs or proposing improvements to the Redis server. Kindly close this issue.

Questions should be directed to the community:

Comment From: vaemjal

Hi Mate,

Sure thank you.