box: prevent infinite elections after promote()
When a node has Raft turned on, issuing `box.ctl.promote()` on it triggers Raft elections. Such promotion bypasses the Pre-Vote check, because we want manual promotion to succeed even if it disrupts the current leader. However, in order to win elections, the node still has to collect votes from a quorum of peers. When there's no quorum, promote() might enter an infinite election loop, trying to promote the current node. Let's not start elections when it's known for sure that the node won't be able to win them, and make promote() throw an appropriate error. Now the node still triggers at least one election round on box.ctl.promote(), but it doesn't attempt re-running elections infinitely when there is no quorum. Follow-up #6654 NO_DOC=minor change
Showing
- changelogs/unreleased/elections-pre-vote.md 5 additions, 0 deletionschangelogs/unreleased/elections-pre-vote.md
- src/box/box.cc 10 additions, 3 deletionssrc/box/box.cc
- src/box/errcode.h 1 addition, 0 deletionssrc/box/errcode.h
- test/box/error.result 1 addition, 0 deletionstest/box/error.result
- test/replication-luatest/election_pre_vote_test.lua 21 additions, 0 deletionstest/replication-luatest/election_pre_vote_test.lua
Loading
Please register or sign in to comment