Paxos algorithm can tolerate up to F failures when using 2F + 1 processors. As far as I understand, this algorithm works only with fixed number of processors. Is it possible to use this algorithm in dynamic environment, where nodes can be added and removed dynamicaly?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Yes it is possible, there are even some papers on it. From what I remember I read a bit on how to do it was described here http://research.microsoft.com/pubs/64634/web-dsn-submission.pdf Hope that's what you were asking about. Look for "dynamic paxos".

link|improve this answer
Dynamic paxos is kinda scarry :) – Lazin Aug 24 '11 at 5:28
@Lazin actually not! I use dynamic Paxos and it has been extremely stable. The idea is that you have two state machines. The first is what you typically think about: the state Paxos is to keep in sync. The other state machine is the membership list of the nodes. Any instance of Paxos must use a snapshot of the membership state machine. – Michael Deardeuff Apr 14 at 6:58
feedback

The Stoppable Paxos paper is a bit easier to understand and permits safe reconfiguration (addition and subtraction of nodes): http://research.microsoft.com/apps/pubs/default.aspx?id=101826

link|improve this answer
feedback

If you have an absolute maximum number of nodes then it should still work. But you'd be left with a situation where your dynamic node count is 6 your maximum is 11, so if 1 node fails you're out of luck (the non-existent nodes are fails by default). If your removing and adding nodes you could restore the state of a node you removed to a node you add to avoid it being counted as a failure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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