mndSync.c 12.8 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);
S
Shengliang Guan 已提交
81
  pMgmt->errCode = pMeta->code;
82
  mInfo("trans:%d, is proposed, saved:%d code:0x%x, apply index:%" PRId64 " term:%" PRIu64 " config:%" PRId64
H
Hongze Cheng 已提交
83
        " role:%s raw:%p",
S
Shengliang Guan 已提交
84
        transId, pMgmt->transId, pMeta->code, pMeta->index, pMeta->term, pMeta->lastConfigIndex, syncStr(pMeta->state),
H
Hongze Cheng 已提交
85
        pRaw);
S
Shengliang Guan 已提交
86 87 88

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

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

  return 0;
M
Minghao Li 已提交
119 120
}

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

_out:
129 130
  rpcFreeCont(pMsg->pCont);
  pMsg->pCont = NULL;
131
  return code;
132 133
}

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

S
Shengliang Guan 已提交
142
int32_t mndSyncGetSnapshotInfo(const SSyncFSM *pFsm, SSnapshot *pSnapshot) {
143
  SMnode *pMnode = pFsm->data;
144
  sdbGetCommitInfo(pMnode->pSdb, &pSnapshot->lastApplyIndex, &pSnapshot->lastApplyTerm, &pSnapshot->lastConfigIndex);
M
Minghao Li 已提交
145 146 147
  return 0;
}

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

S
Shengliang Guan 已提交
151
  if (!pMnode->deploy) {
152
    mInfo("vgId:1, sync restore finished, and will handle outstanding transactions");
S
Shengliang Guan 已提交
153
    mndTransPullup(pMnode);
154
    mndSetRestored(pMnode, true);
S
Shengliang Guan 已提交
155
  } else {
156
    mInfo("vgId:1, sync restore finished");
S
Shengliang Guan 已提交
157
  }
158 159
}

S
Shengliang Guan 已提交
160
int32_t mndSnapshotStartRead(const SSyncFSM *pFsm, void *pParam, void **ppReader) {
161
  mInfo("start to read snapshot from sdb");
S
Shengliang Guan 已提交
162
  SMnode *pMnode = pFsm->data;
163
  return sdbStartRead(pMnode->pSdb, (SSdbIter **)ppReader, NULL, NULL, NULL);
S
Shengliang Guan 已提交
164 165
}

S
Shengliang Guan 已提交
166
int32_t mndSnapshotStopRead(const SSyncFSM *pFsm, void *pReader) {
167
  mInfo("stop to read snapshot from sdb");
S
Shengliang Guan 已提交
168 169 170 171
  SMnode *pMnode = pFsm->data;
  return sdbStopRead(pMnode->pSdb, pReader);
}

S
Shengliang Guan 已提交
172
int32_t mndSnapshotDoRead(const SSyncFSM *pFsm, void *pReader, void **ppBuf, int32_t *len) {
S
Shengliang Guan 已提交
173 174 175 176
  SMnode *pMnode = pFsm->data;
  return sdbDoRead(pMnode->pSdb, pReader, ppBuf, len);
}

S
Shengliang Guan 已提交
177
int32_t mndSnapshotStartWrite(const SSyncFSM *pFsm, void *pParam, void **ppWriter) {
S
Shengliang Guan 已提交
178 179 180 181 182
  mInfo("start to apply snapshot to sdb");
  SMnode *pMnode = pFsm->data;
  return sdbStartWrite(pMnode->pSdb, (SSdbIter **)ppWriter);
}

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

S
Shengliang Guan 已提交
191
int32_t mndSnapshotDoWrite(const SSyncFSM *pFsm, void *pWriter, void *pBuf, int32_t len) {
S
Shengliang Guan 已提交
192 193 194 195
  SMnode *pMnode = pFsm->data;
  return sdbDoWrite(pMnode->pSdb, pWriter, pBuf, len);
}

