2.3 tipc_paxos.pl: A Replicated Data Store
- author
- Jeffrey Rosenwald (JeffRose@acm.org)
- See also
tipc_broadcast.pl
- Compatibility
- Linux only, tipc_broadcast
- license
- LGPL
This module provides a replicated data store that is coordinated using a variation on Lamport's Paxos concensus protocol. The original method is described in his paper entitled, "The Part-time Parliament", which was published in 1998. The algorithm is tolerant of non-Byzantine failure. That is late or lost delivery or reply, but not senseless delivery or reply. The present algorithm takes advantage of the convenience offered by multicast to the quorum's membership, who can remain anonymous and who can come and go as they please without effecting Liveness or Safety properties.
Paxos' quorum is a set of one or more attentive members, whose processes respond to queries within some known time limit (< 20ms), which includes roundtrip delivery delay. This property is easy to satisfy given that every coordinator is necessarily a member of the quorum as well, and a quorum of one is permitted. An inattentive member (e.g. one whose actions are late or lost) is deemed to be "not-present" for the purposes of the present transaction and consistency cannot be assured for that member. As long as there is at least one attentive member of the quorum, then persistence of the database is assured.
Each member maintains a ledger of terms along with information about when they were originally recorded. The member's ledger is deterministic. That is to say that there can only be one entry per functor/arity combination. No member will accept a new term proposal that has a line number that is equal-to or lower-than the one that is already recorded in the ledger.
Paxos is a three-phase protocol:
1: A coordinator first prepares the quorum for a new proposal by broadcasting a proposed term. The quorum responds by returning the last known line number for that functor/arity combination that is recorded in their respective ledgers.
2: The coordinator selects the highest line number it
receives, increments it by one, and then asks the quorum to finally
accept the new term with the new line number. The quorum checks their
respective ledgers once again and if there is still no other ledger
entry for that functor/arity combination that is equal-to or higher than
the specified line, then each member records the term in the ledger at
the specified line. The member indicates consent by returning the
specified line number back to the coordinator. If consent is withheld by
a member, then the member returns a nack
instead. The
coordinator requires unanimous consent. If it isn't achieved then the
proposal fails and the coordinator must start over from the beginning.
3: Finally, the coordinator concludes the successful
negotiation by broadcasting the agreement to the quorum in the form of a
paxos_changed(Term)
event. This is the only event that
should be of interest to user programs.
For practical reasons, we rely on the partially synchronous behavior (e.g. limited upper time bound for replies) of broadcast_request/1 over TIPC to ensure Progress. Perhaps more importantly, we rely on the fact that the TIPC broadcast listener state machine guarantees the atomicity of broadcast_request/1 at the process level, thus obviating the need for external mutual exclusion mechanisms.
Note that this algorithm does not guarantee the rightness of the value proposed. It only guarantees that if successful, the value proposed is identical for all attentive members of the quorum.
Note also that tipc_paxos now requires an initialization step. See tipc_initialize/0.
- [semidet]tipc_paxos_set(?Term)
- [semidet]tipc_paxos_set(?Term, +Retries)
- negotiates to have Term recorded in the ledger for each of
the quorum's members. This predicate succeeds if the quorum unanimously
accepts the proposed term. If no such entry exists in the Paxon's
ledger, then one is silently created. tipc_paxos_set/1
will retry the transaction several times (default: 20) before failing.
Failure is rare and is usually the result of a collision of two or more
writers writing to the same term at precisely the same time. On failure,
it may be useful to wait some random period of time, and then retry the
transaction. By specifying a retry count of zero, tipc_paxos_set/2
will succeed iff the first ballot succeeds.
On success, tipc_paxos_set/1 will also broadcast the term
paxos_changed(Term)
, to the quorum.Term is a compound that may have unbound variables. Retries (optional) is a non-negative integer specifying the number of retries that will be performed before a set is abandoned. - [semidet]tipc_paxos_get(?Term)
- unifies Term with the entry retrieved from the Paxon's
ledger. If no such entry exists in the member's local cache, then the
quorum is asked to provide a value, which is verified for consistency.
An implied tipc_paxos_set/1
follows. This predicate succeeds if a term with the same functor and
arity exists in the Paxon's ledger, and fails otherwise.
Term is a compound. Any unbound variables are unified with those provided in the ledger entry. - [det]tipc_paxos_replicate(?Term)
- declares that Term is to be automatically replicated to the
quorum each time it becomes grounded. It uses the behavior afforded by
when/2.
Term is an ungrounded Term - [det]tipc_paxos_on_change(?Term, :Goal)
- executes the specified Goal when Term changes. tipc_paxos_on_change/2
listens for paxos_changed/1 notifications
for Term, which are emitted as the result of successful tipc_paxos_set/1
transactions. When one is received for Term, then Goal
is executed in a separate thread of execution.
Term is a compound, identical to that used for tipc_paxos_get/1. Goal is one of: - a callable atom or term, or
- the atom
ignore
, which causes monitoring for Term to be discontinued.
- [semidet]tipc_initialize
- See tipc:tipc_initialize/0.