Recall & Review
beginner
What is the purpose of running multiple Redis Sentinel instances?
Multiple Sentinel instances work together to monitor Redis servers, provide high availability, and perform automatic failover if the master server fails.
Click to reveal answer
intermediate
How do multiple Sentinel instances communicate to decide on a failover?
They use a voting system where each Sentinel votes on whether the master is down. When a majority agrees, failover is triggered.
Click to reveal answer
intermediate
Why is it recommended to run an odd number of Sentinel instances?
An odd number helps avoid ties during voting, ensuring clear decisions on failover and reducing split-brain scenarios.
Click to reveal answer
advanced
What happens if a Sentinel instance loses connection to other Sentinels?
It continues monitoring independently but cannot participate in failover decisions until it reconnects with the majority.
Click to reveal answer
beginner
How do multiple Sentinel instances improve Redis system reliability?
They provide redundancy in monitoring and decision-making, so if one Sentinel fails, others still protect the system from downtime.
Click to reveal answer
Why should you run multiple Redis Sentinel instances?
✗ Incorrect
Multiple Sentinel instances monitor Redis servers and handle failover to keep the system available.
What is the main reason to have an odd number of Sentinel instances?
✗ Incorrect
An odd number prevents ties in voting, ensuring clear failover decisions.
If a Sentinel instance loses connection to others, what happens?
✗ Incorrect
Disconnected Sentinels keep monitoring but cannot participate in failover voting until reconnected.
How do Sentinels decide a master is down?
✗ Incorrect
Sentinels vote, and a majority agreement triggers failover.
What is NOT a benefit of running multiple Sentinel instances?
✗ Incorrect
Sentinels do not increase data storage; they improve monitoring and failover.
Explain how multiple Redis Sentinel instances work together to provide high availability.
Think about how they decide if the master is down and what happens next.
You got /4 concepts.
Why is it important to have an odd number of Sentinel instances in a Redis setup?
Consider how voting works among Sentinels.
You got /3 concepts.