syncElection.c 3.6 KB
Newer Older
M
Minghao Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

S
Shengliang Guan 已提交
16
#define _DEFAULT_SOURCE
M
Minghao Li 已提交
17
#include "syncElection.h"
18
#include "syncMessage.h"
M
Minghao Li 已提交
19
#include "syncRaftCfg.h"
M
Minghao Li 已提交
20
#include "syncRaftStore.h"
S
Shengliang Guan 已提交
21
#include "syncUtil.h"
22
#include "syncVoteMgr.h"
M
Minghao Li 已提交
23

M
Minghao Li 已提交
24 25 26 27 28 29 30 31 32 33 34
// TLA+ Spec
// RequestVote(i, j) ==
//    /\ state[i] = Candidate
//    /\ j \notin votesResponded[i]
//    /\ Send([mtype         |-> RequestVoteRequest,
//             mterm         |-> currentTerm[i],
//             mlastLogTerm  |-> LastTerm(log[i]),
//             mlastLogIndex |-> Len(log[i]),
//             msource       |-> i,
//             mdest         |-> j])
//    /\ UNCHANGED <<serverVars, candidateVars, leaderVars, logVars>>
M
Minghao Li 已提交
35

M
Minghao Li 已提交
36
int32_t syncNodeElect(SSyncNode* pSyncNode) {
S
Shengliang Guan 已提交
37
  sNTrace(pSyncNode, "begin election");
M
Minghao Li 已提交
38

M
Minghao Li 已提交
39
  int32_t ret = 0;
M
Minghao Li 已提交
40 41 42
  if (pSyncNode->state == TAOS_SYNC_STATE_FOLLOWER) {
    syncNodeFollower2Candidate(pSyncNode);
  }
M
Minghao Li 已提交
43 44

  if (pSyncNode->state != TAOS_SYNC_STATE_CANDIDATE) {
S
Shengliang Guan 已提交
45
    sNError(pSyncNode, "not candidate, can not elect");
M
Minghao Li 已提交
46 47
    return -1;
  }
M
Minghao Li 已提交
48

M
Minghao Li 已提交
49
  // start election
M
Minghao Li 已提交
50 51 52 53 54 55
  raftStoreNextTerm(pSyncNode->pRaftStore);
  raftStoreClearVote(pSyncNode->pRaftStore);
  voteGrantedReset(pSyncNode->pVotesGranted, pSyncNode->pRaftStore->currentTerm);
  votesRespondReset(pSyncNode->pVotesRespond, pSyncNode->pRaftStore->currentTerm);

  syncNodeVoteForSelf(pSyncNode);
M
Minghao Li 已提交
56 57
  if (voteGrantedMajority(pSyncNode->pVotesGranted)) {
    // only myself, to leader
M
Minghao Li 已提交
58
    ASSERT(!pSyncNode->pVotesGranted->toLeader);
M
Minghao Li 已提交
59 60 61
    syncNodeCandidate2Leader(pSyncNode);
    pSyncNode->pVotesGranted->toLeader = true;
    return ret;
62 63 64 65 66 67 68 69 70 71 72 73 74
  } 

  if (pSyncNode->replicaNum == 1) {
    // only myself, to leader
    voteGrantedUpdate(pSyncNode->pVotesGranted, pSyncNode);
    votesRespondUpdate(pSyncNode->pVotesRespond, pSyncNode);

    pSyncNode->quorum = syncUtilQuorum(pSyncNode->pRaftCfg->cfg.replicaNum);

    syncNodeCandidate2Leader(pSyncNode);
    pSyncNode->pVotesGranted->toLeader = true;
    return ret;

M
Minghao Li 已提交
75 76
  }

M
Minghao Li 已提交
77
  ret = syncNodeRequestVotePeers(pSyncNode);
M
Minghao Li 已提交
78
  ASSERT(ret == 0);
M
Minghao Li 已提交
79

M
Minghao Li 已提交
80
  syncNodeResetElectTimer(pSyncNode);
M
Minghao Li 已提交
81

M
Minghao Li 已提交
82
  return ret;
M
Minghao Li 已提交
83 84
}

M
Minghao Li 已提交
85 86
int32_t syncNodeRequestVotePeers(SSyncNode* pSyncNode) {
  if (pSyncNode->state != TAOS_SYNC_STATE_CANDIDATE) {
S
Shengliang Guan 已提交
87
    sNTrace(pSyncNode, "not candidate, stop elect");
M
Minghao Li 已提交
88
    return 0;
M
Minghao Li 已提交
89
  }
M
Minghao Li 已提交
90

M
Minghao Li 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104
  int32_t ret = 0;
  for (int i = 0; i < pSyncNode->peersNum; ++i) {
    SyncRequestVote* pMsg = syncRequestVoteBuild(pSyncNode->vgId);
    pMsg->srcId = pSyncNode->myRaftId;
    pMsg->destId = pSyncNode->peersId[i];
    pMsg->term = pSyncNode->pRaftStore->currentTerm;

    ret = syncNodeGetLastIndexTerm(pSyncNode, &(pMsg->lastLogIndex), &(pMsg->lastLogTerm));
    ASSERT(ret == 0);

    ret = syncNodeSendRequestVote(pSyncNode, &pSyncNode->peersId[i], pMsg);
    ASSERT(ret == 0);
    syncRequestVoteDestroy(pMsg);
  }
M
Minghao Li 已提交
105
  return ret;
M
Minghao Li 已提交
106 107
}

M
Minghao Li 已提交
108
int32_t syncNodeSendRequestVote(SSyncNode* pSyncNode, const SRaftId* destRaftId, const SyncRequestVote* pMsg) {
M
Minghao Li 已提交
109
  int32_t ret = 0;
M
Minghao Li 已提交
110
  syncLogSendRequestVote(pSyncNode, pMsg, "");
M
Minghao Li 已提交
111

M
Minghao Li 已提交
112 113 114 115 116
  SRpcMsg rpcMsg;
  syncRequestVote2RpcMsg(pMsg, &rpcMsg);
  syncNodeSendMsgById(destRaftId, pSyncNode, &rpcMsg);
  return ret;
}