S
Shengliang Guan 已提交
196
static void mndBecomeFollower(const SSyncFSM *pFsm) {
197
  SMnode *pMnode = pFsm->data;
198
  mInfo("vgId:1, become follower");
199

200
  taosWLockLatch(&pMnode->syncMgmt.lock);
201
  if (pMnode->syncMgmt.transId != 0) {
202 203
    mInfo("vgId:1, become follower and post sem, trans:%d, failed to propose since not leader",
          pMnode->syncMgmt.transId);
204
    pMnode->syncMgmt.transId = 0;
205
    pMnode->syncMgmt.errCode = TSDB_CODE_SYN_NOT_LEADER;
206 207
    tsem_post(&pMnode->syncMgmt.syncSem);
  }
208
  taosWUnLockLatch(&pMnode->syncMgmt.lock);
209 210
}

S
Shengliang Guan 已提交
211
static void mndBecomeLeader(const SSyncFSM *pFsm) {
212
  mInfo("vgId:1, become leader");
213
  SMnode *pMnode = pFsm->data;
214 215
}

216 217 218
static bool mndApplyQueueEmpty(const SSyncFSM *pFsm) {
  SMnode *pMnode = pFsm->data;

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
  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;
  }
236 237
}

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

int32_t mndInitSync(SMnode *pMnode) {
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
264 265
  taosInitRWLatch(&pMgmt->lock);
  pMgmt->transId = 0;
266

S
Shengliang Guan 已提交
267 268 269 270 271
  SSyncInfo syncInfo = {
      .snapshotStrategy = SYNC_STRATEGY_STANDARD_SNAPSHOT,
      .batchSize = 1,
      .vgId = 1,
      .pWal = pMnode->pWal,
S
Shengliang Guan 已提交
272
      .msgcb = &pMnode->msgCb,
S
Shengliang Guan 已提交
273 274
      .syncSendMSg = mndSyncSendMsg,
      .syncEqMsg = mndSyncEqMsg,
275
      .syncEqCtrlMsg = mndSyncEqCtrlMsg,
S
Shengliang Guan 已提交
276 277 278
      .pingMs = 5000,
      .electMs = 3000,
      .heartbeatMs = 500,
S
Shengliang Guan 已提交
279 280
  };

281 282 283
  snprintf(syncInfo.path, sizeof(syncInfo.path), "%s%ssync", pMnode->path, TD_DIRSEP);
  syncInfo.pFsm = mndSyncMakeFsm(pMnode);

S
Shengliang Guan 已提交
284
  mInfo("vgId:1, start to open sync, replica:%d selfIndex:%d", pMgmt->numOfReplicas, pMgmt->selfIndex);
285 286 287 288 289 290 291 292
  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 已提交
293 294
  }

295
  tsem_init(&pMgmt->syncSem, 0, 0);
296 297 298 299 300
  pMgmt->sync = syncOpen(&syncInfo);
  if (pMgmt->sync <= 0) {
    mError("failed to open sync since %s", terrstr());
    return -1;
  }
M
Minghao Li 已提交
301

302
  mInfo("mnode-sync is opened, id:%" PRId64, pMgmt->sync);
S
Shengliang Guan 已提交
303 304 305 306 307
  return 0;
}

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

311
  tsem_destroy(&pMgmt->syncSem);
312 313
  memset(pMgmt, 0, sizeof(SSyncMgmt));
}
M
Minghao Li 已提交
314

