mndSync.c 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
17
#include "mndSync.h"
18
#include "mndTrans.h"
19

20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
static int32_t mndSyncEqCtrlMsg(const SMsgCb *msgcb, SRpcMsg *pMsg) {
  if (pMsg == NULL || pMsg->pCont == NULL) {
    return -1;
  }

  SMsgHead *pHead = pMsg->pCont;
  pHead->contLen = htonl(pHead->contLen);
  pHead->vgId = htonl(pHead->vgId);

  if (msgcb == NULL || msgcb->putToQueueFp == NULL) {
    rpcFreeCont(pMsg->pCont);
    pMsg->pCont = NULL;
    return -1;
  }

  int32_t code = tmsgPutToQueue(msgcb, SYNC_CTRL_QUEUE, pMsg);
  if (code != 0) {
    rpcFreeCont(pMsg->pCont);
    pMsg->pCont = NULL;
  }
  return code;
}

43
static int32_t mndSyncEqMsg(const SMsgCb *msgcb, SRpcMsg *pMsg) {
44 45 46 47
  if (pMsg == NULL || pMsg->pCont == NULL) {
    return -1;
  }

M
Minghao Li 已提交
48 49 50 51
  SMsgHead *pHead = pMsg->pCont;
  pHead->contLen = htonl(pHead->contLen);
  pHead->vgId = htonl(pHead->vgId);

52 53 54 55 56 57
  if (msgcb == NULL || msgcb->putToQueueFp == NULL) {
    rpcFreeCont(pMsg->pCont);
    pMsg->pCont = NULL;
    return -1;
  }

58 59 60 61 62 63
  int32_t code = tmsgPutToQueue(msgcb, SYNC_QUEUE, pMsg);
  if (code != 0) {
    rpcFreeCont(pMsg->pCont);
    pMsg->pCont = NULL;
  }
  return code;
M
Minghao Li 已提交
64
}
M
Minghao Li 已提交
65

66 67 68 69 70 71 72 73
static int32_t mndSyncSendMsg(const SEpSet *pEpSet, SRpcMsg *pMsg) {
  int32_t code = tmsgSendReq(pEpSet, pMsg);
  if (code != 0) {
    rpcFreeCont(pMsg->pCont);
    pMsg->pCont = NULL;
  }
  return code;
}
M
Minghao Li 已提交
74

75
int32_t mndProcessWriteMsg(const SSyncFSM *pFsm, SRpcMsg *pMsg, const SFsmCbMeta *pMeta) {
S
Shengliang Guan 已提交
76 77 78 79
  SMnode    *pMnode = pFsm->data;
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
  SSdbRaw   *pRaw = pMsg->pCont;

S
Shengliang Guan 已提交
80
  int32_t transId = sdbGetIdFromRaw(pMnode->pSdb, pRaw);
81
  mInfo("trans:%d, is proposed, saved:%d code:0x%x, apply index:%" PRId64 " term:%" PRIu64 " config:%" PRId64
82
        " role:%s raw:%p sec:%d seq:%" PRId64,
S
Shengliang Guan 已提交
83
        transId, pMgmt->transId, pMeta->code, pMeta->index, pMeta->term, pMeta->lastConfigIndex, syncStr(pMeta->state),
84
        pRaw, pMgmt->transSec, pMgmt->transSeq);
S
Shengliang Guan 已提交
85

86
  if (pMeta->code == 0) {
S
Shengliang Guan 已提交
87
    sdbWriteWithoutFree(pMnode->pSdb, pRaw);
S
Shengliang Guan 已提交
88
    sdbSetApplyInfo(pMnode->pSdb, pMeta->index, pMeta->term, pMeta->lastConfigIndex);
S
Shengliang Guan 已提交
89 90
  }

91
  taosThreadMutexLock(&pMgmt->lock);
92 93
  pMgmt->errCode = pMeta->code;

94
  if (transId <= 0) {
95
    taosThreadMutexUnlock(&pMgmt->lock);
96
    mError("trans:%d, invalid commit msg, cache transId:%d seq:%" PRId64, transId, pMgmt->transId, pMgmt->transSeq);
97
  } else if (transId == pMgmt->transId) {
S
Shengliang Guan 已提交
98
    if (pMgmt->errCode != 0) {
99 100
      mError("trans:%d, failed to propose since %s, post sem", transId, tstrerror(pMgmt->errCode));
    } else {
101
      mInfo("trans:%d, is proposed and post sem, seq:%" PRId64, transId, pMgmt->transSeq);
S
Shengliang Guan 已提交
102
    }
S
Shengliang Guan 已提交
103
    pMgmt->transId = 0;
104
    pMgmt->transSec = 0;
S
Shengliang Guan 已提交
105
    pMgmt->transSeq = 0;
S
Shengliang Guan 已提交
106
    tsem_post(&pMgmt->syncSem);
107
    taosThreadMutexUnlock(&pMgmt->lock);
108
  } else {
109
    taosThreadMutexUnlock(&pMgmt->lock);
110 111
    STrans *pTrans = mndAcquireTrans(pMnode, transId);
    if (pTrans != NULL) {
112
      mInfo("trans:%d, execute in mnode which not leader or sync timeout", transId);
113 114
      mndTransExecute(pMnode, pTrans);
      mndReleaseTrans(pMnode, pTrans);
115 116 117
      // sdbWriteFile(pMnode->pSdb, SDB_WRITE_DELTA);
    } else {
      mError("trans:%d, not found while execute in mnode since %s", transId, terrstr());
118
    }
M
Minghao Li 已提交
119
  }
120 121

  return 0;
M
Minghao Li 已提交
122 123
}

