489 lines
16 KiB
C
489 lines
16 KiB
C
/*
|
|
* 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
|
|
#include "mndSync.h"
|
|
#include "mndCluster.h"
|
|
#include "mndTrans.h"
|
|
|
|
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;
|
|
}
|
|
|
|
static int32_t mndSyncEqMsg(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_QUEUE, pMsg);
|
|
if (code != 0) {
|
|
rpcFreeCont(pMsg->pCont);
|
|
pMsg->pCont = NULL;
|
|
}
|
|
return code;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
int32_t mndProcessWriteMsg(const SSyncFSM *pFsm, SRpcMsg *pMsg, const SFsmCbMeta *pMeta) {
|
|
SMnode *pMnode = pFsm->data;
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
SSdbRaw *pRaw = pMsg->pCont;
|
|
|
|
int32_t transId = sdbGetIdFromRaw(pMnode->pSdb, pRaw);
|
|
mInfo("trans:%d, is proposed, saved:%d code:0x%x, apply index:%" PRId64 " term:%" PRIu64 " config:%" PRId64
|
|
" role:%s raw:%p sec:%d seq:%" PRId64,
|
|
transId, pMgmt->transId, pMeta->code, pMeta->index, pMeta->term, pMeta->lastConfigIndex, syncStr(pMeta->state),
|
|
pRaw, pMgmt->transSec, pMgmt->transSeq);
|
|
|
|
if (pMeta->code == 0) {
|
|
int32_t code = sdbWriteWithoutFree(pMnode->pSdb, pRaw);
|
|
if (code != 0) {
|
|
mError("trans:%d, failed to write to sdb since %s", transId, terrstr());
|
|
return 0;
|
|
}
|
|
sdbSetApplyInfo(pMnode->pSdb, pMeta->index, pMeta->term, pMeta->lastConfigIndex);
|
|
}
|
|
|
|
taosThreadMutexLock(&pMgmt->lock);
|
|
pMgmt->errCode = pMeta->code;
|
|
|
|
if (transId <= 0) {
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
mError("trans:%d, invalid commit msg, cache transId:%d seq:%" PRId64, transId, pMgmt->transId, pMgmt->transSeq);
|
|
} else if (transId == pMgmt->transId) {
|
|
if (pMgmt->errCode != 0) {
|
|
mError("trans:%d, failed to propose since %s, post sem", transId, tstrerror(pMgmt->errCode));
|
|
} else {
|
|
mInfo("trans:%d, is proposed and post sem, seq:%" PRId64, transId, pMgmt->transSeq);
|
|
}
|
|
pMgmt->transId = 0;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
tsem_post(&pMgmt->syncSem);
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
} else {
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
STrans *pTrans = mndAcquireTrans(pMnode, transId);
|
|
if (pTrans != NULL) {
|
|
mInfo("trans:%d, execute in mnode which not leader or sync timeout, createTime:%" PRId64 " saved trans:%d",
|
|
transId, pTrans->createdTime, pMgmt->transId);
|
|
mndTransExecute(pMnode, pTrans, false);
|
|
mndReleaseTrans(pMnode, pTrans);
|
|
} else {
|
|
mError("trans:%d, not found while execute in mnode since %s", transId, terrstr());
|
|
}
|
|
}
|
|
|
|
sdbWriteFile(pMnode->pSdb, tsMndSdbWriteDelta);
|
|
return 0;
|
|
}
|
|
|
|
int32_t mndSyncCommitMsg(const SSyncFSM *pFsm, SRpcMsg *pMsg, const SFsmCbMeta *pMeta) {
|
|
int32_t code = 0;
|
|
pMsg->info.conn.applyIndex = pMeta->index;
|
|
pMsg->info.conn.applyTerm = pMeta->term;
|
|
|
|
if (pMsg->code == 0) {
|
|
SMnode *pMnode = pFsm->data;
|
|
atomic_store_64(&pMnode->applied, pMsg->info.conn.applyIndex);
|
|
}
|
|
|
|
if (!syncUtilUserCommit(pMsg->msgType)) {
|
|
goto _out;
|
|
}
|
|
code = mndProcessWriteMsg(pFsm, pMsg, pMeta);
|
|
|
|
_out:
|
|
rpcFreeCont(pMsg->pCont);
|
|
pMsg->pCont = NULL;
|
|
return code;
|
|
}
|
|
|
|
SyncIndex mndSyncAppliedIndex(const SSyncFSM *pFSM) {
|
|
SMnode *pMnode = pFSM->data;
|
|
return atomic_load_64(&pMnode->applied);
|
|
}
|
|
|
|
int32_t mndSyncGetSnapshot(const SSyncFSM *pFsm, SSnapshot *pSnapshot, void *pReaderParam, void **ppReader) {
|
|
mInfo("start to read snapshot from sdb in atomic way");
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbStartRead(pMnode->pSdb, (SSdbIter **)ppReader, &pSnapshot->lastApplyIndex, &pSnapshot->lastApplyTerm,
|
|
&pSnapshot->lastConfigIndex);
|
|
return 0;
|
|
}
|
|
|
|
static void mndSyncGetSnapshotInfo(const SSyncFSM *pFsm, SSnapshot *pSnapshot) {
|
|
SMnode *pMnode = pFsm->data;
|
|
sdbGetCommitInfo(pMnode->pSdb, &pSnapshot->lastApplyIndex, &pSnapshot->lastApplyTerm, &pSnapshot->lastConfigIndex);
|
|
}
|
|
|
|
void mndRestoreFinish(const SSyncFSM *pFsm, const SyncIndex commitIdx) {
|
|
SMnode *pMnode = pFsm->data;
|
|
|
|
if (!pMnode->deploy) {
|
|
if (!pMnode->restored) {
|
|
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");
|
|
}
|
|
} else {
|
|
mInfo("vgId:1, sync restore finished");
|
|
}
|
|
|
|
ASSERT(commitIdx == mndSyncAppliedIndex(pFsm));
|
|
}
|
|
|
|
int32_t mndSnapshotStartRead(const SSyncFSM *pFsm, void *pParam, void **ppReader) {
|
|
mInfo("start to read snapshot from sdb");
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbStartRead(pMnode->pSdb, (SSdbIter **)ppReader, NULL, NULL, NULL);
|
|
}
|
|
|
|
static void mndSnapshotStopRead(const SSyncFSM *pFsm, void *pReader) {
|
|
mInfo("stop to read snapshot from sdb");
|
|
SMnode *pMnode = pFsm->data;
|
|
sdbStopRead(pMnode->pSdb, pReader);
|
|
}
|
|
|
|
int32_t mndSnapshotDoRead(const SSyncFSM *pFsm, void *pReader, void **ppBuf, int32_t *len) {
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbDoRead(pMnode->pSdb, pReader, ppBuf, len);
|
|
}
|
|
|
|
int32_t mndSnapshotStartWrite(const SSyncFSM *pFsm, void *pParam, void **ppWriter) {
|
|
mInfo("start to apply snapshot to sdb");
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbStartWrite(pMnode->pSdb, (SSdbIter **)ppWriter);
|
|
}
|
|
|
|
int32_t mndSnapshotStopWrite(const SSyncFSM *pFsm, void *pWriter, bool isApply, SSnapshot *pSnapshot) {
|
|
mInfo("stop to apply snapshot to sdb, apply:%d, index:%" PRId64 " term:%" PRIu64 " config:%" PRId64, isApply,
|
|
pSnapshot->lastApplyIndex, pSnapshot->lastApplyTerm, pSnapshot->lastConfigIndex);
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbStopWrite(pMnode->pSdb, pWriter, isApply, pSnapshot->lastApplyIndex, pSnapshot->lastApplyTerm,
|
|
pSnapshot->lastConfigIndex);
|
|
}
|
|
|
|
int32_t mndSnapshotDoWrite(const SSyncFSM *pFsm, void *pWriter, void *pBuf, int32_t len) {
|
|
SMnode *pMnode = pFsm->data;
|
|
return sdbDoWrite(pMnode->pSdb, pWriter, pBuf, len);
|
|
}
|
|
|
|
static void mndBecomeFollower(const SSyncFSM *pFsm) {
|
|
SMnode *pMnode = pFsm->data;
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
mInfo("vgId:1, become follower");
|
|
|
|
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;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
pMgmt->errCode = TSDB_CODE_SYN_NOT_LEADER;
|
|
tsem_post(&pMgmt->syncSem);
|
|
}
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
}
|
|
|
|
static void mndBecomeLeader(const SSyncFSM *pFsm) {
|
|
mInfo("vgId:1, become leader");
|
|
SMnode *pMnode = pFsm->data;
|
|
}
|
|
|
|
static bool mndApplyQueueEmpty(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 == 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;
|
|
}
|
|
}
|
|
|
|
SSyncFSM *mndSyncMakeFsm(SMnode *pMnode) {
|
|
SSyncFSM *pFsm = taosMemoryCalloc(1, sizeof(SSyncFSM));
|
|
pFsm->data = pMnode;
|
|
pFsm->FpCommitCb = mndSyncCommitMsg;
|
|
pFsm->FpAppliedIndexCb = mndSyncAppliedIndex;
|
|
pFsm->FpPreCommitCb = NULL;
|
|
pFsm->FpRollBackCb = NULL;
|
|
pFsm->FpRestoreFinishCb = mndRestoreFinish;
|
|
pFsm->FpLeaderTransferCb = NULL;
|
|
pFsm->FpApplyQueueEmptyCb = mndApplyQueueEmpty;
|
|
pFsm->FpApplyQueueItems = mndApplyQueueItems;
|
|
pFsm->FpReConfigCb = NULL;
|
|
pFsm->FpBecomeLeaderCb = mndBecomeLeader;
|
|
pFsm->FpBecomeFollowerCb = mndBecomeFollower;
|
|
pFsm->FpGetSnapshot = mndSyncGetSnapshot;
|
|
pFsm->FpGetSnapshotInfo = mndSyncGetSnapshotInfo;
|
|
pFsm->FpSnapshotStartRead = mndSnapshotStartRead;
|
|
pFsm->FpSnapshotStopRead = mndSnapshotStopRead;
|
|
pFsm->FpSnapshotDoRead = mndSnapshotDoRead;
|
|
pFsm->FpSnapshotStartWrite = mndSnapshotStartWrite;
|
|
pFsm->FpSnapshotStopWrite = mndSnapshotStopWrite;
|
|
pFsm->FpSnapshotDoWrite = mndSnapshotDoWrite;
|
|
return pFsm;
|
|
}
|
|
|
|
int32_t mndInitSync(SMnode *pMnode) {
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
taosThreadMutexInit(&pMgmt->lock, NULL);
|
|
taosThreadMutexLock(&pMgmt->lock);
|
|
pMgmt->transId = 0;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
|
|
SSyncInfo syncInfo = {
|
|
.snapshotStrategy = SYNC_STRATEGY_STANDARD_SNAPSHOT,
|
|
.batchSize = 1,
|
|
.vgId = 1,
|
|
.pWal = pMnode->pWal,
|
|
.msgcb = &pMnode->msgCb,
|
|
.syncSendMSg = mndSyncSendMsg,
|
|
.syncEqMsg = mndSyncEqMsg,
|
|
.syncEqCtrlMsg = mndSyncEqCtrlMsg,
|
|
.pingMs = 5000,
|
|
.electMs = 3000,
|
|
.heartbeatMs = 500,
|
|
};
|
|
|
|
snprintf(syncInfo.path, sizeof(syncInfo.path), "%s%ssync", pMnode->path, TD_DIRSEP);
|
|
syncInfo.pFsm = mndSyncMakeFsm(pMnode);
|
|
|
|
mInfo("vgId:1, start to open sync, replica:%d selfIndex:%d", pMgmt->numOfReplicas, pMgmt->selfIndex);
|
|
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];
|
|
pNode->nodeId = pMgmt->replicas[i].id;
|
|
pNode->nodePort = pMgmt->replicas[i].port;
|
|
tstrncpy(pNode->nodeFqdn, pMgmt->replicas[i].fqdn, sizeof(pNode->nodeFqdn));
|
|
(void)tmsgUpdateDnodeInfo(&pNode->nodeId, &pNode->clusterId, pNode->nodeFqdn, &pNode->nodePort);
|
|
mInfo("vgId:1, index:%d ep:%s:%u dnode:%d cluster:%" PRId64, i, pNode->nodeFqdn, pNode->nodePort, pNode->nodeId,
|
|
pNode->clusterId);
|
|
}
|
|
|
|
tsem_init(&pMgmt->syncSem, 0, 0);
|
|
pMgmt->sync = syncOpen(&syncInfo);
|
|
if (pMgmt->sync <= 0) {
|
|
mError("failed to open sync since %s", terrstr());
|
|
return -1;
|
|
}
|
|
pMnode->pSdb->sync = pMgmt->sync;
|
|
|
|
mInfo("mnode-sync is opened, id:%" PRId64, pMgmt->sync);
|
|
return 0;
|
|
}
|
|
|
|
void mndCleanupSync(SMnode *pMnode) {
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
syncStop(pMgmt->sync);
|
|
mInfo("mnode-sync is stopped, id:%" PRId64, pMgmt->sync);
|
|
|
|
tsem_destroy(&pMgmt->syncSem);
|
|
taosThreadMutexDestroy(&pMgmt->lock);
|
|
memset(pMgmt, 0, sizeof(SSyncMgmt));
|
|
}
|
|
|
|
void mndSyncCheckTimeout(SMnode *pMnode) {
|
|
mTrace("check sync timeout");
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
taosThreadMutexLock(&pMgmt->lock);
|
|
if (pMgmt->transId != 0) {
|
|
int32_t curSec = taosGetTimestampSec();
|
|
int32_t delta = curSec - pMgmt->transSec;
|
|
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);
|
|
pMgmt->transId = 0;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
terrno = TSDB_CODE_SYN_TIMEOUT;
|
|
pMgmt->errCode = TSDB_CODE_SYN_TIMEOUT;
|
|
tsem_post(&pMgmt->syncSem);
|
|
} else {
|
|
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);
|
|
}
|
|
} else {
|
|
// mTrace("check sync timeout msg, no trans waiting for confirm");
|
|
}
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
}
|
|
|
|
int32_t mndSyncPropose(SMnode *pMnode, SSdbRaw *pRaw, int32_t transId) {
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
|
|
SRpcMsg req = {.msgType = TDMT_MND_APPLY_MSG, .contLen = sdbGetRawTotalSize(pRaw)};
|
|
if (req.contLen <= 0) return -1;
|
|
|
|
req.pCont = rpcMallocCont(req.contLen);
|
|
if (req.pCont == NULL) return -1;
|
|
memcpy(req.pCont, pRaw, req.contLen);
|
|
|
|
taosThreadMutexLock(&pMgmt->lock);
|
|
pMgmt->errCode = 0;
|
|
|
|
if (pMgmt->transId != 0 /* && pMgmt->transId != transId*/) {
|
|
mError("trans:%d, can't be proposed since trans:%d already waiting for confirm", transId, pMgmt->transId);
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
rpcFreeCont(req.pCont);
|
|
terrno = TSDB_CODE_MND_LAST_TRANS_NOT_FINISHED;
|
|
return terrno;
|
|
}
|
|
|
|
mInfo("trans:%d, will be proposed", transId);
|
|
pMgmt->transId = transId;
|
|
pMgmt->transSec = taosGetTimestampSec();
|
|
|
|
int64_t seq = 0;
|
|
int32_t code = syncPropose(pMgmt->sync, &req, false, &seq);
|
|
if (code == 0) {
|
|
mInfo("trans:%d, is proposing and wait sem, seq:%" PRId64, transId, seq);
|
|
pMgmt->transSeq = seq;
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
tsem_wait(&pMgmt->syncSem);
|
|
} else if (code > 0) {
|
|
mInfo("trans:%d, confirm at once since replica is 1, continue execute", transId);
|
|
pMgmt->transId = 0;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
sdbWriteWithoutFree(pMnode->pSdb, pRaw);
|
|
sdbSetApplyInfo(pMnode->pSdb, req.info.conn.applyIndex, req.info.conn.applyTerm, SYNC_INDEX_INVALID);
|
|
code = 0;
|
|
} else {
|
|
mError("trans:%d, failed to proposed since %s", transId, terrstr());
|
|
pMgmt->transId = 0;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->transSeq = 0;
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
if (terrno == 0) {
|
|
terrno = TSDB_CODE_APP_ERROR;
|
|
}
|
|
}
|
|
|
|
rpcFreeCont(req.pCont);
|
|
req.pCont = NULL;
|
|
if (code != 0) {
|
|
mError("trans:%d, failed to propose, code:0x%x", pMgmt->transId, code);
|
|
return code;
|
|
}
|
|
|
|
terrno = pMgmt->errCode;
|
|
return terrno;
|
|
}
|
|
|
|
void mndSyncStart(SMnode *pMnode) {
|
|
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
|
if (syncStart(pMgmt->sync) < 0) {
|
|
mError("vgId:1, failed to start sync, id:%" PRId64, pMgmt->sync);
|
|
return;
|
|
}
|
|
mInfo("vgId:1, sync started, id:%" PRId64, pMgmt->sync);
|
|
}
|
|
|
|
void mndSyncStop(SMnode *pMnode) {
|
|
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;
|
|
pMgmt->transSec = 0;
|
|
pMgmt->errCode = TSDB_CODE_APP_IS_STOPPING;
|
|
tsem_post(&pMgmt->syncSem);
|
|
}
|
|
taosThreadMutexUnlock(&pMgmt->lock);
|
|
}
|
|
|
|
bool mndIsLeader(SMnode *pMnode) {
|
|
terrno = 0;
|
|
SSyncState state = syncGetState(pMnode->syncMgmt.sync);
|
|
|
|
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));
|
|
return false;
|
|
}
|
|
|
|
if (!state.restored || !pMnode->restored) {
|
|
terrno = TSDB_CODE_SYN_RESTORING;
|
|
mDebug("vgId:1, mnode not restored:%d:%d", state.restored, pMnode->restored);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|