You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

323 lines
15 KiB

  1. ---
  2. order: 3
  3. ---
  4. # Proposer Selection Procedure
  5. This document specifies the Proposer Selection Procedure that is used in Tendermint to choose a round proposer.
  6. As Tendermint is “leader-based protocol”, the proposer selection is critical for its correct functioning.
  7. At a given block height, the proposer selection algorithm runs with the same validator set at each round .
  8. Between heights, an updated validator set may be specified by the application as part of the ABCIResponses' EndBlock.
  9. ## Requirements for Proposer Selection
  10. This sections covers the requirements with Rx being mandatory and Ox optional requirements.
  11. The following requirements must be met by the Proposer Selection procedure:
  12. ### R1: Determinism
  13. Given a validator set `V`, and two honest validators `p` and `q`, for each height `h` and each round `r` the following must hold:
  14. `proposer_p(h,r) = proposer_q(h,r)`
  15. where `proposer_p(h,r)` is the proposer returned by the Proposer Selection Procedure at process `p`, at height `h` and round `r`.
  16. ### R2: Fairness
  17. Given a validator set with total voting power P and a sequence S of elections. In any sub-sequence of S with length C*P, a validator v must be elected as proposer P/VP(v) times, i.e. with frequency:
  18. f(v) ~ VP(v) / P
  19. where C is a tolerance factor for validator set changes with following values:
  20. - C == 1 if there are no validator set changes
  21. - C ~ k when there are validator changes
  22. *[this needs more work]*
  23. ## Basic Algorithm
  24. At its core, the proposer selection procedure uses a weighted round-robin algorithm.
  25. A model that gives a good intuition on how/ why the selection algorithm works and it is fair is that of a priority queue. The validators move ahead in this queue according to their voting power (the higher the voting power the faster a validator moves towards the head of the queue). When the algorithm runs the following happens:
  26. - all validators move "ahead" according to their powers: for each validator, increase the priority by the voting power
  27. - first in the queue becomes the proposer: select the validator with highest priority
  28. - move the proposer back in the queue: decrease the proposer's priority by the total voting power
  29. Notation:
  30. - vset - the validator set
  31. - n - the number of validators
  32. - VP(i) - voting power of validator i
  33. - A(i) - accumulated priority for validator i
  34. - P - total voting power of set
  35. - avg - average of all validator priorities
  36. - prop - proposer
  37. Simple view at the Selection Algorithm:
  38. ```md
  39. def ProposerSelection (vset):
  40. // compute priorities and elect proposer
  41. for each validator i in vset:
  42. A(i) += VP(i)
  43. prop = max(A)
  44. A(prop) -= P
  45. ```
  46. ## Stable Set
  47. Consider the validator set:
  48. Validator | p1 | p2
  49. ----------|----|---
  50. VP | 1 | 3
  51. Assuming no validator changes, the following table shows the proposer priority computation over a few runs. Four runs of the selection procedure are shown, starting with the 5th the same values are computed.
  52. Each row shows the priority queue and the process place in it. The proposer is the closest to the head, the rightmost validator. As priorities are updated, the validators move right in the queue. The proposer moves left as its priority is reduced after election.
  53. | Priority Run | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | Alg step |
  54. |----------------|----|----|-------|----|-------|----|----|----|------------------|
  55. | | | | p1,p2 | | | | | | Initialized to 0 |
  56. | run 1 | | | | p1 | | p2 | | | A(i)+=VP(i) |
  57. | | | p2 | | p1 | | | | | A(p2)-= P |
  58. | run 2 | | | | | p1,p2 | | | | A(i)+=VP(i) |
  59. | | p1 | | | | p2 | | | | A(p1)-= P |
  60. | run 3 | | p1 | | | | | | p2 | A(i)+=VP(i) |
  61. | | | p1 | | p2 | | | | | A(p2)-= P |
  62. | run 4 | | | p1 | | | | p2 | | A(i)+=VP(i) |
  63. | | | | p1,p2 | | | | | | A(p2)-= P |
  64. It can be shown that:
  65. - At the end of each run k+1 the sum of the priorities is the same as at end of run k. If a new set's priorities are initialized to 0 then the sum of priorities will be 0 at each run while there are no changes.
  66. - The max distance between priorites is (n-1) *P.*[formal proof not finished]*
  67. ## Validator Set Changes
  68. Between proposer selection runs the validator set may change. Some changes have implications on the proposer election.
  69. ### Voting Power Change
  70. Consider again the earlier example and assume that the voting power of p1 is changed to 4:
  71. Validator | p1 | p2
  72. ----------|----|---
  73. VP | 4 | 3
  74. Let's also assume that before this change the proposer priorites were as shown in first row (last run). As it can be seen, the selection could run again, without changes, as before.
  75. | Priority Run | -2 | -1 | 0 | 1 | 2 | Comment |
  76. |----------------|----|----|---|----|----|-------------------|
  77. | last run | | p2 | | p1 | | __update VP(p1)__ |
  78. | next run | | | | | p2 | A(i)+=VP(i) |
  79. | | p1 | | | | p2 | A(p1)-= P |
  80. However, when a validator changes power from a high to a low value, some other validator remain far back in the queue for a long time. This scenario is considered again in the Proposer Priority Range section.
  81. As before:
  82. - At the end of each run k+1 the sum of the priorities is the same as at run k.
  83. - The max distance between priorites is (n-1) * P.
  84. ### Validator Removal
  85. Consider a new example with set:
  86. Validator | p1 | p2 | p3
  87. ----------|----|----|---
  88. VP | 1 | 2 | 3
  89. Let's assume that after the last run the proposer priorities were as shown in first row with their sum being 0. After p2 is removed, at the end of next proposer selection run (penultimate row) the sum of priorities is -2 (minus the priority of the removed process).
  90. The procedure could continue without modifications. However, after a sufficiently large number of modifications in validator set, the priority values would migrate towards maximum or minimum allowed values causing truncations due to overflow detection.
  91. For this reason, the selection procedure adds another __new step__ that centers the current priority values such that the priority sum remains close to 0.
  92. | Priority Run | -3 | -2 | -1 | 0 | 1 | 2 | 4 | Comment |
  93. |----------------|----|----|----|---|----|----|---|-----------------------|
  94. | last run | p3 | | | | p1 | p2 | | __remove p2__ |
  95. | nextrun | | | | | | | | |
  96. | __new step__ | | p3 | | | | p1 | | A(i) -= avg, avg = -1 |
  97. | | | | | | p3 | p1 | | A(i)+=VP(i) |
  98. | | | | p1 | | p3 | | | A(p1)-= P |
  99. The modified selection algorithm is:
  100. ```md
  101. def ProposerSelection (vset):
  102. // center priorities around zero
  103. avg = sum(A(i) for i in vset)/len(vset)
  104. for each validator i in vset:
  105. A(i) -= avg
  106. // compute priorities and elect proposer
  107. for each validator i in vset:
  108. A(i) += VP(i)
  109. prop = max(A)
  110. A(prop) -= P
  111. ```
  112. Observations:
  113. - The sum of priorities is now close to 0. Due to integer division the sum is an integer in (-n, n), where n is the number of validators.
  114. ### New Validator
  115. When a new validator is added, same problem as the one described for removal appears, the sum of priorities in the new set is not zero. This is fixed with the centering step introduced above.
  116. One other issue that needs to be addressed is the following. A validator V that has just been elected is moved to the end of the queue. If the validator set is large and/ or other validators have significantly higher power, V will have to wait many runs to be elected. If V removes and re-adds itself to the set, it would make a significant (albeit unfair) "jump" ahead in the queue.
  117. In order to prevent this, when a new validator is added, its initial priority is set to:
  118. ```md
  119. A(V) = -1.125 * P
  120. ```
  121. where P is the total voting power of the set including V.
  122. Curent implementation uses the penalty factor of 1.125 because it provides a small punishment that is efficient to calculate. See [here](https://github.com/tendermint/tendermint/pull/2785#discussion_r235038971) for more details.
  123. If we consider the validator set where p3 has just been added:
  124. Validator | p1 | p2 | p3
  125. ----------|----|----|---
  126. VP | 1 | 3 | 8
  127. then p3 will start with proposer priority:
  128. ```md
  129. A(p3) = -1.125 * (1 + 3 + 8) ~ -13
  130. ```
  131. Note that since current computation uses integer division there is penalty loss when sum of the voting power is less than 8.
  132. In the next run, p3 will still be ahead in the queue, elected as proposer and moved back in the queue.
  133. | Priority Run | -13 | -9 | -5 | -2 | -1 | 0 | 1 | 2 | 5 | 6 | 7 | Alg step |
  134. |----------------|-----|----|----|----|----|---|---|----|----|----|----|-----------------------|
  135. | last run | | | | p2 | | | | p1 | | | | __add p3__ |
  136. | | p3 | | | p2 | | | | p1 | | | | A(p3) = -4 |
  137. | next run | | p3 | | | | | | p2 | | p1 | | A(i) -= avg, avg = -4 |
  138. | | | | | | p3 | | | | p2 | | p1 | A(i)+=VP(i) |
  139. | | | | p1 | | p3 | | | | p2 | | | A(p1)-=P |
  140. ## Proposer Priority Range
  141. With the introduction of centering, some interesting cases occur. Low power validators that bind early in a set that includes high power validator(s) benefit from subsequent additions to the set. This is because these early validators run through more right shift operations during centering, operations that increase their priority.
  142. As an example, consider the set where p2 is added after p1, with priority -1.125 * 80k = -90k. After the selection procedure runs once:
  143. Validator | p1 | p2 | Comment
  144. ----------|------|------|------------------
  145. VP | 80k | 10 |
  146. A | 0 | -90k | __added p2__
  147. A | -45k | 45k | __run selection__
  148. Then execute the following steps:
  149. 1. Add a new validator p3:
  150. Validator | p1 | p2 | p3
  151. ----------|-----|----|---
  152. VP | 80k | 10 | 10
  153. 2. Run selection once. The notation '..p'/'p..' means very small deviations compared to column priority.
  154. | Priority Run | -90k.. | -60k | -45k | -15k | 0 | 45k | 75k | 155k | Comment |
  155. |---------------|--------|------|------|------|---|-----|-----|------|--------------|
  156. | last run | p3 | | p2 | | | p1 | | | __added p3__ |
  157. | next run
  158. | *right_shift*| | p3 | | p2 | | | p1 | | A(i) -= avg,avg=-30k
  159. | | | ..p3| | ..p2| | | | p1 | A(i)+=VP(i)
  160. | | | ..p3| | ..p2| | | p1.. | | A(p1)-=P, P=80k+20
  161. 3. Remove p1 and run selection once:
  162. Validator | p3 | p2 | Comment
  163. ----------|--------|-------|------------------
  164. VP | 10 | 10 |
  165. A | -60k | -15k |
  166. A | -22.5k | 22.5k | __run selection__
  167. At this point, while the total voting power is 20, the distance between priorities is 45k. It will take 4500 runs for p3 to catch up with p2.
  168. In order to prevent these types of scenarios, the selection algorithm performs scaling of priorities such that the difference between min and max values is smaller than two times the total voting power.
  169. The modified selection algorithm is:
  170. ```md
  171. def ProposerSelection (vset):
  172. // scale the priority values
  173. diff = max(A)-min(A)
  174. threshold = 2 * P
  175. if diff > threshold:
  176. scale = diff/threshold
  177. for each validator i in vset:
  178. A(i) = A(i)/scale
  179. // center priorities around zero
  180. avg = sum(A(i) for i in vset)/len(vset)
  181. for each validator i in vset:
  182. A(i) -= avg
  183. // compute priorities and elect proposer
  184. for each validator i in vset:
  185. A(i) += VP(i)
  186. prop = max(A)
  187. A(prop) -= P
  188. ```
  189. Observations:
  190. - With this modification, the maximum distance between priorites becomes 2 * P.
  191. Note also that even during steady state the priority range may increase beyond 2 * P. The scaling introduced here helps to keep the range bounded.
  192. ## Wrinkles
  193. ### Validator Power Overflow Conditions
  194. The validator voting power is a positive number stored as an int64. When a validator is added the `1.125 * P` computation must not overflow. As a consequence the code handling validator updates (add and update) checks for overflow conditions making sure the total voting power is never larger than the largest int64 `MAX`, with the property that `1.125 * MAX` is still in the bounds of int64. Fatal error is return when overflow condition is detected.
  195. ### Proposer Priority Overflow/ Underflow Handling
  196. The proposer priority is stored as an int64. The selection algorithm performs additions and subtractions to these values and in the case of overflows and underflows it limits the values to:
  197. ```go
  198. MaxInt64 = 1 << 63 - 1
  199. MinInt64 = -1 << 63
  200. ```
  201. ## Requirement Fulfillment Claims
  202. __[R1]__
  203. The proposer algorithm is deterministic giving consistent results across executions with same transactions and validator set modifications.
  204. [WIP - needs more detail]
  205. __[R2]__
  206. Given a set of processes with the total voting power P, during a sequence of elections of length P, the number of times any process is selected as proposer is equal to its voting power. The sequence of the P proposers then repeats. If we consider the validator set:
  207. Validator | p1 | p2
  208. ----------|----|---
  209. VP | 1 | 3
  210. With no other changes to the validator set, the current implementation of proposer selection generates the sequence:
  211. `p2, p1, p2, p2, p2, p1, p2, p2,...` or [`p2, p1, p2, p2`]*
  212. A sequence that starts with any circular permutation of the [`p2, p1, p2, p2`] sub-sequence would also provide the same degree of fairness. In fact these circular permutations show in the sliding window (over the generated sequence) of size equal to the length of the sub-sequence.
  213. Assigning priorities to each validator based on the voting power and updating them at each run ensures the fairness of the proposer selection. In addition, every time a validator is elected as proposer its priority is decreased with the total voting power.
  214. Intuitively, a process v jumps ahead in the queue at most (max(A) - min(A))/VP(v) times until it reaches the head and is elected. The frequency is then:
  215. ```md
  216. f(v) ~ VP(v)/(max(A)-min(A)) = 1/k * VP(v)/P
  217. ```
  218. For current implementation, this means v should be proposer at least VP(v) times out of k * P runs, with scaling factor k=2.