Could someone give me a list of real use cases of Paxos. That is real problems that require consensus as part of a bigger problem.

Is the following a use case of Paxos?

Suppose there are two clients playing poker against each other on a poker server. The poker server is replicated. My understanding of Paxos is that it could be used to maintain consistency of the inmemory data structures that represent the current hand of poker. That is, ensure that all replicas have the exact same inmemory state of the hand.

But why is Paxos necessary? Suppose a new card needs to be dealt. Each replica running the same code will generate the same card if everything went correct. Why can't the clients just request the latest state from all the replicated servers and choose the card that appears the most. So if one server had an error the client will still get the correct state from just choosing the majority.

link|improve this question

55% accept rate
It's kind of overkill for a poker server, unless you're hosting the world poker championship. :) – Nick ODell Jun 3 '11 at 5:39
feedback

2 Answers

up vote 1 down vote accepted

Real life use cases:

  1. The Chubby lock service for loosely-coupled distributed systems

  2. Apache ZooKeeper

link|improve this answer
Another real life use case is RavenDB handling electing of a master node, ayende.com/blog/4824/raven-situational-awareness – Chris Chilvers Jun 3 '11 at 11:18
These aren't problems or use cases, but Paxos implementations or solutions. – Derek Mahar May 15 at 9:03
feedback

In the case you describe, you're right, Paxos isn't really necessary: A single central authority can generate a permutation for the deck and distribute it to everyone at the beginning of the hand. In fact, for a poker game in general, where there's a strict turn order and a single active player as in poker, I can't see a sensible situation in which you might need to use Paxos, except perhaps to elect the central authority that shuffles decks.

A better example might be a game with simultaneous moves, such as Jeopardy. Paxos in this situation would allow all the servers to decide together what sequence a series of closely timed events (such as buzzer presses) occurred in, such that all the servers come to the same conclusion.

link|improve this answer
Wait what if I add the extra constraint that the result needs to be archived into some kind of permanent logging system. Lets say the logging system is a SQL database. So the entire hand history needs to be stored into the SQL database and the money for each player needs to be updated in the SQL database as well. How can this logging be done fault tolerant in the case I described without Paxos but just replica servers. It would seem trying to rely on just one of the servers to write to the SQL database would be prone to the one server crashing. – user782220 Jun 3 '11 at 7:37
@user782220 If you're using an SQL database, you need to rely on its replication - if any - which may or may not use paxos. If you were building your own system to track transactions, though, and you wanted it to be multi-master, yes, you probably would want to use Paxos. – Nick Johnson Jun 3 '11 at 8:14
What do you mean by rely on the replication of SQL database? Isn't relying on the replication of some master SQL database dangerous? Its relying on the master SQL database, of which there is only one, to not become corrupted. Isn't that inherently not fault tolerant. – user782220 Jun 3 '11 at 8:27
@user782220 Relying on a pre-built replication solution is a lot less dangerous than inventing your own! Paxos is extremely tough to get right, and building some sort of synchronization layer on top of an existing DB isn't particularly advisable. Whether or not your database is fault-tolerant depends on the DB and what sort of replication it has. – Nick Johnson Jun 3 '11 at 10:09
feedback

Your Answer

 
or
required, but never shown

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