S
Shengliang Guan 已提交
315
int32_t mndSyncPropose(SMnode *pMnode, SSdbRaw *pRaw, int32_t transId) {
S
Shengliang Guan 已提交
316
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
S
Shengliang Guan 已提交
317
  pMgmt->errCode = 0;
S
Shengliang Guan 已提交
318

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

322 323 324
  req.pCont = rpcMallocCont(req.contLen);
  if (req.pCont == NULL) return -1;
  memcpy(req.pCont, pRaw, req.contLen);
S
Shengliang Guan 已提交
325

326
  taosWLockLatch(&pMgmt->lock);
327
  if (pMgmt->transId != 0) {
S
Shengliang Guan 已提交
328
    mError("trans:%d, can't be proposed since trans:%d already waiting for confirm", transId, pMgmt->transId);
329
    taosWUnLockLatch(&pMgmt->lock);
330
    terrno = TSDB_CODE_MND_LAST_TRANS_NOT_FINISHED;
331 332
    return -1;
  }
S
Shengliang Guan 已提交
333

S
Shengliang Guan 已提交
334 335 336
  mInfo("trans:%d, will be proposed", transId);
  pMgmt->transId = transId;
  taosWUnLockLatch(&pMgmt->lock);
337

S
Shengliang Guan 已提交
338
  int32_t code = syncPropose(pMgmt->sync, &req, false);
339
  if (code == 0) {
340
    mInfo("trans:%d, is proposing and wait sem", pMgmt->transId);
341
    tsem_wait(&pMgmt->syncSem);
342 343 344 345 346 347 348 349
  } else if (code > 0) {
    mInfo("trans:%d, confirm at once since replica is 1, continue execute", transId);
    taosWLockLatch(&pMgmt->lock);
    pMgmt->transId = 0;
    taosWUnLockLatch(&pMgmt->lock);
    sdbWriteWithoutFree(pMnode->pSdb, pRaw);
    sdbSetApplyInfo(pMnode->pSdb, req.info.conn.applyIndex, req.info.conn.applyTerm, SYNC_INDEX_INVALID);
    code = 0;
350
  } else {
351
    mError("trans:%d, failed to proposed since %s", transId, terrstr());
S
Shengliang Guan 已提交
352
    taosWLockLatch(&pMgmt->lock);
353 354
    pMgmt->transId = 0;
    taosWUnLockLatch(&pMgmt->lock);
355
    if (terrno == 0) {
356 357
      terrno = TSDB_CODE_APP_ERROR;
    }
358
  }
359

360
  rpcFreeCont(req.pCont);
S
Shengliang Guan 已提交
361
  req.pCont = NULL;
S
Shengliang Guan 已提交
362 363 364 365 366
  if (code != 0) {
    mError("trans:%d, failed to propose, code:0x%x", pMgmt->transId, code);
    return code;
  }

S
Shengliang Guan 已提交
367
  terrno = pMgmt->errCode;
S
Shengliang Guan 已提交
368
  return pMgmt->errCode;
369 370
}

371
void mndSyncStart(SMnode *pMnode) {
372
  SSyncMgmt *pMgmt = &pMnode->syncMgmt;
B
Benguang Zhao 已提交
373
  if (syncStart(pMgmt->sync) < 0) {
374
    mError("vgId:1, failed to start sync, id:%" PRId64, pMgmt->sync);
B
Benguang Zhao 已提交
375 376
    return;
  }
377
  mInfo("vgId:1, sync started, id:%" PRId64, pMgmt->sync);
378 379
}

S
Shengliang Guan 已提交
380
void mndSyncStop(SMnode *pMnode) {
381
  taosWLockLatch(&pMnode->syncMgmt.lock);
S
Shengliang Guan 已提交
382
  if (pMnode->syncMgmt.transId != 0) {
383
    mInfo("vgId:1, is stopped and post sem, trans:%d", pMnode->syncMgmt.transId);
S
Shengliang Guan 已提交
384
    pMnode->syncMgmt.transId = 0;
S
Shengliang Guan 已提交
385 386
    tsem_post(&pMnode->syncMgmt.syncSem);
  }
387
  taosWUnLockLatch(&pMnode->syncMgmt.lock);
S
Shengliang Guan 已提交
388
}
389

390
bool mndIsLeader(SMnode *pMnode) {
391
  terrno = 0;
392
  SSyncState state = syncGetState(pMnode->syncMgmt.sync);
393

394 395 396 397 398 399 400 401
  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));
402 403 404
    return false;
  }

405 406 407
  if (!state.restored || !pMnode->restored) {
    terrno = TSDB_CODE_SYN_RESTORING;
    mDebug("vgId:1, mnode not restored:%d:%d", state.restored, pMnode->restored);
408 409 410 411
    return false;
  }

  return true;
L
Liu Jicong 已提交
412
}