124
int32_t mndSyncCommitMsg(const SSyncFSM *pFsm, SRpcMsg *pMsg, const SFsmCbMeta *pMeta) {
125 126 127 128 129 130 131
  int32_t code = 0;
  if (!syncUtilUserCommit(pMsg->msgType)) {
    goto _out;
  }
  code = mndProcessWriteMsg(pFsm, pMsg, pMeta);

_out:
132 133
  rpcFreeCont(pMsg->pCont);
  pMsg->pCont = NULL;
134
  return code;
135 136
}

S
Shengliang Guan 已提交
137
int32_t mndSyncGetSnapshot(const SSyncFSM *pFsm, SSnapshot *pSnapshot, void *pReaderParam, void **ppReader) {
138
  mInfo("start to read snapshot from sdb in atomic way");
139 140 141
  SMnode *pMnode = pFsm->data;
  return sdbStartRead(pMnode->pSdb, (SSdbIter **)ppReader, &pSnapshot->lastApplyIndex, &pSnapshot->lastApplyTerm,
                      &pSnapshot->lastConfigIndex);
142 143 144
  return 0;
}

145
static void mndSyncGetSnapshotInfo(const SSyncFSM *pFsm, SSnapshot *pSnapshot) {
146
  SMnode *pMnode = pFsm->data;
147
  sdbGetCommitInfo(pMnode->pSdb, &pSnapshot->lastApplyIndex, &pSnapshot->lastApplyTerm, &pSnapshot->lastConfigIndex);
M
Minghao Li 已提交
148 149
}

S
Shengliang Guan 已提交
150
void mndRestoreFinish(const SSyncFSM *pFsm) {
151
  SMnode *pMnode = pFsm->data;
S
Shengliang Guan 已提交
152

S
Shengliang Guan 已提交
153
  if (!pMnode->deploy) {
S
Shengliang Guan 已提交
154
    if (!pMnode->restored) {
155 156 157 158 159 160
      mInfo("vgId:1, sync restore finished, and will handle outstanding transactions");
      mndTransPullup(pMnode);
      mndSetRestored(pMnode, true);
    } else {
      mInfo("vgId:1, sync restore finished, repeat call");
    }
S
Shengliang Guan 已提交
161
  } else {
162
    mInfo("vgId:1, sync restore finished");
S
Shengliang Guan 已提交
163
  }
164 165
}

S
Shengliang Guan 已提交
166
int32_t mndSnapshotStartRead(const SSyncFSM *pFsm, void *pParam, void **ppReader) {
167
  mInfo("start to read snapshot from sdb");
S
Shengliang Guan 已提交
168
  SMnode *pMnode = pFsm->data;
169
  return sdbStartRead(pMnode->pSdb, (SSdbIter **)ppReader, NULL, NULL, NULL);
S
Shengliang Guan 已提交
170 171
}

