0
0
Redisquery~5 mins

Failover manual process in Redis - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AMASTER REPLICA
BCLUSTER FAILOVER
CFAILOVER START
DSLAVEOF NO ONE
What is the main reason to perform manual failover in Redis?
ATo backup data
BAutomatic failover failed or is disabled
CTo restart Redis server
DTo clear cache
Before manual failover, what should you verify?
AMaster server is down or unreachable
BReplica has more data
CNetwork speed is fast
DClients are disconnected
After manual failover, what must be updated?
AClient connections to point to new master
BRedis version
CDisk space
DFirewall rules
Which Redis feature can automate failover without manual steps?
ARedis Backup
BRedis CLI
CRedis Sentinel
DRedis Cache
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.