I've read Lamport's paper on Paxos. I've also heard that it isn't used much in practice, for reasons of performance. What algorithms are commonly used for consensus in distributed systems?

link|improve this question

76% accept rate
2  
Paxos is used by very (very) large services at Microsoft and Google... – Nathan Howell Jan 4 '10 at 6:40
Yes, but I'm sold that these aren't the basic Paxos that we learned in school, but variants. I'm curious as to exactly what variants of Paxos are in use. – Rob Lachlan Jan 4 '10 at 7:19
1  
Google published a paper about their Paxos implementation: labs.google.com/papers/paxos_made_live.pdf, Microsoft Research (Leslie Lamport, Paxos inventor) has a little info also: research.microsoft.com/en-us/labs/siliconvalley/groups/…. I think you'll find the actual production versions to be close to standard Paxos. – Nathan Howell Jan 4 '10 at 21:33
feedback

5 Answers

Not sure if this is helpful (since this is not from actual production information), but in our "distributed systems" course we've studied, along with Paxos, the Chandra-Toueg and Mostefaoui-Raynal algorithms (of the latter our professor was especially fond).

link|improve this answer
+1 Thanks, those are some good pointers. – Rob Lachlan Jan 4 '10 at 19:56
feedback

If performance is an issue, consider whether you need all of the strong consistency guarantees Paxos gives you. See e.g. http://queue.acm.org/detail.cfm?id=1466448 and http://incubator.apache.org/cassandra/. Searching on Paxos optimised gets me hits, but I suspect that relaxing some of the requirements will buy you more than tuning the protocol.

link|improve this answer
I'm aware of the whole BASE approach, but there are situations which require ACID guarantees, and for those situation we need something like Paxos. But you're right, strict consistency isn't right for everything. – Rob Lachlan Jan 4 '10 at 20:06
feedback

You should check the Apache Zookeeper project. It is used in production by Yahoo! and Facebook among others.

http://hadoop.apache.org/zookeeper/

If you look for academic papers describing it, it is described in a paper at usenix ATC'10. The consensus protocol (a variant of Paxos) is described in a paper at DSN'11.

link|improve this answer
feedback

The Paxos system I run (which supports really, really big web sites) is halfway in-between Basic-Paxos Multi-paxos. I plan on moving it to a full Multi-Paxos implementation.

Paxos isn't that great as a high-throughput data storage system, but it excels in supporting those systems by providing leader election. For example, say you have a replicated data store where you want a single master for performance reasons. Your data store nodes will use the Paxos system to choose the master.

Like Google Chubby, my system is run as a service and can also store data as configuration container. (I use configuration loosely; I hear Google uses Chubby for DNS.) This data doesn't change as often as user input so it doesn't need high throughput write SLAs. Reading, on the other hand, is extremely quick because it is fully replicated and you can read from any node.

link|improve this answer
feedback

Google documented how they did fast paxos for their megastore in the following paper: Link.

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.