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

18
#include "syncPipeline.h"
19
#include "syncCommit.h"
20
#include "syncIndexMgr.h"
21 22 23 24
#include "syncInt.h"
#include "syncRaftEntry.h"
#include "syncRaftStore.h"
#include "syncReplication.h"
25 26
#include "syncRespMgr.h"
#include "syncSnapshot.h"
27 28
#include "syncUtil.h"

29 30 31 32 33
static bool syncIsMsgBlock(tmsg_t type) {
  return (type == TDMT_VND_CREATE_TABLE) || (type == TDMT_VND_ALTER_TABLE) || (type == TDMT_VND_DROP_TABLE) ||
         (type == TDMT_VND_UPDATE_TAG_VAL) || (type == TDMT_VND_ALTER_CONFIRM);
}

34 35 36 37
FORCE_INLINE static int64_t syncGetRetryMaxWaitMs() {
  return SYNC_LOG_REPL_RETRY_WAIT_MS * (1 << SYNC_MAX_RETRY_BACKOFF);
}

38 39 40 41 42 43 44 45 46 47 48 49 50
int64_t syncLogBufferGetEndIndex(SSyncLogBuffer* pBuf) {
  taosThreadMutexLock(&pBuf->mutex);
  int64_t index = pBuf->endIndex;
  taosThreadMutexUnlock(&pBuf->mutex);
  return index;
}

int32_t syncLogBufferAppend(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEntry* pEntry) {
  taosThreadMutexLock(&pBuf->mutex);
  syncLogBufferValidate(pBuf);
  SyncIndex index = pEntry->index;

  if (index - pBuf->startIndex >= pBuf->size) {
51 52 53 54 55 56
    terrno = TSDB_CODE_SYN_BUFFER_FULL;
    sError("vgId:%d, failed to append since %s. index:%" PRId64 "", pNode->vgId, terrstr(), index);
    goto _err;
  }

  SyncIndex appliedIndex = pNode->pFsm->FpAppliedIndexCb(pNode->pFsm);
57
  if (pNode->restoreFinish && pBuf->commitIndex - appliedIndex >= pBuf->size) {
58 59 60
    terrno = TSDB_CODE_SYN_WRITE_STALL;
    sError("vgId:%d, failed to append since %s. index:%" PRId64 ", commit-index:%" PRId64 ", applied-index:%" PRId64,
           pNode->vgId, terrstr(), index, pBuf->commitIndex, appliedIndex);
61
    goto _err;
62 63
  }

64
  ASSERT(index == pBuf->endIndex);
65 66

  SSyncRaftEntry* pExist = pBuf->entries[index % pBuf->size].pItem;
67
  ASSERT(pExist == NULL);
68 69 70

  // initial log buffer with at least one item, e.g. commitIndex
  SSyncRaftEntry* pMatch = pBuf->entries[(index - 1 + pBuf->size) % pBuf->size].pItem;
S
Shengliang Guan 已提交
71
  ASSERTS(pMatch != NULL, "no matched log entry");
72
  ASSERT(pMatch->index + 1 == index);
73
  ASSERT(pMatch->term <= pEntry->term);
74 75 76 77 78 79 80 81 82

  SSyncLogBufEntry tmp = {.pItem = pEntry, .prevLogIndex = pMatch->index, .prevLogTerm = pMatch->term};
  pBuf->entries[index % pBuf->size] = tmp;
  pBuf->endIndex = index + 1;

  syncLogBufferValidate(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return 0;

83
_err:
84 85 86 87 88
  syncLogBufferValidate(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return -1;
}

89
SyncTerm syncLogReplGetPrevLogTerm(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncIndex index) {
90 91 92 93 94 95
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
  SSyncRaftEntry* pEntry = NULL;
  SyncIndex       prevIndex = index - 1;
  SyncTerm        prevLogTerm = -1;
  terrno = TSDB_CODE_SUCCESS;

96
  if (prevIndex == -1 && pNode->pLogStore->syncLogBeginIndex(pNode->pLogStore) == 0) return 0;
97

98
  if (prevIndex > pBuf->matchIndex) {
99 100 101 102
    terrno = TSDB_CODE_WAL_LOG_NOT_EXIST;
    return -1;
  }

103
  ASSERT(index - 1 == prevIndex);
104

105 106
  if (prevIndex >= pBuf->startIndex) {
    pEntry = pBuf->entries[(prevIndex + pBuf->size) % pBuf->size].pItem;
S
Shengliang Guan 已提交
107
    ASSERTS(pEntry != NULL, "no log entry found");
108
    prevLogTerm = pEntry->term;
109 110 111
    return prevLogTerm;
  }

112
  if (pMgr && pMgr->startIndex <= prevIndex && prevIndex < pMgr->endIndex) {
113
    int64_t timeMs = pMgr->states[(prevIndex + pMgr->size) % pMgr->size].timeMs;
S
Shengliang Guan 已提交
114
    ASSERTS(timeMs != 0, "no log entry found");
115
    prevLogTerm = pMgr->states[(prevIndex + pMgr->size) % pMgr->size].term;
116
    ASSERT(prevIndex == 0 || prevLogTerm != 0);
117 118 119
    return prevLogTerm;
  }

120 121 122
  SSnapshot snapshot = {0};
  pNode->pFsm->FpGetSnapshotInfo(pNode->pFsm, &snapshot);
  if (prevIndex == snapshot.lastApplyIndex) {
123 124 125 126 127 128 129 130 131 132
    return snapshot.lastApplyTerm;
  }

  if (pNode->pLogStore->syncLogGetEntry(pNode->pLogStore, prevIndex, &pEntry) == 0) {
    prevLogTerm = pEntry->term;
    syncEntryDestroy(pEntry);
    pEntry = NULL;
    return prevLogTerm;
  }

133
  sInfo("vgId:%d, failed to get log term since %s. index:%" PRId64, pNode->vgId, terrstr(), prevIndex);
134 135 136 137 138 139 140 141
  terrno = TSDB_CODE_WAL_LOG_NOT_EXIST;
  return -1;
}

SSyncRaftEntry* syncEntryBuildDummy(SyncTerm term, SyncIndex index, int32_t vgId) {
  return syncEntryBuildNoop(term, index, vgId);
}

142 143 144
int32_t syncLogValidateAlignmentOfCommit(SSyncNode* pNode, SyncIndex commitIndex) {
  SyncIndex firstVer = pNode->pLogStore->syncLogBeginIndex(pNode->pLogStore);
  if (firstVer > commitIndex + 1) {
S
Shengliang Guan 已提交
145 146
    sError("vgId:%d, firstVer of WAL log greater than tsdb commit version + 1. firstVer:%" PRId64
           ", tsdb commit version:%" PRId64 "",
147 148 149 150 151 152
           pNode->vgId, firstVer, commitIndex);
    return -1;
  }

  SyncIndex lastVer = pNode->pLogStore->syncLogLastIndex(pNode->pLogStore);
  if (lastVer < commitIndex) {
S
Shengliang Guan 已提交
153 154
    sError("vgId:%d, lastVer of WAL log less than tsdb commit version. lastVer:%" PRId64
           ", tsdb commit version:%" PRId64 "",
155 156 157 158 159 160 161
           pNode->vgId, lastVer, commitIndex);
    return -1;
  }

  return 0;
}

162
int32_t syncLogBufferInitWithoutLock(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
S
Shengliang Guan 已提交
163 164 165
  ASSERTS(pNode->pLogStore != NULL, "log store not created");
  ASSERTS(pNode->pFsm != NULL, "pFsm not registered");
  ASSERTS(pNode->pFsm->FpGetSnapshotInfo != NULL, "FpGetSnapshotInfo not registered");
166

167 168 169
  SSnapshot snapshot = {0};
  pNode->pFsm->FpGetSnapshotInfo(pNode->pFsm, &snapshot);

170
  SyncIndex commitIndex = snapshot.lastApplyIndex;
171
  SyncTerm  commitTerm = TMAX(snapshot.lastApplyTerm, 0);
172
  if (syncLogValidateAlignmentOfCommit(pNode, commitIndex)) {
173 174 175 176
    terrno = TSDB_CODE_WAL_LOG_INCOMPLETE;
    goto _err;
  }

177
  SyncIndex lastVer = pNode->pLogStore->syncLogLastIndex(pNode->pLogStore);
178
  ASSERT(lastVer >= commitIndex);
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
  SyncIndex toIndex = lastVer;
  // update match index
  pBuf->commitIndex = commitIndex;
  pBuf->matchIndex = toIndex;
  pBuf->endIndex = toIndex + 1;

  // load log entries in reverse order
  SSyncLogStore*  pLogStore = pNode->pLogStore;
  SyncIndex       index = toIndex;
  SSyncRaftEntry* pEntry = NULL;
  bool            takeDummy = false;

  while (true) {
    if (index <= pBuf->commitIndex) {
      takeDummy = true;
      break;
    }

    if (pLogStore->syncLogGetEntry(pLogStore, index, &pEntry) < 0) {
      sError("vgId:%d, failed to get log entry since %s. index:%" PRId64 "", pNode->vgId, terrstr(), index);
      break;
    }

    bool taken = false;
203 204
    int  emptySize = 5;
    if (toIndex - index + 1 <= pBuf->size - emptySize) {
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
      SSyncLogBufEntry tmp = {.pItem = pEntry, .prevLogIndex = -1, .prevLogTerm = -1};
      pBuf->entries[index % pBuf->size] = tmp;
      taken = true;
    }

    if (index < toIndex) {
      pBuf->entries[(index + 1) % pBuf->size].prevLogIndex = pEntry->index;
      pBuf->entries[(index + 1) % pBuf->size].prevLogTerm = pEntry->term;
    }

    if (!taken) {
      syncEntryDestroy(pEntry);
      pEntry = NULL;
      break;
    }

    index--;
  }

  // put a dummy record at commitIndex if present in log buffer
  if (takeDummy) {
226
    ASSERT(index == pBuf->commitIndex);
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244

    SSyncRaftEntry* pDummy = syncEntryBuildDummy(commitTerm, commitIndex, pNode->vgId);
    if (pDummy == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      goto _err;
    }
    SSyncLogBufEntry tmp = {.pItem = pDummy, .prevLogIndex = commitIndex - 1, .prevLogTerm = commitTerm};
    pBuf->entries[(commitIndex + pBuf->size) % pBuf->size] = tmp;

    if (index < toIndex) {
      pBuf->entries[(index + 1) % pBuf->size].prevLogIndex = commitIndex;
      pBuf->entries[(index + 1) % pBuf->size].prevLogTerm = commitTerm;
    }
  }

  // update startIndex
  pBuf->startIndex = takeDummy ? index : index + 1;

245 246 247
  sInfo("vgId:%d, init sync log buffer. buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")", pNode->vgId,
        pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);

248 249 250 251 252 253 254 255
  // validate
  syncLogBufferValidate(pBuf);
  return 0;

_err:
  return -1;
}

256 257 258 259 260 261 262 263 264
int32_t syncLogBufferInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
  taosThreadMutexLock(&pBuf->mutex);
  int32_t ret = syncLogBufferInitWithoutLock(pBuf, pNode);
  taosThreadMutexUnlock(&pBuf->mutex);
  return ret;
}

