Recall & Review
beginner
What is failover in Redis?
Failover in Redis means switching from the main server (master) to a backup server (replica) when the main server stops working.
Click to reveal answer
beginner
Why do we need a manual failover process in Redis?
Manual failover is needed when automatic failover does not happen or is disabled. It helps keep the system running by promoting a replica to master by hand.
Click to reveal answer
intermediate
Name the Redis command used to manually promote a replica to master.
The command is
CLUSTER FAILOVER when using Redis Cluster or SLAVEOF NO ONE for standalone Redis replicas.Click to reveal answer
beginner
What is the first step in a manual failover process in Redis?
First, check the health of the current master and replicas to confirm the master is down or unreachable.
Click to reveal answer
intermediate
After promoting a replica to master manually, what should you do next?
Update your application or clients to connect to the new master and reconfigure other replicas to follow the new master.
Click to reveal answer
Which Redis command promotes a replica to master in a standalone setup?
✗ Incorrect
In standalone Redis,
SLAVEOF NO ONE promotes a replica to master.What is the main reason to perform manual failover in Redis?
✗ Incorrect
Manual failover is done when automatic failover does not work or is turned off.
Before manual failover, what should you verify?
✗ Incorrect
You must confirm the master is not working before failover.
After manual failover, what must be updated?
✗ Incorrect
Clients need to connect to the new master after failover.
Which Redis feature can automate failover without manual steps?
✗ Incorrect
Redis Sentinel monitors and automatically performs failover.
Describe the manual failover process in Redis step-by-step.
Think about what you do before, during, and after switching servers.
You got /4 concepts.
Explain why manual failover might be necessary even if Redis has automatic failover options.
Consider situations where automation does not work as expected.
You got /4 concepts.