我不确定我是否正确理解 Raft 中的 RequestVote RPC 详细信息。
在论文中,它说
Receiver implementation:
1. Reply false if term < currentTerm (§5.1)
2. If votedFor is null or candidateId, and candidate’s log is at least as up-to-date as receiver’s log, grant vote (§5.2, §5.4)
当接收方收到 RequestVote RPC 时,什么情况下会voteFor == candidateId
成立?候选人不会在同一任期内发送另一个 RequestVote RPC。如果它开始另一次选举,则任期将增加,因此接收者应转换为追随者和voteFor is null
。
在我之前的 Raft 实现中,我的逻辑如下:
If votedFor is null or me, and candidate’s log is at least as up-to-date as receiver’s log, grant vote
虽然明显是错误的,但似乎工作正常,即leader选举和发送requestVotes可以稳定工作。
任何建议将不胜感激,并提前致谢