Which of the following sequences correctly describes the manual failover process in Redis Sentinel?
Think about the order: first change the role, then inform the system, then clients.
In manual failover, you first promote the slave to master, then notify Sentinel so it updates its state, and finally update clients to connect to the new master.
What is the expected output after running SLAVEOF NO ONE on a Redis slave during manual failover?
SLAVEOF NO ONE
Consider the standard Redis response for successful commands.
The SLAVEOF NO ONE command successfully promotes the slave to master and returns +OK.
Which of the following Redis CLI commands correctly initiates manual failover by promoting a slave to master?
Remember the exact Redis command to stop replication and become master.
SLAVEOF NO ONE is the correct command to promote a slave to master manually.
After manually promoting a slave to master, clients still connect to the old master. What is the most likely cause?
Think about what clients need to do after failover.
Clients must update their connection settings to the new master; otherwise, they keep connecting to the old master.
Which approach best minimizes downtime during a manual failover in Redis Sentinel?
Consider how to automate client switching to reduce manual steps.
Pre-configuring clients to listen to Sentinel notifications allows automatic and fast switching to the new master, minimizing downtime.