172
static void mndSnapshotStopRead(const SSyncFSM *pFsm, void *pReader) {
173
  mInfo("stop to read snapshot from sdb");
S
Shengliang Guan 已提交
174
  SMnode *pMnode = pFsm->data;
175
  sdbStopRead(pMnode->pSdb, pReader);
S
Shengliang Guan 已提交
176 177
}

S
Shengliang Guan 已提交
178
int32_t mndSnapshotDoRead(const SSyncFSM *pFsm, void *pReader, void **ppBuf, int32_t *len) {
S
Shengliang Guan 已提交
179 180 181 182
  SMnode *pMnode = pFsm->data;
  return sdbDoRead(pMnode->pSdb, pReader, ppBuf, len);
}

S
Shengliang Guan 已提交
183
int32_t mndSnapshotStartWrite(const SSyncFSM *pFsm, void *pParam, void **ppWriter) {
S
Shengliang Guan 已提交
184 185 186 187 188
  mInfo("start to apply snapshot to sdb");
  SMnode *pMnode = pFsm->data;
  return sdbStartWrite(pMnode->pSdb, (SSdbIter **)ppWriter);
}

S
Shengliang Guan 已提交
189
int32_t mndSnapshotStopWrite(const SSyncFSM *pFsm, void *pWriter, bool isApply, SSnapshot *pSnapshot) {
190
  mInfo("stop to apply snapshot to sdb, apply:%d, index:%" PRId64 " term:%" PRIu64 " config:%" PRId64, isApply,
S
Shengliang Guan 已提交
191
        pSnapshot->lastApplyIndex, pSnapshot->lastApplyTerm, pSnapshot->lastConfigIndex);
S
Shengliang Guan 已提交
192
  SMnode *pMnode = pFsm->data;
193 194
  return sdbStopWrite(pMnode->pSdb, pWriter, isApply, pSnapshot->lastApplyIndex, pSnapshot->lastApplyTerm,
                      pSnapshot->lastConfigIndex);
S
Shengliang Guan 已提交
195 196
}

S
Shengliang Guan 已提交
197
int32_t mndSnapshotDoWrite(const SSyncFSM *pFsm, void *pWriter, void *pBuf, int32_t len) {
S
Shengliang Guan 已提交
198 199 200 201
  SMnode *pMnode = pFsm->data;
  return sdbDoWrite(pMnode->pSdb, pWriter, pBuf, len);
}

S
Shengliang Guan 已提交
202
static void mndBecomeFollower(const SSyncFSM *pFsm) {
203 204
  SMnode    *pMnode = pFsm->data;
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
205
  mInfo("vgId:1, become follower");
206

207 208 209 210
  taosThreadMutexLock(&pMgmt->lock);
  if (pMgmt->transId != 0) {
    mInfo("vgId:1, become follower and post sem, trans:%d, failed to propose since not leader", pMgmt->transId);
    pMgmt->transId = 0;
211
    pMgmt->transSec = 0;
S
Shengliang Guan 已提交
212
    pMgmt->transSeq = 0;
213 214
    pMgmt->errCode = TSDB_CODE_SYN_NOT_LEADER;
    tsem_post(&pMgmt->syncSem);
215
  }
216
  taosThreadMutexUnlock(&pMgmt->lock);
217 218
}

S
Shengliang Guan 已提交
219
static void mndBecomeLeader(const SSyncFSM *pFsm) {
220
  mInfo("vgId:1, become leader");
221
  SMnode *pMnode = pFsm->data;
222 223
}

224 225 226
static bool mndApplyQueueEmpty(const SSyncFSM *pFsm) {
  SMnode *pMnode = pFsm->data;

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
  if (pMnode != NULL && pMnode->msgCb.qsizeFp != NULL) {
    int32_t itemSize = tmsgGetQueueSize(&pMnode->msgCb, 1, APPLY_QUEUE);
    return (itemSize == 0);
  } else {
    return true;
  }
}

