Now that Redis Cluster comes with sharding, replication and automatic failover, do i still need to use Sentinel for failover handling ?
Asked
Active
Viewed 478 times
1 Answers
3
No. Sentinel is for managing the availability and providing service discovery when using Redis in single instance mode (single-master/one-or-more-slaves). When using Redis in cluster mode, Sentinel isn't needed.

Itamar Haber
- 47,336
- 7
- 91
- 117
-
Thanks. I was actully quite confused as to what architecture I should go with for my cloud deployment. – Aryan Singh Jun 05 '17 at 10:09
-
Why isn't sentinel needed when sharding? – Don Rhummy Aug 23 '19 at 23:54
-
@DonRhummy because Redis Cluster has its own failover and discovery mechanisms – Itamar Haber Aug 24 '19 at 10:21