-
Notifications
You must be signed in to change notification settings - Fork 27
Quorum Computation
C0rWin edited this page Jul 28, 2019
·
2 revisions
Given a cluster size of N
nodes, which tolerates f
failures according to, quorum size should satisfies the following:
f = argmax ( N >= 3f+1 )
where Q
is the size of the quorum such that, any two subsets q1
, q2
of size Q
, intersect in at least f+1
nodes.
NOTE: that this is different from N-f (the number of correct nodes), when N=3f+3. That is, we have two extra nodes above the minimum required to tolerate f failures.