static int32_t mndApplyQueueItems(const SSyncFSM *pFsm) {
  SMnode *pMnode = pFsm->data;

  if (pMnode != NULL && pMnode->msgCb.qsizeFp != NULL) {
    int32_t itemSize = tmsgGetQueueSize(&pMnode->msgCb, 1, APPLY_QUEUE);
    return itemSize;
  } else {
    return -1;
  }
244 245
}

246 247
SSyncFSM *mndSyncMakeFsm(SMnode *pMnode) {
  SSyncFSM *pFsm = taosMemoryCalloc(1, sizeof(SSyncFSM));
M
Minghao Li 已提交
248
  pFsm->data = pMnode;
249
  pFsm->FpCommitCb = mndSyncCommitMsg;
250 251
  pFsm->FpPreCommitCb = NULL;
  pFsm->FpRollBackCb = NULL;
252
  pFsm->FpRestoreFinishCb = mndRestoreFinish;
S
Shengliang Guan 已提交
253
  pFsm->FpLeaderTransferCb = NULL;
254
  pFsm->FpApplyQueueEmptyCb = mndApplyQueueEmpty;
255
  pFsm->FpApplyQueueItems = mndApplyQueueItems;
S
Shengliang Guan 已提交
256
  pFsm->FpReConfigCb = NULL;
257 258
  pFsm->FpBecomeLeaderCb = mndBecomeLeader;
  pFsm->FpBecomeFollowerCb = mndBecomeFollower;
S
Shengliang Guan 已提交
259
  pFsm->FpGetSnapshot = mndSyncGetSnapshot;
260
  pFsm->FpGetSnapshotInfo = mndSyncGetSnapshotInfo;
S
Shengliang Guan 已提交
261 262 263 264 265 266
  pFsm->FpSnapshotStartRead = mndSnapshotStartRead;
  pFsm->FpSnapshotStopRead = mndSnapshotStopRead;
  pFsm->FpSnapshotDoRead = mndSnapshotDoRead;
  pFsm->FpSnapshotStartWrite = mndSnapshotStartWrite;
  pFsm->FpSnapshotStopWrite = mndSnapshotStopWrite;
  pFsm->FpSnapshotDoWrite = mndSnapshotDoWrite;
M
Minghao Li 已提交
267
  return pFsm;
268 269 270 271
}

int32_t mndInitSync(SMnode *pMnode) {
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
272
  taosThreadMutexInit(&pMgmt->lock, NULL);
273
  pMgmt->transId = 0;
274
  pMgmt->transSec = 0;
S
Shengliang Guan 已提交
275
  pMgmt->transSeq = 0;
276

S
Shengliang Guan 已提交
277 278 279 280 281
  SSyncInfo syncInfo = {
      .snapshotStrategy = SYNC_STRATEGY_STANDARD_SNAPSHOT,
      .batchSize = 1,
      .vgId = 1,
      .pWal = pMnode->pWal,
S
Shengliang Guan 已提交
282
      .msgcb = &pMnode->msgCb,
S
Shengliang Guan 已提交
283 284
      .syncSendMSg = mndSyncSendMsg,
      .syncEqMsg = mndSyncEqMsg,
285
      .syncEqCtrlMsg = mndSyncEqCtrlMsg,
S
Shengliang Guan 已提交
286 287 288
      .pingMs = 5000,
      .electMs = 3000,
      .heartbeatMs = 500,
S
Shengliang Guan 已提交
289 290
  };

291 292 293
  snprintf(syncInfo.path, sizeof(syncInfo.path), "%s%ssync", pMnode->path, TD_DIRSEP);
  syncInfo.pFsm = mndSyncMakeFsm(pMnode);

S
Shengliang Guan 已提交
294
  mInfo("vgId:1, start to open sync, replica:%d selfIndex:%d", pMgmt->numOfReplicas, pMgmt->selfIndex);
295 296 297 298 299 300 301 302
  SSyncCfg *pCfg = &syncInfo.syncCfg;
  pCfg->replicaNum = pMgmt->numOfReplicas;
  pCfg->myIndex = pMgmt->selfIndex;
  for (int32_t i = 0; i < pMgmt->numOfReplicas; ++i) {
    SNodeInfo *pNode = &pCfg->nodeInfo[i];
    tstrncpy(pNode->nodeFqdn, pMgmt->replicas[i].fqdn, sizeof(pNode->nodeFqdn));
    pNode->nodePort = pMgmt->replicas[i].port;
    mInfo("vgId:1, index:%d ep:%s:%u", i, pNode->nodeFqdn, pNode->nodePort);
M
Minghao Li 已提交
303 304
  }

305
  tsem_init(&pMgmt->syncSem, 0, 0);
306 307 308 309 310
  pMgmt->sync = syncOpen(&syncInfo);
  if (pMgmt->sync <= 0) {
    mError("failed to open sync since %s", terrstr());
    return -1;
  }
M
Minghao Li 已提交
311

312
  mInfo("mnode-sync is opened, id:%" PRId64, pMgmt->sync);
S
Shengliang Guan 已提交
313 314 315 316 317
  return 0;
}