int32_t syncLogBufferReInit(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
  taosThreadMutexLock(&pBuf->mutex);
265
  syncLogBufferValidate(pBuf);
266 267 268 269 270 271 272 273 274 275 276 277
  for (SyncIndex index = pBuf->startIndex; index < pBuf->endIndex; index++) {
    SSyncRaftEntry* pEntry = pBuf->entries[(index + pBuf->size) % pBuf->size].pItem;
    if (pEntry == NULL) continue;
    syncEntryDestroy(pEntry);
    pEntry = NULL;
    memset(&pBuf->entries[(index + pBuf->size) % pBuf->size], 0, sizeof(pBuf->entries[0]));
  }
  pBuf->startIndex = pBuf->commitIndex = pBuf->matchIndex = pBuf->endIndex = 0;
  int32_t ret = syncLogBufferInitWithoutLock(pBuf, pNode);
  if (ret < 0) {
    sError("vgId:%d, failed to re-initialize sync log buffer since %s.", pNode->vgId, terrstr());
  }
278
  syncLogBufferValidate(pBuf);
279 280 281 282
  taosThreadMutexUnlock(&pBuf->mutex);
  return ret;
}

283
FORCE_INLINE SyncTerm syncLogBufferGetLastMatchTermWithoutLock(SSyncLogBuffer* pBuf) {
284 285
  SyncIndex       index = pBuf->matchIndex;
  SSyncRaftEntry* pEntry = pBuf->entries[(index + pBuf->size) % pBuf->size].pItem;
286
  ASSERT(pEntry != NULL);
287 288 289
  return pEntry->term;
}

