Overview - Sentinel quorum concept
What is it?
Sentinel quorum is a rule used by Redis Sentinel to decide when to take action on a Redis server. It means that a certain number of Sentinel instances must agree that a Redis master is down before starting a failover. This helps avoid mistakes caused by temporary network issues or false alarms. Quorum ensures that Sentinel acts only when there is a real problem.
Why it matters
Without quorum, a single Sentinel might wrongly think the master is down and trigger unnecessary failovers. This could cause data loss or service interruptions. Quorum protects Redis systems by requiring multiple Sentinels to confirm a failure, making the system more reliable and stable. It helps keep your data safe and your applications running smoothly.
Where it fits
Before learning about Sentinel quorum, you should understand what Redis Sentinel is and how it monitors Redis servers. After grasping quorum, you can learn about failover processes and how Sentinel manages master and replica roles automatically. This fits into the bigger picture of building highly available Redis systems.