void mndCleanupSync(SMnode *pMnode) {
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
318
  syncStop(pMgmt->sync);
319
  mInfo("mnode-sync is stopped, id:%" PRId64, pMgmt->sync);
320

321
  tsem_destroy(&pMgmt->syncSem);
322
  taosThreadMutexDestroy(&pMgmt->lock);
323 324
  memset(pMgmt, 0, sizeof(SSyncMgmt));
}
M
Minghao Li 已提交
325

326
void mndSyncCheckTimeout(SMnode *pMnode) {
327
  mTrace("check sync timeout");
328 329 330 331 332
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
  taosThreadMutexLock(&pMgmt->lock);
  if (pMgmt->transId != 0) {
    int32_t curSec = taosGetTimestampSec();
    int32_t delta = curSec - pMgmt->transSec;
S
Shengliang Guan 已提交
333 334 335
    if (delta > MNODE_TIMEOUT_SEC) {
      mError("trans:%d, failed to propose since timeout, start:%d cur:%d delta:%d seq:%" PRId64, pMgmt->transId,
             pMgmt->transSec, curSec, delta, pMgmt->transSeq);
336 337
      pMgmt->transId = 0;
      pMgmt->transSec = 0;
S
Shengliang Guan 已提交
338
      pMgmt->transSeq = 0;
339 340 341 342
      terrno = TSDB_CODE_SYN_TIMEOUT;
      pMgmt->errCode = TSDB_CODE_SYN_TIMEOUT;
      tsem_post(&pMgmt->syncSem);
    } else {
S
Shengliang Guan 已提交
343 344
      mDebug("trans:%d, waiting for sync confirm, start:%d cur:%d delta:%d seq:%" PRId64, pMgmt->transId,
             pMgmt->transSec, curSec, curSec - pMgmt->transSec, pMgmt->transSeq);
345 346
    }
  } else {
347
    // mTrace("check sync timeout msg, no trans waiting for confirm");
348 349 350 351
  }
  taosThreadMutexUnlock(&pMgmt->lock);
}