290 291 292 293 294 295 296
SyncTerm syncLogBufferGetLastMatchTerm(SSyncLogBuffer* pBuf) {
  taosThreadMutexLock(&pBuf->mutex);
  SyncTerm term = syncLogBufferGetLastMatchTermWithoutLock(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return term;
}

297 298 299 300 301 302 303
bool syncLogBufferIsEmpty(SSyncLogBuffer* pBuf) {
  taosThreadMutexLock(&pBuf->mutex);
  bool empty = (pBuf->endIndex <= pBuf->startIndex);
  taosThreadMutexUnlock(&pBuf->mutex);
  return empty;
}

304 305 306
int32_t syncLogBufferAccept(SSyncLogBuffer* pBuf, SSyncNode* pNode, SSyncRaftEntry* pEntry, SyncTerm prevTerm) {
  taosThreadMutexLock(&pBuf->mutex);
  syncLogBufferValidate(pBuf);
S
Shengliang Guan 已提交
307 308 309
  int32_t         ret = -1;
  SyncIndex       index = pEntry->index;
  SyncIndex       prevIndex = pEntry->index - 1;
310
  SyncTerm        lastMatchTerm = syncLogBufferGetLastMatchTermWithoutLock(pBuf);
311 312
  SSyncRaftEntry* pExist = NULL;
  bool            inBuf = true;
313 314

  if (index <= pBuf->commitIndex) {
S
Shengliang Guan 已提交
315
    sTrace("vgId:%d, already committed. index:%" PRId64 ", term:%" PRId64 ". log buffer: [%" PRId64 " %" PRId64
316
           " %" PRId64 ", %" PRId64 ")",
317 318
           pNode->vgId, pEntry->index, pEntry->term, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex,
           pBuf->endIndex);
319
    SyncTerm term = syncLogReplGetPrevLogTerm(NULL, pNode, index + 1);
320
    ASSERT(pEntry->term >= 0);
321 322 323
    if (term == pEntry->term) {
      ret = 0;
    }
324 325 326 327
    goto _out;
  }

  if (index - pBuf->startIndex >= pBuf->size) {
S
Shengliang Guan 已提交
328
    sWarn("vgId:%d, out of buffer range. index:%" PRId64 ", term:%" PRId64 ". log buffer: [%" PRId64 " %" PRId64
329
          " %" PRId64 ", %" PRId64 ")",
330 331 332 333 334 335
          pNode->vgId, pEntry->index, pEntry->term, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex,
          pBuf->endIndex);
    goto _out;
  }

  if (index > pBuf->matchIndex && lastMatchTerm != prevTerm) {
S
Shengliang Guan 已提交
336 337
    sWarn("vgId:%d, not ready to accept. index:%" PRId64 ", term:%" PRId64 ": prevterm:%" PRId64
          " != lastmatch:%" PRId64 ". log buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")",
338 339 340 341 342 343
          pNode->vgId, pEntry->index, pEntry->term, prevTerm, lastMatchTerm, pBuf->startIndex, pBuf->commitIndex,
          pBuf->matchIndex, pBuf->endIndex);
    goto _out;
  }

  // check current in buffer
344
  pExist = syncLogBufferGetOneEntry(pBuf, pNode, index, &inBuf);
345
  if (pExist != NULL) {
346
    ASSERT(pEntry->index == pExist->index);
347
    if (pEntry->term != pExist->term) {
348
      (void)syncLogBufferRollback(pBuf, pNode, index);
349
    } else {
S
Shengliang Guan 已提交
350
      sTrace("vgId:%d, duplicate log entry received. index:%" PRId64 ", term:%" PRId64 ". log buffer: [%" PRId64
351 352 353
             " %" PRId64 " %" PRId64 ", %" PRId64 ")",
             pNode->vgId, pEntry->index, pEntry->term, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex,
             pBuf->endIndex);
354
      SyncTerm existPrevTerm = syncLogReplGetPrevLogTerm(NULL, pNode, index);
355
      ASSERT(pEntry->term == pExist->term && (pEntry->index > pBuf->matchIndex || prevTerm == existPrevTerm));
356 357 358 359 360 361
      ret = 0;
      goto _out;
    }
  }

  // update
B
Benguang Zhao 已提交
362 363
  ASSERT(pBuf->startIndex < index);
  ASSERT(index - pBuf->startIndex < pBuf->size);
364
  ASSERT(pBuf->entries[index % pBuf->size].pItem == NULL);
365 366 367 368 369 370 371 372 373 374 375 376
  SSyncLogBufEntry tmp = {.pItem = pEntry, .prevLogIndex = prevIndex, .prevLogTerm = prevTerm};
  pEntry = NULL;
  pBuf->entries[index % pBuf->size] = tmp;

  // update end index
  pBuf->endIndex = TMAX(index + 1, pBuf->endIndex);

  // success
  ret = 0;

_out:
  syncEntryDestroy(pEntry);
377 378 379 380
  if (!inBuf) {
    syncEntryDestroy(pExist);
    pExist = NULL;
  }
381 382 383 384 385
  syncLogBufferValidate(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return ret;
}

386 387 388 389 390
static inline bool syncLogStoreNeedFlush(SSyncRaftEntry* pEntry, int32_t replicaNum) {
  return (replicaNum > 1) && (pEntry->originalRpcType == TDMT_VND_COMMIT);
}

int32_t syncLogStorePersist(SSyncLogStore* pLogStore, SSyncNode* pNode, SSyncRaftEntry* pEntry) {
391
  ASSERT(pEntry->index >= 0);
392 393 394 395 396 397
  SyncIndex lastVer = pLogStore->syncLogLastIndex(pLogStore);
  if (lastVer >= pEntry->index && pLogStore->syncLogTruncate(pLogStore, pEntry->index) < 0) {
    sError("failed to truncate log store since %s. from index:%" PRId64 "", terrstr(), pEntry->index);
    return -1;
  }
  lastVer = pLogStore->syncLogLastIndex(pLogStore);
398
  ASSERT(pEntry->index == lastVer + 1);
399

400 401
  bool doFsync = syncLogStoreNeedFlush(pEntry, pNode->replicaNum);
  if (pLogStore->syncLogAppendEntry(pLogStore, pEntry, doFsync) < 0) {
402
    sError("failed to append sync log entry since %s. index:%" PRId64 ", term:%" PRId64 "", terrstr(), pEntry->index,
403 404 405 406 407
           pEntry->term);
    return -1;
  }

  lastVer = pLogStore->syncLogLastIndex(pLogStore);
408
  ASSERT(pEntry->index == lastVer);
409 410 411
  return 0;
}

412
int64_t syncLogBufferProceed(SSyncLogBuffer* pBuf, SSyncNode* pNode, SyncTerm* pMatchTerm) {
413 414 415 416 417 418 419 420
  taosThreadMutexLock(&pBuf->mutex);
  syncLogBufferValidate(pBuf);

  SSyncLogStore* pLogStore = pNode->pLogStore;
  int64_t        matchIndex = pBuf->matchIndex;

  while (pBuf->matchIndex + 1 < pBuf->endIndex) {
    int64_t index = pBuf->matchIndex + 1;
421
    ASSERT(index >= 0);
422 423 424 425 426 427 428

    // try to proceed
    SSyncLogBufEntry* pBufEntry = &pBuf->entries[index % pBuf->size];
    SyncIndex         prevLogIndex = pBufEntry->prevLogIndex;
    SyncTerm          prevLogTerm = pBufEntry->prevLogTerm;
    SSyncRaftEntry*   pEntry = pBufEntry->pItem;
    if (pEntry == NULL) {
429
      sTrace("vgId:%d, cannot proceed match index in log buffer. no raft entry at next pos of matchIndex:%" PRId64,
430 431 432 433
             pNode->vgId, pBuf->matchIndex);
      goto _out;
    }

434
    ASSERT(index == pEntry->index);
435 436 437

    // match
    SSyncRaftEntry* pMatch = pBuf->entries[(pBuf->matchIndex + pBuf->size) % pBuf->size].pItem;
438 439 440 441
    ASSERT(pMatch != NULL);
    ASSERT(pMatch->index == pBuf->matchIndex);
    ASSERT(pMatch->index + 1 == pEntry->index);
    ASSERT(prevLogIndex == pMatch->index);
442 443 444

    if (pMatch->term != prevLogTerm) {
      sInfo(
445
          "vgId:%d, mismatching sync log entries encountered. "
446 447 448 449 450 451 452 453 454 455
          "{ index:%" PRId64 ", term:%" PRId64
          " } "
          "{ index:%" PRId64 ", term:%" PRId64 ", prevLogIndex:%" PRId64 ", prevLogTerm:%" PRId64 " } ",
          pNode->vgId, pMatch->index, pMatch->term, pEntry->index, pEntry->term, prevLogIndex, prevLogTerm);
      goto _out;
    }

    // increase match index
    pBuf->matchIndex = index;

S
Shengliang Guan 已提交
456
    sTrace("vgId:%d, log buffer proceed. start index:%" PRId64 ", match index:%" PRId64 ", end index:%" PRId64,
457
           pNode->vgId, pBuf->startIndex, pBuf->matchIndex, pBuf->endIndex);
458 459

    // replicate on demand
460
    (void)syncNodeReplicateWithoutLock(pNode);
461 462

    // persist
463
    if (syncLogStorePersist(pLogStore, pNode, pEntry) < 0) {
464 465
      sError("vgId:%d, failed to persist sync log entry from buffer since %s. index:%" PRId64, pNode->vgId, terrstr(),
             pEntry->index);
466 467
      goto _out;
    }
468
    ASSERT(pEntry->index == pBuf->matchIndex);
469 470 471 472 473 474 475 476

    // update my match index
    matchIndex = pBuf->matchIndex;
    syncIndexMgrSetIndex(pNode->pMatchIndex, &pNode->myRaftId, pBuf->matchIndex);
  }  // end of while

_out:
  pBuf->matchIndex = matchIndex;
477 478 479
  if (pMatchTerm) {
    *pMatchTerm = pBuf->entries[(matchIndex + pBuf->size) % pBuf->size].pItem->term;
  }
480 481 482 483 484
  syncLogBufferValidate(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return matchIndex;
}

485 486
int32_t syncFsmExecute(SSyncNode* pNode, SSyncFSM* pFsm, ESyncState role, SyncTerm term, SSyncRaftEntry* pEntry,
                       int32_t applyCode) {
487
  if (pNode->replicaNum == 1 && pNode->restoreFinish && pNode->vgId != 1) {
488 489 490
    return 0;
  }

491 492 493
  if (pNode->vgId != 1 && syncIsMsgBlock(pEntry->originalRpcType)) {
    sTrace("vgId:%d, blocking msg ready to execute, index:%" PRId64 ", term:%" PRId64 ", type:%s code:0x%x",
           pNode->vgId, pEntry->index, pEntry->term, TMSG_INFO(pEntry->originalRpcType), applyCode);
494 495
  }

B
Benguang Zhao 已提交
496
  if (pEntry->originalRpcType == TDMT_VND_COMMIT) {
S
Shengliang Guan 已提交
497
    sInfo("vgId:%d, fsm execute vnode commit. index:%" PRId64 ", term:%" PRId64 "", pNode->vgId, pEntry->index,
B
Benguang Zhao 已提交
498 499 500
          pEntry->term);
  }

501
  SRpcMsg rpcMsg = {.code = applyCode};
502 503 504 505
  syncEntry2OriginalRpc(pEntry, &rpcMsg);

  SFsmCbMeta cbMeta = {0};
  cbMeta.index = pEntry->index;
506
  cbMeta.lastConfigIndex = syncNodeGetSnapshotConfigIndex(pNode, pEntry->index);
507
  cbMeta.isWeak = pEntry->isWeak;
508
  cbMeta.code = applyCode;
509 510 511 512 513 514
  cbMeta.state = role;
  cbMeta.seqNum = pEntry->seqNum;
  cbMeta.term = pEntry->term;
  cbMeta.currentTerm = term;
  cbMeta.flag = -1;

515
  (void)syncRespMgrGetAndDel(pNode->pSyncRespMgr, cbMeta.seqNum, &rpcMsg.info);
516 517
  int32_t code = pFsm->FpCommitCb(pFsm, &rpcMsg, &cbMeta);
  return code;
518 519 520
}

int32_t syncLogBufferValidate(SSyncLogBuffer* pBuf) {
521 522 523 524 525
  ASSERT(pBuf->startIndex <= pBuf->matchIndex);
  ASSERT(pBuf->commitIndex <= pBuf->matchIndex);
  ASSERT(pBuf->matchIndex < pBuf->endIndex);
  ASSERT(pBuf->endIndex - pBuf->startIndex <= pBuf->size);
  ASSERT(pBuf->entries[(pBuf->matchIndex + pBuf->size) % pBuf->size].pItem);
526 527 528 529 530 531 532 533 534 535
  return 0;
}

int32_t syncLogBufferCommit(SSyncLogBuffer* pBuf, SSyncNode* pNode, int64_t commitIndex) {
  taosThreadMutexLock(&pBuf->mutex);
  syncLogBufferValidate(pBuf);

  SSyncLogStore*  pLogStore = pNode->pLogStore;
  SSyncFSM*       pFsm = pNode->pFsm;
  ESyncState      role = pNode->state;
536
  SyncTerm        currentTerm = raftStoreGetTerm(pNode);
537
  SyncGroupId     vgId = pNode->vgId;
538
  int32_t         ret = -1;
539 540 541 542 543
  int64_t         upperIndex = TMIN(commitIndex, pBuf->matchIndex);
  SSyncRaftEntry* pEntry = NULL;
  bool            inBuf = false;

  if (commitIndex <= pBuf->commitIndex) {
544
    sDebug("vgId:%d, stale commit index. current:%" PRId64 ", notified:%" PRId64 "", vgId, pBuf->commitIndex,
545 546 547 548 549
           commitIndex);
    ret = 0;
    goto _out;
  }

S
Shengliang Guan 已提交
550
  sTrace("vgId:%d, commit. log buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 "), role:%d, term:%" PRId64,
551
         pNode->vgId, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex, role, currentTerm);
552 553 554 555 556 557 558 559 560 561 562

  // execute in fsm
  for (int64_t index = pBuf->commitIndex + 1; index <= upperIndex; index++) {
    // get a log entry
    pEntry = syncLogBufferGetOneEntry(pBuf, pNode, index, &inBuf);
    if (pEntry == NULL) {
      goto _out;
    }

    // execute it
    if (!syncUtilUserCommit(pEntry->originalRpcType)) {
S
Shengliang Guan 已提交
563
      sInfo("vgId:%d, commit sync barrier. index:%" PRId64 ", term:%" PRId64 ", type:%s", vgId, pEntry->index,
564
            pEntry->term, TMSG_INFO(pEntry->originalRpcType));
565
    }
566

567
    if (syncFsmExecute(pNode, pFsm, role, currentTerm, pEntry, 0) != 0) {
568
      sError("vgId:%d, failed to execute sync log entry. index:%" PRId64 ", term:%" PRId64
S
Shengliang Guan 已提交
569
             ", role:%d, current term:%" PRId64,
570
             vgId, pEntry->index, pEntry->term, role, currentTerm);
571 572 573 574
      goto _out;
    }
    pBuf->commitIndex = index;

S
Shengliang Guan 已提交
575
    sTrace("vgId:%d, committed index:%" PRId64 ", term:%" PRId64 ", role:%d, current term:%" PRId64 "", pNode->vgId,
576
           pEntry->index, pEntry->term, role, currentTerm);
577 578 579 580 581 582 583 584

    if (!inBuf) {
      syncEntryDestroy(pEntry);
      pEntry = NULL;
    }
  }

  // recycle
585
  SyncIndex until = pBuf->commitIndex - TSDB_SYNC_LOG_BUFFER_RETENTION;
586 587
  for (SyncIndex index = pBuf->startIndex; index < until; index++) {
    SSyncRaftEntry* pEntry = pBuf->entries[(index + pBuf->size) % pBuf->size].pItem;
588
    ASSERT(pEntry != NULL);
589 590 591 592 593
    syncEntryDestroy(pEntry);
    memset(&pBuf->entries[(index + pBuf->size) % pBuf->size], 0, sizeof(pBuf->entries[0]));
    pBuf->startIndex = index + 1;
  }

594
  ret = 0;
595 596
_out:
  // mark as restored if needed
597
  if (!pNode->restoreFinish && pBuf->commitIndex >= pNode->commitIndex && pEntry != NULL &&
598
      currentTerm <= pEntry->term) {
599
    pNode->pFsm->FpRestoreFinishCb(pNode->pFsm, pBuf->commitIndex);
600
    pNode->restoreFinish = true;
601 602
    sInfo("vgId:%d, restore finished. term:%" PRId64 ", log buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")",
          pNode->vgId, currentTerm, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
603 604 605 606 607 608 609 610 611 612 613
  }

  if (!inBuf) {
    syncEntryDestroy(pEntry);
    pEntry = NULL;
  }
  syncLogBufferValidate(pBuf);
  taosThreadMutexUnlock(&pBuf->mutex);
  return ret;
}

614
void syncLogReplReset(SSyncLogReplMgr* pMgr) {
615 616
  if (pMgr == NULL) return;

617
  ASSERT(pMgr->startIndex >= 0);
618 619 620 621 622 623 624 625 626 627
  for (SyncIndex index = pMgr->startIndex; index < pMgr->endIndex; index++) {
    memset(&pMgr->states[index % pMgr->size], 0, sizeof(pMgr->states[0]));
  }
  pMgr->startIndex = 0;
  pMgr->matchIndex = 0;
  pMgr->endIndex = 0;
  pMgr->restored = false;
  pMgr->retryBackoff = 0;
}

628
int32_t syncLogReplRetryOnNeed(SSyncLogReplMgr* pMgr, SSyncNode* pNode) {
629 630 631 632
  if (pMgr->endIndex <= pMgr->startIndex) {
    return 0;
  }

633 634
  SRaftId* pDestId = &pNode->replicasId[pMgr->peerId];
  if (pMgr->retryBackoff == SYNC_MAX_RETRY_BACKOFF) {
635
    syncLogReplReset(pMgr);
636
    sWarn("vgId:%d, reset sync log repl since retry backoff exceeding limit. peer:%" PRIx64, pNode->vgId,
637 638 639 640
          pDestId->addr);
    return -1;
  }

S
Shengliang Guan 已提交
641 642
  int32_t  ret = -1;
  bool     retried = false;
643
  int64_t  retryWaitMs = syncLogReplGetRetryBackoffTimeMs(pMgr);
644 645 646 647
  int64_t  nowMs = taosGetMonoTimestampMs();
  int      count = 0;
  int64_t  firstIndex = -1;
  SyncTerm term = -1;
648
  int64_t  batchSize = TMAX(1, pMgr->size >> (4 + pMgr->retryBackoff));
649 650 651

  for (SyncIndex index = pMgr->startIndex; index < pMgr->endIndex; index++) {
    int64_t pos = index % pMgr->size;
652
    ASSERT(!pMgr->states[pos].barrier || (index == pMgr->startIndex || index + 1 == pMgr->endIndex));
653

654 655 656 657
    if (nowMs < pMgr->states[pos].timeMs + retryWaitMs) {
      break;
    }

658
    if (pMgr->states[pos].acked) {
659
      if (pMgr->matchIndex < index && pMgr->states[pos].timeMs + (syncGetRetryMaxWaitMs() << 3) < nowMs) {
660
        syncLogReplReset(pMgr);
661 662
        sWarn("vgId:%d, reset sync log repl since stagnation. index:%" PRId64 ", peer:%" PRIx64, pNode->vgId, index,
              pDestId->addr);
663 664
        goto _out;
      }
665 666 667 668
      continue;
    }

    bool barrier = false;
669
    if (syncLogReplSendTo(pMgr, pNode, index, &term, pDestId, &barrier) < 0) {
S
Shengliang Guan 已提交
670
      sError("vgId:%d, failed to replicate sync log entry since %s. index:%" PRId64 ", dest:%" PRIx64 "", pNode->vgId,
671 672 673
             terrstr(), index, pDestId->addr);
      goto _out;
    }
674
    ASSERT(barrier == pMgr->states[pos].barrier);
675 676 677
    pMgr->states[pos].timeMs = nowMs;
    pMgr->states[pos].term = term;
    pMgr->states[pos].acked = false;
678

679
    retried = true;
680
    if (firstIndex == -1) firstIndex = index;
681 682 683 684

    if (batchSize <= count++) {
      break;
    }
685 686 687 688 689
  }

  ret = 0;
_out:
  if (retried) {
690
    pMgr->retryBackoff = syncLogReplGetNextRetryBackoff(pMgr);
691
    SSyncLogBuffer* pBuf = pNode->pLogBuf;
S
Shengliang Guan 已提交
692 693
    sInfo("vgId:%d, resend %d sync log entries. dest:%" PRIx64 ", indexes:%" PRId64 " ..., terms: ... %" PRId64
          ", retryWaitMs:%" PRId64 ", mgr: [%" PRId64 " %" PRId64 ", %" PRId64 "), buffer: [%" PRId64 " %" PRId64
694
          " %" PRId64 ", %" PRId64 ")",
695
          pNode->vgId, count, pDestId->addr, firstIndex, term, retryWaitMs, pMgr->startIndex, pMgr->matchIndex,
696
          pMgr->endIndex, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
697 698 699 700
  }
  return ret;
}

701
int32_t syncLogReplProcessReplyAsRecovery(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncAppendEntriesReply* pMsg) {
702 703
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
  SRaftId         destId = pMsg->srcId;
704
  ASSERT(pMgr->restored == false);
705 706

  if (pMgr->endIndex == 0) {
707 708
    ASSERT(pMgr->startIndex == 0);
    ASSERT(pMgr->matchIndex == 0);
709 710
    if (pMsg->matchIndex < 0) {
      pMgr->restored = true;
711
      sInfo("vgId:%d, sync log repl restored. peer: dnode:%d (%" PRIx64 "), mgr: rs(%d) [%" PRId64 " %" PRId64
712
            ", %" PRId64 "), buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")",
713
            pNode->vgId, DID(&destId), destId.addr, pMgr->restored, pMgr->startIndex, pMgr->matchIndex, pMgr->endIndex,
714 715 716 717 718
            pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
      return 0;
    }
  } else {
    if (pMsg->lastSendIndex < pMgr->startIndex || pMsg->lastSendIndex >= pMgr->endIndex) {
719
      syncLogReplRetryOnNeed(pMgr, pNode);
720 721 722 723 724
      return 0;
    }

    pMgr->states[pMsg->lastSendIndex % pMgr->size].acked = true;

725
    if (pMsg->success && pMsg->matchIndex == pMsg->lastSendIndex) {
726
      pMgr->matchIndex = pMsg->matchIndex;
727
      pMgr->restored = true;
728
      sInfo("vgId:%d, sync log repl restored. peer: dnode:%d (%" PRIx64 "), mgr: rs(%d) [%" PRId64 " %" PRId64
729
            ", %" PRId64 "), buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")",
730
            pNode->vgId, DID(&destId), destId.addr, pMgr->restored, pMgr->startIndex, pMgr->matchIndex, pMgr->endIndex,
731 732 733 734
            pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
      return 0;
    }

735
    if (pMsg->success == false && pMsg->matchIndex >= pMsg->lastSendIndex) {
S
Shengliang Guan 已提交
736
      sWarn("vgId:%d, failed to rollback match index. peer: dnode:%d, match index:%" PRId64 ", last sent:%" PRId64,
737
            pNode->vgId, DID(&destId), pMsg->matchIndex, pMsg->lastSendIndex);
738
      if (syncNodeStartSnapshot(pNode, &destId) < 0) {
739
        sError("vgId:%d, failed to start snapshot for peer dnode:%d", pNode->vgId, DID(&destId));
740 741
        return -1;
      }
742
      sInfo("vgId:%d, snapshot replication to peer dnode:%d", pNode->vgId, DID(&destId));
743 744
      return 0;
    }
745 746
  }

747 748
  // check last match term
  SyncTerm  term = -1;
749
  SyncIndex firstVer = pNode->pLogStore->syncLogBeginIndex(pNode->pLogStore);
750 751 752
  SyncIndex index = TMIN(pMsg->matchIndex, pNode->pLogBuf->matchIndex);

  if (pMsg->matchIndex < pNode->pLogBuf->matchIndex) {
753
    term = syncLogReplGetPrevLogTerm(pMgr, pNode, index + 1);
754 755
    if ((index + 1 < firstVer) || (term < 0) ||
        (term != pMsg->lastMatchTerm && (index + 1 == firstVer || index == firstVer))) {
756
      ASSERT(term >= 0 || terrno == TSDB_CODE_WAL_LOG_NOT_EXIST);
757
      if (syncNodeStartSnapshot(pNode, &destId) < 0) {
S
Shengliang Guan 已提交
758
        sError("vgId:%d, failed to start snapshot for peer dnode:%d", pNode->vgId, DID(&destId));
759
        return -1;
760
      }
S
Shengliang Guan 已提交
761
      sInfo("vgId:%d, snapshot replication to peer dnode:%d", pNode->vgId, DID(&destId));
762 763 764
      return 0;
    }

765
    ASSERT(index + 1 >= firstVer);
766 767 768

    if (term == pMsg->lastMatchTerm) {
      index = index + 1;
769
      ASSERT(index <= pNode->pLogBuf->matchIndex);
770
    } else {
771
      ASSERT(index > firstVer);
772 773 774
    }
  }

775
  // attempt to replicate the raft log at index
776
  (void)syncLogReplReset(pMgr);
777
  return syncLogReplProbe(pMgr, pNode, index);
778 779
}

780
int32_t syncLogReplProcessHeartbeatReply(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncHeartbeatReply* pMsg) {
781 782 783
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
  taosThreadMutexLock(&pBuf->mutex);
  if (pMsg->startTime != 0 && pMsg->startTime != pMgr->peerStartTime) {
784
    sInfo("vgId:%d, reset sync log repl in heartbeat. peer:%" PRIx64 ", start time:%" PRId64 ", old:%" PRId64 "",
785
          pNode->vgId, pMsg->srcId.addr, pMsg->startTime, pMgr->peerStartTime);
786
    syncLogReplReset(pMgr);
787 788 789 790 791 792
    pMgr->peerStartTime = pMsg->startTime;
  }
  taosThreadMutexUnlock(&pBuf->mutex);
  return 0;
}

793
int32_t syncLogReplProcessReply(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncAppendEntriesReply* pMsg) {
794 795 796
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
  taosThreadMutexLock(&pBuf->mutex);
  if (pMsg->startTime != pMgr->peerStartTime) {
797
    sInfo("vgId:%d, reset sync log repl in appendlog reply. peer:%" PRIx64 ", start time:%" PRId64 ", old:%" PRId64,
798
          pNode->vgId, pMsg->srcId.addr, pMsg->startTime, pMgr->peerStartTime);
799
    syncLogReplReset(pMgr);
800 801 802 803
    pMgr->peerStartTime = pMsg->startTime;
  }

  if (pMgr->restored) {
804
    (void)syncLogReplProcessReplyAsNormal(pMgr, pNode, pMsg);
805
  } else {
806
    (void)syncLogReplProcessReplyAsRecovery(pMgr, pNode, pMsg);
807 808 809 810 811
  }
  taosThreadMutexUnlock(&pBuf->mutex);
  return 0;
}

812
int32_t syncLogReplDoOnce(SSyncLogReplMgr* pMgr, SSyncNode* pNode) {
813
  if (pMgr->restored) {
814
    (void)syncLogReplAttempt(pMgr, pNode);
815
  } else {
816
    (void)syncLogReplProbe(pMgr, pNode, pNode->pLogBuf->matchIndex);
817 818 819 820
  }
  return 0;
}

821
int32_t syncLogReplProbe(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncIndex index) {
822 823
  ASSERT(!pMgr->restored);
  ASSERT(pMgr->startIndex >= 0);
824
  int64_t retryMaxWaitMs = syncGetRetryMaxWaitMs();
825 826 827 828 829 830
  int64_t nowMs = taosGetMonoTimestampMs();

  if (pMgr->endIndex > pMgr->startIndex &&
      nowMs < pMgr->states[pMgr->startIndex % pMgr->size].timeMs + retryMaxWaitMs) {
    return 0;
  }
831
  (void)syncLogReplReset(pMgr);
832

S
Shengliang Guan 已提交
833 834 835
  SRaftId* pDestId = &pNode->replicasId[pMgr->peerId];
  bool     barrier = false;
  SyncTerm term = -1;
836
  if (syncLogReplSendTo(pMgr, pNode, index, &term, pDestId, &barrier) < 0) {
S
Shengliang Guan 已提交
837
    sError("vgId:%d, failed to replicate log entry since %s. index:%" PRId64 ", dest: 0x%016" PRIx64 "", pNode->vgId,
838 839 840 841
           terrstr(), index, pDestId->addr);
    return -1;
  }

842
  ASSERT(index >= 0);
843 844 845 846 847 848 849 850
  pMgr->states[index % pMgr->size].barrier = barrier;
  pMgr->states[index % pMgr->size].timeMs = nowMs;
  pMgr->states[index % pMgr->size].term = term;
  pMgr->states[index % pMgr->size].acked = false;

  pMgr->startIndex = index;
  pMgr->endIndex = index + 1;

851
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
S
Shengliang Guan 已提交
852
  sTrace("vgId:%d, probe peer:%" PRIx64 " with msg of index:%" PRId64 " term:%" PRId64 ". mgr (rs:%d): [%" PRId64
853 854 855
        " %" PRId64 ", %" PRId64 "), buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")",
        pNode->vgId, pDestId->addr, index, term, pMgr->restored, pMgr->startIndex, pMgr->matchIndex, pMgr->endIndex,
        pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
856 857 858
  return 0;
}

859
int32_t syncLogReplAttempt(SSyncLogReplMgr* pMgr, SSyncNode* pNode) {
860
  ASSERT(pMgr->restored);
861

S
Shengliang Guan 已提交
862 863 864 865 866
  SRaftId*  pDestId = &pNode->replicasId[pMgr->peerId];
  int32_t   batchSize = TMAX(1, pMgr->size >> (4 + pMgr->retryBackoff));
  int32_t   count = 0;
  int64_t   nowMs = taosGetMonoTimestampMs();
  int64_t   limit = pMgr->size >> 1;
867 868
  SyncTerm  term = -1;
  SyncIndex firstIndex = -1;
869 870

  for (SyncIndex index = pMgr->endIndex; index <= pNode->pLogBuf->matchIndex; index++) {
871
    if (batchSize < count || limit <= index - pMgr->startIndex) {
872 873 874 875 876 877 878 879 880
      break;
    }
    if (pMgr->startIndex + 1 < index && pMgr->states[(index - 1) % pMgr->size].barrier) {
      break;
    }
    int64_t  pos = index % pMgr->size;
    SRaftId* pDestId = &pNode->replicasId[pMgr->peerId];
    bool     barrier = false;
    SyncTerm term = -1;
881
    if (syncLogReplSendTo(pMgr, pNode, index, &term, pDestId, &barrier) < 0) {
S
Shengliang Guan 已提交
882
      sError("vgId:%d, failed to replicate log entry since %s. index:%" PRId64 ", dest: 0x%016" PRIx64 "", pNode->vgId,
883 884 885 886 887 888 889 890
             terrstr(), index, pDestId->addr);
      return -1;
    }
    pMgr->states[pos].barrier = barrier;
    pMgr->states[pos].timeMs = nowMs;
    pMgr->states[pos].term = term;
    pMgr->states[pos].acked = false;

891 892 893
    if (firstIndex == -1) firstIndex = index;
    count++;

894 895
    pMgr->endIndex = index + 1;
    if (barrier) {
S
Shengliang Guan 已提交
896
      sInfo("vgId:%d, replicated sync barrier to dest:%" PRIx64 ". index:%" PRId64 ", term:%" PRId64
897 898 899
            ", repl mgr: rs(%d) [%" PRId64 " %" PRId64 ", %" PRId64 ")",
            pNode->vgId, pDestId->addr, index, term, pMgr->restored, pMgr->startIndex, pMgr->matchIndex,
            pMgr->endIndex);
900 901 902 903
      break;
    }
  }

904
  syncLogReplRetryOnNeed(pMgr, pNode);
905

906
  SSyncLogBuffer* pBuf = pNode->pLogBuf;
S
Shengliang Guan 已提交
907
  sTrace("vgId:%d, replicated %d msgs to peer:%" PRIx64 ". indexes:%" PRId64 "..., terms: ...%" PRId64
908 909 910 911
         ", mgr: (rs:%d) [%" PRId64 " %" PRId64 ", %" PRId64 "), buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64
         ")",
         pNode->vgId, count, pDestId->addr, firstIndex, term, pMgr->restored, pMgr->startIndex, pMgr->matchIndex,
         pMgr->endIndex, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);
912 913 914
  return 0;
}

915
int32_t syncLogReplProcessReplyAsNormal(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncAppendEntriesReply* pMsg) {
916
  ASSERT(pMgr->restored == true);
917
  if (pMgr->startIndex <= pMsg->lastSendIndex && pMsg->lastSendIndex < pMgr->endIndex) {
S
Shengliang Guan 已提交
918
    if (pMgr->startIndex < pMgr->matchIndex && pMgr->retryBackoff > 0) {
919 920 921 922
      int64_t firstMs = pMgr->states[pMgr->startIndex % pMgr->size].timeMs;
      int64_t lastMs = pMgr->states[(pMgr->endIndex - 1) % pMgr->size].timeMs;
      int64_t diffMs = lastMs - firstMs;
      if (diffMs > 0 && diffMs < ((int64_t)SYNC_LOG_REPL_RETRY_WAIT_MS << (pMgr->retryBackoff - 1))) {
S
Shengliang Guan 已提交
923 924
        pMgr->retryBackoff -= 1;
      }
925
    }
926 927 928 929 930 931 932 933
    pMgr->states[pMsg->lastSendIndex % pMgr->size].acked = true;
    pMgr->matchIndex = TMAX(pMgr->matchIndex, pMsg->matchIndex);
    for (SyncIndex index = pMgr->startIndex; index < pMgr->matchIndex; index++) {
      memset(&pMgr->states[index % pMgr->size], 0, sizeof(pMgr->states[0]));
    }
    pMgr->startIndex = pMgr->matchIndex;
  }

934
  return syncLogReplAttempt(pMgr, pNode);
935 936
}

937
SSyncLogReplMgr* syncLogReplCreate() {
938 939 940 941 942 943 944 945
  SSyncLogReplMgr* pMgr = taosMemoryCalloc(1, sizeof(SSyncLogReplMgr));
  if (pMgr == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  pMgr->size = sizeof(pMgr->states) / sizeof(pMgr->states[0]);

946
  ASSERT(pMgr->size == TSDB_SYNC_LOG_BUFFER_SIZE);
947 948 949 950

  return pMgr;
}

951
void syncLogReplDestroy(SSyncLogReplMgr* pMgr) {
952 953 954 955 956 957 958
  if (pMgr == NULL) {
    return;
  }
  (void)taosMemoryFree(pMgr);
  return;
}

959
int32_t syncNodeLogReplInit(SSyncNode* pNode) {
960
  for (int i = 0; i < TSDB_MAX_REPLICA; i++) {
961
    ASSERT(pNode->logReplMgrs[i] == NULL);
962
    pNode->logReplMgrs[i] = syncLogReplCreate();
963 964 965 966
    if (pNode->logReplMgrs[i] == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return -1;
    }
967 968 969 970 971
    pNode->logReplMgrs[i]->peerId = i;
  }
  return 0;
}

972
void syncNodeLogReplDestroy(SSyncNode* pNode) {
973
  for (int i = 0; i < TSDB_MAX_REPLICA; i++) {
974
    syncLogReplDestroy(pNode->logReplMgrs[i]);
975 976 977 978 979 980 981 982 983 984 985 986 987
    pNode->logReplMgrs[i] = NULL;
  }
}

SSyncLogBuffer* syncLogBufferCreate() {
  SSyncLogBuffer* pBuf = taosMemoryCalloc(1, sizeof(SSyncLogBuffer));
  if (pBuf == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  pBuf->size = sizeof(pBuf->entries) / sizeof(pBuf->entries[0]);

988
  ASSERT(pBuf->size == TSDB_SYNC_LOG_BUFFER_SIZE);
989

990 991 992 993 994 995 996 997 998 999 1000 1001 1002
  if (taosThreadMutexAttrInit(&pBuf->attr) < 0) {
    sError("failed to init log buffer mutexattr due to %s", strerror(errno));
    terrno = TAOS_SYSTEM_ERROR(errno);
    goto _err;
  }

  if (taosThreadMutexAttrSetType(&pBuf->attr, PTHREAD_MUTEX_RECURSIVE) < 0) {
    sError("failed to set log buffer mutexattr type due to %s", strerror(errno));
    terrno = TAOS_SYSTEM_ERROR(errno);
    goto _err;
  }

  if (taosThreadMutexInit(&pBuf->mutex, &pBuf->attr) < 0) {
1003 1004 1005 1006
    sError("failed to init log buffer mutex due to %s", strerror(errno));
    terrno = TAOS_SYSTEM_ERROR(errno);
    goto _err;
  }
1007

1008 1009 1010 1011 1012 1013 1014
  return pBuf;

_err:
  taosMemoryFree(pBuf);
  return NULL;
}

1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
void syncLogBufferClear(SSyncLogBuffer* pBuf) {
  taosThreadMutexLock(&pBuf->mutex);
  for (SyncIndex index = pBuf->startIndex; index < pBuf->endIndex; index++) {
    SSyncRaftEntry* pEntry = pBuf->entries[(index + pBuf->size) % pBuf->size].pItem;
    if (pEntry == NULL) continue;
    syncEntryDestroy(pEntry);
    pEntry = NULL;
    memset(&pBuf->entries[(index + pBuf->size) % pBuf->size], 0, sizeof(pBuf->entries[0]));
  }
  pBuf->startIndex = pBuf->commitIndex = pBuf->matchIndex = pBuf->endIndex = 0;
  taosThreadMutexUnlock(&pBuf->mutex);
}

1028 1029 1030 1031
void syncLogBufferDestroy(SSyncLogBuffer* pBuf) {
  if (pBuf == NULL) {
    return;
  }
1032
  syncLogBufferClear(pBuf);
1033
  (void)taosThreadMutexDestroy(&pBuf->mutex);
1034
  (void)taosThreadMutexAttrDestroy(&pBuf->attr);
1035 1036 1037 1038
  (void)taosMemoryFree(pBuf);
  return;
}

1039
int32_t syncLogBufferRollback(SSyncLogBuffer* pBuf, SSyncNode* pNode, SyncIndex toIndex) {
1040
  ASSERT(pBuf->commitIndex < toIndex && toIndex <= pBuf->endIndex);
1041

1042 1043 1044 1045
  if (toIndex == pBuf->endIndex) {
    return 0;
  }

S
Shengliang Guan 已提交
1046
  sInfo("vgId:%d, rollback sync log buffer. toindex:%" PRId64 ", buffer: [%" PRId64 " %" PRId64 " %" PRId64
1047 1048 1049
        ", %" PRId64 ")",
        pNode->vgId, toIndex, pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);

1050
  // trunc buffer
1051 1052 1053 1054
  SyncIndex index = pBuf->endIndex - 1;
  while (index >= toIndex) {
    SSyncRaftEntry* pEntry = pBuf->entries[index % pBuf->size].pItem;
    if (pEntry != NULL) {
1055
      (void)syncEntryDestroy(pEntry);
1056 1057 1058 1059 1060 1061 1062
      pEntry = NULL;
      memset(&pBuf->entries[index % pBuf->size], 0, sizeof(pBuf->entries[0]));
    }
    index--;
  }
  pBuf->endIndex = toIndex;
  pBuf->matchIndex = TMIN(pBuf->matchIndex, index);
1063
  ASSERT(index + 1 == toIndex);
1064 1065 1066 1067 1068 1069 1070 1071

  // trunc wal
  SyncIndex lastVer = pNode->pLogStore->syncLogLastIndex(pNode->pLogStore);
  if (lastVer >= toIndex && pNode->pLogStore->syncLogTruncate(pNode->pLogStore, toIndex) < 0) {
    sError("vgId:%d, failed to truncate log store since %s. from index:%" PRId64 "", pNode->vgId, terrstr(), toIndex);
    return -1;
  }
  lastVer = pNode->pLogStore->syncLogLastIndex(pNode->pLogStore);
1072
  ASSERT(toIndex == lastVer + 1);
1073

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
  // refill buffer on need
  if (toIndex <= pBuf->startIndex) {
    int32_t ret = syncLogBufferInitWithoutLock(pBuf, pNode);
    if (ret < 0) {
      sError("vgId:%d, failed to refill sync log buffer since %s", pNode->vgId, terrstr());
      return -1;
    }
  }

  ASSERT(pBuf->endIndex == toIndex);
1084
  syncLogBufferValidate(pBuf);
1085 1086 1087 1088 1089
  return 0;
}

int32_t syncLogBufferReset(SSyncLogBuffer* pBuf, SSyncNode* pNode) {
  taosThreadMutexLock(&pBuf->mutex);
1090
  syncLogBufferValidate(pBuf);
1091
  SyncIndex lastVer = pNode->pLogStore->syncLogLastIndex(pNode->pLogStore);
1092
  ASSERT(lastVer == pBuf->matchIndex);
1093 1094
  SyncIndex index = pBuf->endIndex - 1;

1095
  (void)syncLogBufferRollback(pBuf, pNode, pBuf->matchIndex + 1);
1096

1097
  sInfo("vgId:%d, reset sync log buffer. buffer: [%" PRId64 " %" PRId64 " %" PRId64 ", %" PRId64 ")", pNode->vgId,
1098 1099 1100 1101 1102 1103 1104
        pBuf->startIndex, pBuf->commitIndex, pBuf->matchIndex, pBuf->endIndex);

  pBuf->endIndex = pBuf->matchIndex + 1;

  // reset repl mgr
  for (int i = 0; i < pNode->replicaNum; i++) {
    SSyncLogReplMgr* pMgr = pNode->logReplMgrs[i];
1105
    syncLogReplReset(pMgr);
1106
  }
1107
  syncLogBufferValidate(pBuf);
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
  taosThreadMutexUnlock(&pBuf->mutex);
  return 0;
}

SSyncRaftEntry* syncLogBufferGetOneEntry(SSyncLogBuffer* pBuf, SSyncNode* pNode, SyncIndex index, bool* pInBuf) {
  SSyncRaftEntry* pEntry = NULL;
  if (index >= pBuf->endIndex) {
    return NULL;
  }
  if (index > pBuf->startIndex) {  // startIndex might be dummy
    *pInBuf = true;
    pEntry = pBuf->entries[index % pBuf->size].pItem;
  } else {
    *pInBuf = false;
    if (pNode->pLogStore->syncLogGetEntry(pNode->pLogStore, index, &pEntry) < 0) {
      sError("vgId:%d, failed to get log entry since %s. index:%" PRId64 "", pNode->vgId, terrstr(), index);
    }
  }
  return pEntry;
}

1129 1130
int32_t syncLogReplSendTo(SSyncLogReplMgr* pMgr, SSyncNode* pNode, SyncIndex index, SyncTerm* pTerm, SRaftId* pDestId,
                          bool* pBarrier) {
1131 1132 1133 1134 1135 1136 1137 1138
  SSyncRaftEntry* pEntry = NULL;
  SRpcMsg         msgOut = {0};
  bool            inBuf = false;
  SyncTerm        prevLogTerm = -1;
  SSyncLogBuffer* pBuf = pNode->pLogBuf;

  pEntry = syncLogBufferGetOneEntry(pBuf, pNode, index, &inBuf);
  if (pEntry == NULL) {
S
Shengliang Guan 已提交
1139
    sError("vgId:%d, failed to get raft entry for index:%" PRId64 "", pNode->vgId, index);
1140 1141 1142
    if (terrno == TSDB_CODE_WAL_LOG_NOT_EXIST) {
      SSyncLogReplMgr* pMgr = syncNodeGetLogReplMgr(pNode, pDestId);
      if (pMgr) {
1143 1144
        sInfo("vgId:%d, reset sync log repl of peer:%" PRIx64 " since %s. index:%" PRId64, pNode->vgId, pDestId->addr,
              terrstr(), index);
1145
        (void)syncLogReplReset(pMgr);
1146 1147
      }
    }
1148 1149
    goto _err;
  }
1150
  *pBarrier = syncLogReplBarrier(pEntry);
1151

1152
  prevLogTerm = syncLogReplGetPrevLogTerm(pMgr, pNode, index);
1153
  if (prevLogTerm < 0) {
S
Shengliang Guan 已提交
1154
    sError("vgId:%d, failed to get prev log term since %s. index:%" PRId64 "", pNode->vgId, terrstr(), index);
1155 1156 1157 1158
    goto _err;
  }
  if (pTerm) *pTerm = pEntry->term;

1159
  int32_t code = syncBuildAppendEntriesFromRaftEntry(pNode, pEntry, prevLogTerm, &msgOut);
1160 1161 1162 1163 1164 1165 1166
  if (code < 0) {
    sError("vgId:%d, failed to get append entries for index:%" PRId64 "", pNode->vgId, index);
    goto _err;
  }

  (void)syncNodeSendAppendEntries(pNode, pDestId, &msgOut);

S
Shengliang Guan 已提交
1167
  sTrace("vgId:%d, replicate one msg index:%" PRId64 " term:%" PRId64 " prevterm:%" PRId64 " to dest: 0x%016" PRIx64,
1168
         pNode->vgId, pEntry->index, pEntry->term, prevLogTerm, pDestId->addr);
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184

  if (!inBuf) {
    syncEntryDestroy(pEntry);
    pEntry = NULL;
  }
  return 0;

_err:
  rpcFreeCont(msgOut.pCont);
  msgOut.pCont = NULL;
  if (!inBuf) {
    syncEntryDestroy(pEntry);
    pEntry = NULL;
  }
  return -1;
}