I am trying to perform leader election. These days I am thinking of using a key-value store to realize that but I am not quite sure if the idea is reliable as for scalability and consistency issues. The real deployment will have thousands of nodes and the election should take place without any central authority or service like zookeeper.

Now that, my question is:

Can I use a key-value store(preferably C-A tunable like riak) to perform the leader election? What are the possible pros/cons of utilizing a KV store for leader election?

Thanks!

EDIT: I am not interested in bully algorithm approach anymore.

link|improve this question

57% accept rate
2  
You should use the Paxos algorithm. Apache ZooKeeper is an open source implementation of it. It has been proven that all distributed consensus algorithms either reduce to Paxos or are incorrect. – Spike Gronim May 26 '11 at 20:25
1  
@spike-gronim can you name the study which shows this reduction to Paxos algo? Thanks! – Aleyna May 29 '11 at 19:37
feedback

1 Answer

A key-value store that does not guarantee consistency (like Riak) is a bad way to do this because you could get two nodes that both think (with reason!) that they are the new leader. A key-value store that guarantees consistency won't guarantee availability in the event of problems, and availability is going to be compromised exactly when you've got problems that could cause the loss of nodes.

The way that I would suggest doing this for thousands of nodes is to go from a straight peer to peer arrangement with thousands of nodes to a hierarchical arrangement. So have a master and several groups. Each incoming node is assigned to a group, which assigns it to a subgroup, which assigns it to a sub-sub group until you find yourself in a sufficiently small peer group. Then master election is only held between the leaders of the groups, and the winner gets promoted from being the leader of that group. If the leader of a group goes away (possibly because of promotion), a master election between the leaders of its subgroups elects the new leader. And so on.

If the peer group gets to be too large, say 26, then its master randomly splits it into 5 smaller groups of 5 peers each, with randomly assigned leaders. Similarly if a peer group gets too small, say 3, then it can petition its leader to be merged with someone else. If the leader notices that it has too few followers, say 3, then it can tell one of them to promote its subgroups to full groups, and to join one of those groups. You can play with those numbers, depending on how much redundancy you need.

This will lead to more elections, but you'll have massively reduced overhead per election. This should be a very significant overall win. For a start randomly confused nodes won't immediately start polling thousands of peers, generating huge spikes in network traffic.

link|improve this answer
btilly thank you so much! Now I can see the tradeoffs between C&A a lot better. So let's say I clustered nodes into several sites hierarchically so that I will have a number of cluster heads participating to the leader election. In my case I will be writing outcome of the election into an RDBMS with ACID guarantees so that each request will be forwarded to the new leader consistently. Would it be harmful if I use eventually consistent KV even in this case? Am I missing any points here? – Aleyna May 26 '11 at 19:49
@Aleyna: The problem with eventually consistent KV is that while you're waiting for the "eventually" bit, you can be inconsistent. For instance node 1 comes in, elects itself master, checks and sees that it is the master, then a node drops out of your KV store, keys get replicated, and the second node comes in, sees that there is no master, elects itself master, and you're in a bad state. If you can trust that some external service is up, then you can do the election in Redis or a relational database. Else hope that smaller peer groups will reduce the pain of master elections. – btilly May 26 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.