confchange_v2_add_single_auto.txt 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. # Run a V2 membership change that adds a single voter in auto mode, which means
  2. # that joint consensus is not used but a direct transition into the new config
  3. # takes place.
  4. # Bootstrap n1.
  5. add-nodes 1 voters=(1) index=2
  6. ----
  7. INFO 1 switched to configuration voters=(1)
  8. INFO 1 became follower at term 0
  9. INFO newRaft 1 [peers: [1], term: 0, commit: 2, applied: 2, lastindex: 2, lastterm: 1]
  10. campaign 1
  11. ----
  12. INFO 1 is starting a new election at term 0
  13. INFO 1 became candidate at term 1
  14. INFO 1 received MsgVoteResp from 1 at term 1
  15. INFO 1 became leader at term 1
  16. # Add v2 (with an auto transition).
  17. propose-conf-change 1
  18. v2
  19. ----
  20. ok
  21. # Pull n2 out of thin air.
  22. add-nodes 1
  23. ----
  24. INFO 2 switched to configuration voters=()
  25. INFO 2 became follower at term 0
  26. INFO newRaft 2 [peers: [], term: 0, commit: 0, applied: 0, lastindex: 0, lastterm: 0]
  27. # n1 commits the conf change using itself as commit quorum, immediately transitions into
  28. # the final config, and catches up n2.
  29. stabilize
  30. ----
  31. > 1 handling Ready
  32. Ready MustSync=true:
  33. Lead:1 State:StateLeader
  34. HardState Term:1 Vote:1 Commit:4
  35. Entries:
  36. 1/3 EntryNormal ""
  37. 1/4 EntryConfChangeV2 v2
  38. CommittedEntries:
  39. 1/3 EntryNormal ""
  40. 1/4 EntryConfChangeV2 v2
  41. INFO 1 switched to configuration voters=(1 2)
  42. > 1 handling Ready
  43. Ready MustSync=false:
  44. Messages:
  45. 1->2 MsgApp Term:1 Log:1/3 Commit:4 Entries:[1/4 EntryConfChangeV2 v2]
  46. > 2 receiving messages
  47. 1->2 MsgApp Term:1 Log:1/3 Commit:4 Entries:[1/4 EntryConfChangeV2 v2]
  48. INFO 2 [term: 0] received a MsgApp message with higher term from 1 [term: 1]
  49. INFO 2 became follower at term 1
  50. DEBUG 2 [logterm: 0, index: 3] rejected MsgApp [logterm: 1, index: 3] from 1
  51. > 2 handling Ready
  52. Ready MustSync=true:
  53. Lead:1 State:StateFollower
  54. HardState Term:1 Commit:0
  55. Messages:
  56. 2->1 MsgAppResp Term:1 Log:0/3 Rejected (Hint: 0)
  57. > 1 receiving messages
  58. 2->1 MsgAppResp Term:1 Log:0/3 Rejected (Hint: 0)
  59. DEBUG 1 received MsgAppResp(MsgApp was rejected, lastindex: 0) from 2 for index 3
  60. DEBUG 1 decreased progress of 2 to [StateProbe match=0 next=1]
  61. DEBUG 1 [firstindex: 3, commit: 4] sent snapshot[index: 4, term: 1] to 2 [StateProbe match=0 next=1]
  62. DEBUG 1 paused sending replication messages to 2 [StateSnapshot match=0 next=1 paused pendingSnap=4]
  63. > 1 handling Ready
  64. Ready MustSync=false:
  65. Messages:
  66. 1->2 MsgSnap Term:1 Log:0/0 Snapshot: Index:4 Term:1 ConfState:Voters:[1 2] VotersOutgoing:[] Learners:[] LearnersNext:[] AutoLeave:false
  67. > 2 receiving messages
  68. 1->2 MsgSnap Term:1 Log:0/0 Snapshot: Index:4 Term:1 ConfState:Voters:[1 2] VotersOutgoing:[] Learners:[] LearnersNext:[] AutoLeave:false
  69. INFO log [committed=0, applied=0, unstable.offset=1, len(unstable.Entries)=0] starts to restore snapshot [index: 4, term: 1]
  70. INFO 2 switched to configuration voters=(1 2)
  71. INFO 2 [commit: 4, lastindex: 4, lastterm: 1] restored snapshot [index: 4, term: 1]
  72. INFO 2 [commit: 4] restored snapshot [index: 4, term: 1]
  73. > 2 handling Ready
  74. Ready MustSync=false:
  75. HardState Term:1 Commit:4
  76. Snapshot Index:4 Term:1 ConfState:Voters:[1 2] VotersOutgoing:[] Learners:[] LearnersNext:[] AutoLeave:false
  77. Messages:
  78. 2->1 MsgAppResp Term:1 Log:0/4
  79. > 1 receiving messages
  80. 2->1 MsgAppResp Term:1 Log:0/4
  81. DEBUG 1 recovered from needing snapshot, resumed sending replication messages to 2 [StateSnapshot match=4 next=5 paused pendingSnap=4]
  82. > 1 handling Ready
  83. Ready MustSync=false:
  84. Messages:
  85. 1->2 MsgApp Term:1 Log:1/4 Commit:4
  86. > 2 receiving messages
  87. 1->2 MsgApp Term:1 Log:1/4 Commit:4
  88. > 2 handling Ready
  89. Ready MustSync=false:
  90. Messages:
  91. 2->1 MsgAppResp Term:1 Log:0/4
  92. > 1 receiving messages
  93. 2->1 MsgAppResp Term:1 Log:0/4
  94. # Check that we're not allowed to change membership again while in the joint state.
  95. # This leads to an empty entry being proposed instead (index 5 in the stabilize block
  96. # below).
  97. propose-conf-change 1
  98. v3 v4 v5
  99. ----
  100. ok
  101. # Propose a transition out of the joint config. We'll see this at index 6 below.
  102. propose-conf-change 1
  103. ----
  104. INFO 1 ignoring conf change {ConfChangeTransitionAuto [] [] []} at config voters=(1 2): possible unapplied conf change at index 5 (applied to 4)
  105. # The group commits the command and everyone switches to the final config.
  106. stabilize
  107. ----
  108. > 1 handling Ready
  109. Ready MustSync=true:
  110. Entries:
  111. 1/5 EntryConfChangeV2 v3 v4 v5
  112. 1/6 EntryNormal ""
  113. Messages:
  114. 1->2 MsgApp Term:1 Log:1/4 Commit:4 Entries:[1/5 EntryConfChangeV2 v3 v4 v5]
  115. 1->2 MsgApp Term:1 Log:1/5 Commit:4 Entries:[1/6 EntryNormal ""]
  116. > 2 receiving messages
  117. 1->2 MsgApp Term:1 Log:1/4 Commit:4 Entries:[1/5 EntryConfChangeV2 v3 v4 v5]
  118. 1->2 MsgApp Term:1 Log:1/5 Commit:4 Entries:[1/6 EntryNormal ""]
  119. > 2 handling Ready
  120. Ready MustSync=true:
  121. Entries:
  122. 1/5 EntryConfChangeV2 v3 v4 v5
  123. 1/6 EntryNormal ""
  124. Messages:
  125. 2->1 MsgAppResp Term:1 Log:0/5
  126. 2->1 MsgAppResp Term:1 Log:0/6
  127. > 1 receiving messages
  128. 2->1 MsgAppResp Term:1 Log:0/5
  129. 2->1 MsgAppResp Term:1 Log:0/6
  130. > 1 handling Ready
  131. Ready MustSync=false:
  132. HardState Term:1 Vote:1 Commit:6
  133. CommittedEntries:
  134. 1/5 EntryConfChangeV2 v3 v4 v5
  135. 1/6 EntryNormal ""
  136. Messages:
  137. 1->2 MsgApp Term:1 Log:1/6 Commit:5
  138. 1->2 MsgApp Term:1 Log:1/6 Commit:6
  139. INFO 1 switched to configuration voters=(1 2 3 4 5)&&(1 2) autoleave
  140. INFO initiating automatic transition out of joint configuration voters=(1 2 3 4 5)&&(1 2) autoleave
  141. > 2 receiving messages
  142. 1->2 MsgApp Term:1 Log:1/6 Commit:5
  143. 1->2 MsgApp Term:1 Log:1/6 Commit:6
  144. > 1 handling Ready
  145. Ready MustSync=true:
  146. Entries:
  147. 1/7 EntryConfChangeV2
  148. Messages:
  149. 1->3 MsgApp Term:1 Log:1/5 Commit:6 Entries:[1/6 EntryNormal ""]
  150. 1->4 MsgApp Term:1 Log:1/5 Commit:6 Entries:[1/6 EntryNormal ""]
  151. 1->5 MsgApp Term:1 Log:1/5 Commit:6 Entries:[1/6 EntryNormal ""]
  152. > 2 handling Ready
  153. Ready MustSync=false:
  154. HardState Term:1 Commit:6
  155. CommittedEntries:
  156. 1/5 EntryConfChangeV2 v3 v4 v5
  157. 1/6 EntryNormal ""
  158. Messages:
  159. 2->1 MsgAppResp Term:1 Log:0/6
  160. 2->1 MsgAppResp Term:1 Log:0/6
  161. INFO 2 switched to configuration voters=(1 2 3 4 5)&&(1 2) autoleave
  162. > 1 receiving messages
  163. 2->1 MsgAppResp Term:1 Log:0/6
  164. 2->1 MsgAppResp Term:1 Log:0/6
  165. # Check that trying to transition out again won't do anything.
  166. propose-conf-change 1
  167. ----
  168. ok
  169. # Finishes work for the empty entry we just proposed.
  170. stabilize
  171. ----
  172. > 1 handling Ready
  173. Ready MustSync=true:
  174. Entries:
  175. 1/8 EntryConfChangeV2
  176. Messages:
  177. 1->2 MsgApp Term:1 Log:1/6 Commit:6 Entries:[1/7 EntryConfChangeV2, 1/8 EntryConfChangeV2]
  178. > 2 receiving messages
  179. 1->2 MsgApp Term:1 Log:1/6 Commit:6 Entries:[1/7 EntryConfChangeV2, 1/8 EntryConfChangeV2]
  180. > 2 handling Ready
  181. Ready MustSync=true:
  182. Entries:
  183. 1/7 EntryConfChangeV2
  184. 1/8 EntryConfChangeV2
  185. Messages:
  186. 2->1 MsgAppResp Term:1 Log:0/8
  187. > 1 receiving messages
  188. 2->1 MsgAppResp Term:1 Log:0/8