Reputation: 133
I'm trying to set up Redis Sentinel. I know that when a master goes down the sentinel pick up one of its slaves and promote it as master. I was wondering based on which attributes the new master is selected among the slaves and which slave got selected for being a new master?
Upvotes: 2
Views: 1438
Reputation: 1092
After Sentinels election, the leader sentinel will do the following steps:
So you can see the process order of master selection can be following order:
Upvotes: 2