S
Shengliang Guan 已提交
352
int32_t mndSyncPropose(SMnode *pMnode, SSdbRaw *pRaw, int32_t transId) {
S
Shengliang Guan 已提交
353
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
S
Shengliang Guan 已提交
354

S
Shengliang Guan 已提交
355
  SRpcMsg req = {.msgType = TDMT_MND_APPLY_MSG, .contLen = sdbGetRawTotalSize(pRaw)};
S
Shengliang Guan 已提交
356
  if (req.contLen <= 0) return -1;
S
Shengliang Guan 已提交
357

358 359 360
  req.pCont = rpcMallocCont(req.contLen);
  if (req.pCont == NULL) return -1;
  memcpy(req.pCont, pRaw, req.contLen);
S
Shengliang Guan 已提交
361

362
  taosThreadMutexLock(&pMgmt->lock);
363 364
  pMgmt->errCode = 0;

365
  if (pMgmt->transId != 0) {
S
Shengliang Guan 已提交
366
    mError("trans:%d, can't be proposed since trans:%d already waiting for confirm", transId, pMgmt->transId);
367
    taosThreadMutexUnlock(&pMgmt->lock);
368
    terrno = TSDB_CODE_MND_LAST_TRANS_NOT_FINISHED;
369
    return terrno;
370
  }
S
Shengliang Guan 已提交
371

S
Shengliang Guan 已提交
372 373
  mInfo("trans:%d, will be proposed", transId);
  pMgmt->transId = transId;
374
  pMgmt->transSec = taosGetTimestampSec();
375

S
Shengliang Guan 已提交
376 377
  int64_t seq = 0;
  int32_t code = syncPropose(pMgmt->sync, &req, false, &seq);
378
  if (code == 0) {
S
Shengliang Guan 已提交
379 380 381
    mInfo("trans:%d, is proposing and wait sem, seq:%" PRId64, transId, seq);
    pMgmt->transSeq = seq;
    taosThreadMutexUnlock(&pMgmt->lock);
382
    tsem_wait(&pMgmt->syncSem);
383 384 385
  } else if (code > 0) {
    mInfo("trans:%d, confirm at once since replica is 1, continue execute", transId);
    pMgmt->transId = 0;
386
    pMgmt->transSec = 0;
S
Shengliang Guan 已提交
387
    pMgmt->transSeq = 0;
388
    taosThreadMutexUnlock(&pMgmt->lock);
389 390 391
    sdbWriteWithoutFree(pMnode->pSdb, pRaw);
    sdbSetApplyInfo(pMnode->pSdb, req.info.conn.applyIndex, req.info.conn.applyTerm, SYNC_INDEX_INVALID);
    code = 0;
392
  } else {
393
    mError("trans:%d, failed to proposed since %s", transId, terrstr());
394
    pMgmt->transId = 0;
395
    pMgmt->transSec = 0;
S
Shengliang Guan 已提交
396
    pMgmt->transSeq = 0;
397
    taosThreadMutexUnlock(&pMgmt->lock);
398
    if (terrno == 0) {
399 400
      terrno = TSDB_CODE_APP_ERROR;
    }
401
  }
402

403
  rpcFreeCont(req.pCont);
S
Shengliang Guan 已提交
404
  req.pCont = NULL;
S
Shengliang Guan 已提交
405 406 407 408 409
  if (code != 0) {
    mError("trans:%d, failed to propose, code:0x%x", pMgmt->transId, code);
    return code;
  }

S
Shengliang Guan 已提交
410
  terrno = pMgmt->errCode;
411
  return terrno;
412 413
}

414
void mndSyncStart(SMnode *pMnode) {
415
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
B
Benguang Zhao 已提交
416
  if (syncStart(pMgmt->sync) < 0) {
417
    mError("vgId:1, failed to start sync, id:%" PRId64, pMgmt->sync);
B
Benguang Zhao 已提交
418 419
    return;
  }
420
  mInfo("vgId:1, sync started, id:%" PRId64, pMgmt->sync);
421 422
}

S
Shengliang Guan 已提交
423
void mndSyncStop(SMnode *pMnode) {
424 425 426 427 428 429
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;

  taosThreadMutexLock(&pMgmt->lock);
  if (pMgmt->transId != 0) {
    mInfo("vgId:1, is stopped and post sem, trans:%d", pMgmt->transId);
    pMgmt->transId = 0;
430
    pMgmt->transSec = 0;
431
    pMgmt->errCode = TSDB_CODE_APP_IS_STOPPING;
432
    tsem_post(&pMgmt->syncSem);
S
Shengliang Guan 已提交
433
  }
434
  taosThreadMutexUnlock(&pMgmt->lock);
S
Shengliang Guan 已提交
435
}
436

437
bool mndIsLeader(SMnode *pMnode) {
438
  terrno = 0;
439
  SSyncState state = syncGetState(pMnode->syncMgmt.sync);
440

441 442 443 444 445 446 447 448
  if (terrno != 0) {
    mDebug("vgId:1, mnode is stopping");
    return false;
  }

  if (state.state != TAOS_SYNC_STATE_LEADER) {
    terrno = TSDB_CODE_SYN_NOT_LEADER;
    mDebug("vgId:1, mnode not leader, state:%s", syncStr(state.state));
449 450 451
    return false;
  }

452 453 454
  if (!state.restored || !pMnode->restored) {
    terrno = TSDB_CODE_SYN_RESTORING;
    mDebug("vgId:1, mnode not restored:%d:%d", state.restored, pMnode->restored);
455 456 457 458
    return false;
  }

  return true;
L
Liu Jicong 已提交
459
}