smaRollup.c 48.6 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/>.
 */

#include "sma.h"

C
Cary Xu 已提交
18 19
#define RSMA_QTASKINFO_BUFSIZE  32768
#define RSMA_QTASKINFO_HEAD_LEN (sizeof(int32_t) + sizeof(int8_t) + sizeof(int64_t))  // len + type + suid
C
Cary Xu 已提交
20

21
SSmaMgmt smaMgmt = {
C
Cary Xu 已提交
22 23
    .inited = 0,
    .rsetId = -1,
24 25
};

C
Cary Xu 已提交
26
#define TD_QTASKINFO_FNAME_PREFIX "qtaskinfo.ver"
C
Cary Xu 已提交
27
#define TD_RSMAINFO_DEL_FILE      "rsmainfo.del"
28
typedef struct SRSmaQTaskInfoItem SRSmaQTaskInfoItem;
C
Cary Xu 已提交
29
typedef struct SRSmaQTaskInfoIter SRSmaQTaskInfoIter;
30

31 32 33
static int32_t    tdUidStorePut(STbUidStore *pStore, tb_uid_t suid, tb_uid_t *uid);
static int32_t    tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids);
static int32_t    tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
34
                                          int8_t idx);
C
Cary Xu 已提交
35 36 37 38
static int32_t    tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfo *pInfo, tb_uid_t suid,
                                    int8_t level);
static SRSmaInfo *tdAcquireRSmaInfoBySuid(SSma *pSma, int64_t suid);
static void       tdReleaseRSmaInfo(SSma *pSma, SRSmaInfo *pInfo);
C
Cary Xu 已提交
39 40 41 42 43 44 45 46 47 48 49
static int32_t    tdRSmaFetchAndSubmitResult(SSma *pSma, qTaskInfo_t taskInfo, SRSmaInfoItem *pItem, STSchema *pTSchema,
                                             int64_t suid, int8_t blkType);
static void       tdRSmaFetchTrigger(void *param, void *tmrId);
static int32_t    tdRSmaFetchSend(SSma *pSma, SRSmaInfo *pInfo, int8_t level);
static int32_t    tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile);
static int32_t    tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish);
static int32_t    tdRSmaQTaskInfoRestore(SSma *pSma, int8_t type, SRSmaQTaskInfoIter *pIter);
static int32_t    tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *infoItem);
static int32_t    tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables);
static int32_t    tdRSmaRestoreQTaskInfoReload(SSma *pSma, int8_t type, int64_t qTaskFileVer);
static int32_t    tdRSmaRestoreTSDataReload(SSma *pSma);
C
Cary Xu 已提交
50

51 52
static SRSmaInfo *tdGetRSmaInfoByItem(SRSmaInfoItem *pItem) {
  // adapt accordingly if definition of SRSmaInfo update
53 54
  SRSmaInfo *pResult = NULL;
  ASSERT(pItem->level == TSDB_RETENTION_L1 || pItem->level == TSDB_RETENTION_L2);
C
Cary Xu 已提交
55
  pResult = (SRSmaInfo *)POINTER_SHIFT(pItem, -(sizeof(SRSmaInfoItem) * (pItem->level - 1) + RSMA_INFO_HEAD_LEN));
56 57
  ASSERT(pResult->pTSchema->numOfCols > 1);
  return pResult;
58
}
59

60 61 62 63 64 65 66
struct SRSmaQTaskInfoItem {
  int32_t len;
  int8_t  type;
  int64_t suid;
  void   *qTaskInfo;
};

C
Cary Xu 已提交
67
struct SRSmaQTaskInfoIter {
68 69 70 71 72
  STFile *pTFile;
  int64_t offset;
  int64_t fsize;
  int32_t nBytes;
  int32_t nAlloc;
C
Cary Xu 已提交
73
  char   *pBuf;
74
  // ------------
C
Cary Xu 已提交
75
  char   *qBuf;  // for iterator
76 77 78
  int32_t nBufPos;
};

C
Cary Xu 已提交
79
void tdRSmaQTaskInfoGetFileName(int32_t vgId, int64_t version, char *outputName) {
C
Cary Xu 已提交
80
  tdGetVndFileName(vgId, NULL, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
81 82
}

83
void tdRSmaQTaskInfoGetFullName(int32_t vgId, int64_t version, const char *path, char *outputName) {
C
Cary Xu 已提交
84 85 86
  tdGetVndFileName(vgId, path, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
}

C
Cary Xu 已提交
87
static FORCE_INLINE int32_t tdRSmaQTaskInfoContLen(int32_t lenWithHead) {
C
Cary Xu 已提交
88
  return lenWithHead - RSMA_QTASKINFO_HEAD_LEN;
C
Cary Xu 已提交
89 90
}

C
Cary Xu 已提交
91
static FORCE_INLINE void tdRSmaQTaskInfoIterDestroy(SRSmaQTaskInfoIter *pIter) { taosMemoryFreeClear(pIter->pBuf); }
C
Cary Xu 已提交
92

C
Cary Xu 已提交
93
void tdFreeQTaskInfo(qTaskInfo_t *taskHandle, int32_t vgId, int32_t level) {
94
  // Note: free/kill may in RC
C
Cary Xu 已提交
95
  if (!taskHandle || !(*taskHandle)) return;
96 97
  qTaskInfo_t otaskHandle = atomic_load_ptr(taskHandle);
  if (otaskHandle && atomic_val_compare_exchange_ptr(taskHandle, otaskHandle, NULL)) {
C
Cary Xu 已提交
98
    smaDebug("vgId:%d, free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
99
    qDestroyTask(otaskHandle);
C
Cary Xu 已提交
100
  } else {
C
Cary Xu 已提交
101
    smaDebug("vgId:%d, not free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
102
  }
C
Cary Xu 已提交
103
  // TODO: clear files related to qTaskInfo?
104 105
}

C
Cary Xu 已提交
106 107 108 109 110 111 112 113 114
/**
 * @brief general function to free rsmaInfo
 *
 * @param pSma
 * @param pInfo
 * @param isDeepFree Only stop tmrId and free pTSchema for deep free
 * @return void*
 */
void *tdFreeRSmaInfo(SSma *pSma, SRSmaInfo *pInfo, bool isDeepFree) {
115
  if (pInfo) {
C
Cary Xu 已提交
116
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
117
      SRSmaInfoItem *pItem = &pInfo->items[i];
C
Cary Xu 已提交
118

C
Cary Xu 已提交
119 120 121 122 123 124 125 126
      if (isDeepFree && pItem->tmrId) {
        smaDebug("vgId:%d, stop fetch timer %p for table %" PRIi64 " level %d", SMA_VID(pSma), pInfo->suid,
                 pItem->tmrId, i + 1);
        taosTmrStopA(&pItem->tmrId);
      }

      if (isDeepFree && pInfo->taskInfo[i]) {
        tdFreeQTaskInfo(&pInfo->taskInfo[i], SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
127
      } else {
C
Cary Xu 已提交
128
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty taskInfo", SMA_VID(pSma),
129
                 pInfo->suid, i + 1);
130
      }
C
Cary Xu 已提交
131 132 133 134 135 136 137

      if (pInfo->iTaskInfo[i]) {
        tdFreeQTaskInfo(&pInfo->iTaskInfo[i], SMA_VID(pSma), i + 1);
      } else {
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty iTaskInfo",
                 SMA_VID(pSma), pInfo->suid, i + 1);
      }
138
    }
C
Cary Xu 已提交
139
    if (isDeepFree) {
C
Cary Xu 已提交
140
      taosMemoryFreeClear(pInfo->pTSchema);
C
Cary Xu 已提交
141
    }
142
    taosMemoryFree(pInfo);
143
  }
144

145 146 147 148 149 150 151 152 153 154 155 156 157
  return NULL;
}

static FORCE_INLINE int32_t tdUidStoreInit(STbUidStore **pStore) {
  ASSERT(*pStore == NULL);
  *pStore = taosMemoryCalloc(1, sizeof(STbUidStore));
  if (*pStore == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
158
static int32_t tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids) {
159 160 161 162
  SRSmaInfo *pRSmaInfo = NULL;

  if (!suid || !tbUids) {
    terrno = TSDB_CODE_INVALID_PTR;
C
Cary Xu 已提交
163
    smaError("vgId:%d, failed to get rsma info for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr());
164 165 166
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
167 168 169 170 171
  if (!taosArrayGetSize(tbUids)) {
    smaDebug("vgId:%d, no need to update tbUidList for suid:%" PRIi64 " since Empty tbUids", SMA_VID(pSma), *suid);
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
172
  pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, *suid);
173 174

  if (!pRSmaInfo) {
S
Shengliang Guan 已提交
175
    smaError("vgId:%d, failed to get rsma info for uid:%" PRIi64, SMA_VID(pSma), *suid);
C
Cary Xu 已提交
176
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
177 178 179
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
180 181 182
  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pRSmaInfo->taskInfo[i]) {
      if ((qUpdateQualifiedTableId(pRSmaInfo->taskInfo[i], tbUids, true) < 0)) {
C
Cary Xu 已提交
183
        tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
184 185 186 187 188 189 190
        smaError("vgId:%d, update tbUidList failed for uid:%" PRIi64 " level %d since %s", SMA_VID(pSma), *suid, i,
                 terrstr());
        return TSDB_CODE_FAILED;
      } else {
        smaDebug("vgId:%d, update tbUidList succeed for qTaskInfo:%p with suid:%" PRIi64 " uid:%" PRIi64 " level %d",
                 SMA_VID(pSma), pRSmaInfo->taskInfo[0], *suid, *(int64_t *)taosArrayGet(tbUids, 0), i);
      }
C
Cary Xu 已提交
191
    }
192 193
  }

C
Cary Xu 已提交
194
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  return TSDB_CODE_SUCCESS;
}

int32_t tdUpdateTbUidList(SSma *pSma, STbUidStore *pStore) {
  if (!pStore || (taosArrayGetSize(pStore->tbUids) == 0)) {
    return TSDB_CODE_SUCCESS;
  }

  if (tdUpdateTbUidListImpl(pSma, &pStore->suid, pStore->tbUids) != TSDB_CODE_SUCCESS) {
    return TSDB_CODE_FAILED;
  }

  void *pIter = taosHashIterate(pStore->uidHash, NULL);
  while (pIter) {
    tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
    SArray   *pTbUids = *(SArray **)pIter;

    if (tdUpdateTbUidListImpl(pSma, pTbSuid, pTbUids) != TSDB_CODE_SUCCESS) {
      taosHashCancelIterate(pStore->uidHash, pIter);
      return TSDB_CODE_FAILED;
    }

    pIter = taosHashIterate(pStore->uidHash, pIter);
  }
  return TSDB_CODE_SUCCESS;
}

/**
 * @brief fetch suid/uids when create child tables of rollup SMA
 *
 * @param pTsdb
 * @param ppStore
 * @param suid
 * @param uid
 * @return int32_t
 */
int32_t tdFetchTbUidList(SSma *pSma, STbUidStore **ppStore, tb_uid_t suid, tb_uid_t uid) {
  SSmaEnv *pEnv = SMA_RSMA_ENV(pSma);

  // only applicable to rollup SMA ctables
  if (!pEnv) {
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
239 240 241
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  if (!pStat || !(infoHash = RSMA_INFO_HASH(pStat))) {
C
Cary Xu 已提交
242
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
243 244 245 246 247 248 249 250 251 252 253
    return TSDB_CODE_FAILED;
  }

  // info cached when create rsma stable and return directly for non-rsma ctables
  if (!taosHashGet(infoHash, &suid, sizeof(tb_uid_t))) {
    return TSDB_CODE_SUCCESS;
  }

  ASSERT(ppStore != NULL);

  if (!(*ppStore)) {
254
    if (tdUidStoreInit(ppStore) < 0) {
255 256 257 258
      return TSDB_CODE_FAILED;
    }
  }

259
  if (tdUidStorePut(*ppStore, suid, &uid) < 0) {
260 261 262 263 264 265 266
    *ppStore = tdUidStoreFree(*ppStore);
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

267
static int32_t tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
268
                                       int8_t idx) {
C
Cary Xu 已提交
269 270 271
  if ((param->qmsgLen > 0) && param->qmsg[idx]) {
    SRetention *pRetention = SMA_RETENTION(pSma);
    STsdbCfg   *pTsdbCfg = SMA_TSDB_CFG(pSma);
C
Cary Xu 已提交
272
    SVnode     *pVnode = pSma->pVnode;
C
Cary Xu 已提交
273
    SReadHandle handle = {
C
Cary Xu 已提交
274 275
        .meta = pVnode->pMeta,
        .vnode = pVnode,
C
Cary Xu 已提交
276 277
        .initTqReader = 1,
    };
C
Cary Xu 已提交
278

C
Cary Xu 已提交
279 280
    pRSmaInfo->taskInfo[idx] = qCreateStreamExecTaskInfo(param->qmsg[idx], &handle);
    if (!pRSmaInfo->taskInfo[idx]) {
C
Cary Xu 已提交
281
      terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
C
Cary Xu 已提交
282
      return TSDB_CODE_FAILED;
C
Cary Xu 已提交
283
    }
C
Cary Xu 已提交
284
    SRSmaInfoItem *pItem = &(pRSmaInfo->items[idx]);
C
Cary Xu 已提交
285
    pItem->triggerStat = TASK_TRIGGER_STAT_INACTIVE;
C
Cary Xu 已提交
286 287 288
    if (param->maxdelay[idx] < TSDB_MIN_ROLLUP_MAX_DELAY) {
      int64_t msInterval =
          convertTimeFromPrecisionToUnit(pRetention[idx + 1].freq, pTsdbCfg->precision, TIME_UNIT_MILLISECOND);
C
Cary Xu 已提交
289
      pItem->maxDelay = (int32_t)msInterval;
C
Cary Xu 已提交
290
    } else {
C
Cary Xu 已提交
291
      pItem->maxDelay = (int32_t)param->maxdelay[idx];
C
Cary Xu 已提交
292
    }
C
Cary Xu 已提交
293 294
    if (pItem->maxDelay > TSDB_MAX_ROLLUP_MAX_DELAY) {
      pItem->maxDelay = TSDB_MAX_ROLLUP_MAX_DELAY;
C
Cary Xu 已提交
295
    }
C
Cary Xu 已提交
296

297
    pItem->level = idx == 0 ? TSDB_RETENTION_L1 : TSDB_RETENTION_L2;
C
Cary Xu 已提交
298
    taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
299
    smaInfo("vgId:%d, table:%" PRIi64 " level:%" PRIi8 " maxdelay:%" PRIi64 " watermark:%" PRIi64
300
            ", finally maxdelay:%" PRIi32,
C
Cary Xu 已提交
301
            TD_VID(pVnode), pRSmaInfo->suid, idx + 1, param->maxdelay[idx], param->watermark[idx], pItem->maxDelay);
C
Cary Xu 已提交
302 303 304 305
  }
  return TSDB_CODE_SUCCESS;
}

306
/**
307
 * @brief for rsam create or restore
308
 *
309 310 311 312
 * @param pSma
 * @param param
 * @param suid
 * @param tbName
313 314
 * @return int32_t
 */
315
int32_t tdProcessRSmaCreateImpl(SSma *pSma, SRSmaParam *param, int64_t suid, const char *tbName) {
316
  if ((param->qmsgLen[0] == 0) && (param->qmsgLen[1] == 0)) {
317
    smaDebug("vgId:%d, no qmsg1/qmsg2 for rollup table %s %" PRIi64, SMA_VID(pSma), tbName, suid);
318 319 320
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
321
  if (tdCheckAndInitSmaEnv(pSma, TSDB_SMA_TYPE_ROLLUP) != TSDB_CODE_SUCCESS) {
322 323 324 325 326
    terrno = TSDB_CODE_TDB_INIT_FAILED;
    return TSDB_CODE_FAILED;
  }

  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
C
Cary Xu 已提交
327
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
328 329
  SRSmaInfo *pRSmaInfo = NULL;

330
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
331
  if (pRSmaInfo) {
332 333 334 335 336 337 338
    // TODO: free original pRSmaInfo if exists abnormally
    tdFreeRSmaInfo(pSma, *(SRSmaInfo **)pRSmaInfo, true);
    if (taosHashRemove(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t)) < 0) {
      terrno = TSDB_CODE_RSMA_REMOVE_EXISTS;
      goto _err;
    }
    smaWarn("vgId:%d, remove the rsma info already exists for table %s, %" PRIi64, SMA_VID(pSma), tbName, suid);
339 340
  }

341
  // from write queue: single thead
342 343 344 345 346 347
  pRSmaInfo = (SRSmaInfo *)taosMemoryCalloc(1, sizeof(SRSmaInfo));
  if (!pRSmaInfo) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }

348
  STSchema *pTSchema = metaGetTbTSchema(SMA_META(pSma), suid, -1);
349 350 351 352 353
  if (!pTSchema) {
    terrno = TSDB_CODE_TDB_IVD_TB_SCHEMA_VERSION;
    goto _err;
  }
  pRSmaInfo->pTSchema = pTSchema;
354
  pRSmaInfo->suid = suid;
C
Cary Xu 已提交
355
  pRSmaInfo->refId = RSMA_REF_ID(pStat);
C
Cary Xu 已提交
356
  T_REF_INIT_VAL(pRSmaInfo, 1);
357

L
Liu Jicong 已提交
358
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 0) < 0) {
C
Cary Xu 已提交
359 360
    goto _err;
  }
C
Cary Xu 已提交
361

L
Liu Jicong 已提交
362
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 1) < 0) {
C
Cary Xu 已提交
363 364
    goto _err;
  }
365

366
  if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pRSmaInfo, sizeof(pRSmaInfo)) < 0) {
367
    goto _err;
368 369
  }

C
Cary Xu 已提交
370
  smaDebug("vgId:%d, register rsma info succeed for table %" PRIi64, SMA_VID(pSma), suid);
C
Cary Xu 已提交
371

372
  return TSDB_CODE_SUCCESS;
373
_err:
C
Cary Xu 已提交
374
  tdFreeRSmaInfo(pSma, pRSmaInfo, true);
375
  return TSDB_CODE_FAILED;
376 377
}

378
/**
C
Cary Xu 已提交
379
 * @brief Check and init qTaskInfo_t, only applicable to stable with SRSmaParam currently
380
 *
381
 * @param pSma
382 383 384
 * @param pReq
 * @return int32_t
 */
385 386
int32_t tdProcessRSmaCreate(SSma *pSma, SVCreateStbReq *pReq) {
  SVnode *pVnode = pSma->pVnode;
387
  if (!pReq->rollup) {
388 389 390 391 392 393 394 395
    smaTrace("vgId:%d, not create rsma for stable %s %" PRIi64 " since no rollup in req", TD_VID(pVnode), pReq->name,
             pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

  if (!VND_IS_RSMA(pVnode)) {
    smaTrace("vgId:%d, not create rsma for stable %s %" PRIi64 " since vnd is not rsma", TD_VID(pVnode), pReq->name,
             pReq->suid);
396 397 398 399 400 401
    return TSDB_CODE_SUCCESS;
  }

  return tdProcessRSmaCreateImpl(pSma, &pReq->rsmaParam, pReq->suid, pReq->name);
}

402 403 404 405 406 407 408
/**
 * @brief drop cache for stb
 *
 * @param pSma
 * @param pReq
 * @return int32_t
 */
L
Liu Jicong 已提交
409
int32_t tdProcessRSmaDrop(SSma *pSma, SVDropStbReq *pReq) {
410 411
  SVnode *pVnode = pSma->pVnode;
  if (!VND_IS_RSMA(pVnode)) {
C
Cary Xu 已提交
412
    smaTrace("vgId:%d, not drop rsma for stable %s %" PRIi64 " since vnd is not rsma", TD_VID(pVnode), pReq->name,
413 414 415 416
             pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
417 418 419 420 421 422 423 424
  SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
  if (!pSmaEnv) {
    return TSDB_CODE_SUCCESS;
  }

  SSmaStat  *pStat = SMA_ENV_STAT(pSmaEnv);
  SRSmaStat *pRSmaStat = SMA_RSMA_STAT(pStat);

C
Cary Xu 已提交
425
  SRSmaInfo *pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pReq->suid);
C
Cary Xu 已提交
426 427 428 429 430 431 432 433 434 435 436

  if (!pRSmaInfo) {
    smaWarn("vgId:%d, drop rsma for stable %s %" PRIi64 " failed no rsma in hash", TD_VID(pVnode), pReq->name,
            pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

  // set del flag for data in mem
  RSMA_INFO_SET_DEL(pRSmaInfo);
  tdUnRefRSmaInfo(pSma, pRSmaInfo);

C
Cary Xu 已提交
437
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
438

C
Cary Xu 已提交
439 440
  // save to file
  // TODO
441 442
  smaDebug("vgId:%d, drop rsma for table %" PRIi64 " succeed", TD_VID(pVnode), pReq->suid);
  return TSDB_CODE_SUCCESS;
L
Liu Jicong 已提交
443
}
444

445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
/**
 * @brief store suid/[uids], prefer to use array and then hash
 *
 * @param pStore
 * @param suid
 * @param uid
 * @return int32_t
 */
static int32_t tdUidStorePut(STbUidStore *pStore, tb_uid_t suid, tb_uid_t *uid) {
  // prefer to store suid/uids in array
  if ((suid == pStore->suid) || (pStore->suid == 0)) {
    if (pStore->suid == 0) {
      pStore->suid = suid;
    }
    if (uid) {
      if (!pStore->tbUids) {
        if (!(pStore->tbUids = taosArrayInit(1, sizeof(tb_uid_t)))) {
          terrno = TSDB_CODE_OUT_OF_MEMORY;
          return TSDB_CODE_FAILED;
        }
      }
      if (!taosArrayPush(pStore->tbUids, uid)) {
        return TSDB_CODE_FAILED;
      }
    }
  } else {
    // store other suid/uids in hash when multiple stable/table included in 1 batch of request
    if (!pStore->uidHash) {
      pStore->uidHash = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_ENTRY_LOCK);
      if (!pStore->uidHash) {
        return TSDB_CODE_FAILED;
      }
    }
    if (uid) {
      SArray *uidArray = taosHashGet(pStore->uidHash, &suid, sizeof(tb_uid_t));
      if (uidArray && ((uidArray = *(SArray **)uidArray))) {
        taosArrayPush(uidArray, uid);
      } else {
        SArray *pUidArray = taosArrayInit(1, sizeof(tb_uid_t));
        if (!pUidArray) {
          terrno = TSDB_CODE_OUT_OF_MEMORY;
          return TSDB_CODE_FAILED;
        }
        if (!taosArrayPush(pUidArray, uid)) {
          terrno = TSDB_CODE_OUT_OF_MEMORY;
          return TSDB_CODE_FAILED;
        }
492
        if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), &pUidArray, sizeof(pUidArray)) < 0) {
493 494 495 496
          return TSDB_CODE_FAILED;
        }
      }
    } else {
497
      if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), NULL, 0) < 0) {
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
        return TSDB_CODE_FAILED;
      }
    }
  }
  return TSDB_CODE_SUCCESS;
}

void tdUidStoreDestory(STbUidStore *pStore) {
  if (pStore) {
    if (pStore->uidHash) {
      if (pStore->tbUids) {
        // When pStore->tbUids not NULL, the pStore->uidHash has k/v; otherwise pStore->uidHash only has keys.
        void *pIter = taosHashIterate(pStore->uidHash, NULL);
        while (pIter) {
          SArray *arr = *(SArray **)pIter;
          taosArrayDestroy(arr);
          pIter = taosHashIterate(pStore->uidHash, pIter);
        }
      }
      taosHashCleanup(pStore->uidHash);
    }
    taosArrayDestroy(pStore->tbUids);
  }
}

void *tdUidStoreFree(STbUidStore *pStore) {
  if (pStore) {
    tdUidStoreDestory(pStore);
    taosMemoryFree(pStore);
  }
  return NULL;
}

static int32_t tdProcessSubmitReq(STsdb *pTsdb, int64_t version, void *pReq) {
  if (!pReq) {
    terrno = TSDB_CODE_INVALID_PTR;
    return TSDB_CODE_FAILED;
  }

  SSubmitReq *pSubmitReq = (SSubmitReq *)pReq;

  if (tsdbInsertData(pTsdb, version, pSubmitReq, NULL) < 0) {
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

static int32_t tdFetchSubmitReqSuids(SSubmitReq *pMsg, STbUidStore *pStore) {
  SSubmitMsgIter msgIter = {0};
  SSubmitBlk    *pBlock = NULL;
  SSubmitBlkIter blkIter = {0};
  STSRow        *row = NULL;

  terrno = TSDB_CODE_SUCCESS;

C
Cary Xu 已提交
554 555 556
  if (tInitSubmitMsgIter(pMsg, &msgIter) < 0) {
    return -1;
  }
557
  while (true) {
C
Cary Xu 已提交
558 559 560
    if (tGetSubmitMsgNext(&msgIter, &pBlock) < 0) {
      return -1;
    }
561 562 563 564 565

    if (!pBlock) break;
    tdUidStorePut(pStore, msgIter.suid, NULL);
  }

C
Cary Xu 已提交
566 567 568
  if (terrno != TSDB_CODE_SUCCESS) {
    return -1;
  }
569 570 571
  return 0;
}

C
Cary Xu 已提交
572
static void tdDestroySDataBlockArray(SArray *pArray) {
C
Cary Xu 已提交
573
  // TODO
C
Cary Xu 已提交
574 575 576 577 578 579 580 581 582
#if 0
  for (int32_t i = 0; i < taosArrayGetSize(pArray); ++i) {
    SSDataBlock *pDataBlock = taosArrayGet(pArray, i);
    blockDestroyInner(pDataBlock);
  }
#endif
  taosArrayDestroy(pArray);
}

C
Cary Xu 已提交
583 584
/**
 * @brief retention of rsma1/rsma2
C
Cary Xu 已提交
585 586 587 588
 *
 * @param pSma
 * @param now
 * @return int32_t
C
Cary Xu 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
 */
int32_t smaDoRetention(SSma *pSma, int64_t now) {
  int32_t code = TSDB_CODE_SUCCESS;
  if (VND_IS_RSMA(pSma->pVnode)) {
    return code;
  }

  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pSma->pRSmaTsdb[i]) {
      code = tsdbDoRetention(pSma->pRSmaTsdb[i], now);
      if (code) goto _end;
    }
  }

_end:
  return code;
}

C
Cary Xu 已提交
607 608
static int32_t tdRSmaFetchAndSubmitResult(SSma *pSma, qTaskInfo_t taskInfo, SRSmaInfoItem *pItem, STSchema *pTSchema,
                                          int64_t suid, int8_t blkType) {
H
Haojun Liao 已提交
609 610 611 612 613
  SArray *pResList = taosArrayInit(1, POINTER_BYTES);
  if (pResList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }
614

H
Haojun Liao 已提交
615 616
  while (1) {
    uint64_t ts;
617
    int32_t  code = qExecTaskOpt(taskInfo, pResList, &ts);
C
Cary Xu 已提交
618
    if (code < 0) {      
C
Cary Xu 已提交
619 620 621 622 623 624 625
      if (code == TSDB_CODE_QRY_IN_EXEC) {
        break;
      } else {
        smaError("vgId:%d, qExecTask for rsma table %" PRIi64 " level %" PRIi8 " failed since %s", SMA_VID(pSma), suid,
                 pItem->level, terrstr(code));
        goto _err;
      }
626
    }
C
Cary Xu 已提交
627

H
Haojun Liao 已提交
628 629
    if (taosArrayGetSize(pResList) == 0) {
      if (terrno == 0) {
C
Cary Xu 已提交
630
        // smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched yet", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
631 632 633 634 635 636
      } else {
        smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched since %s", SMA_VID(pSma), pItem->level, terrstr());
        goto _err;
      }

      break;
C
Cary Xu 已提交
637 638
    } else {
      smaDebug("vgId:%d, rsma %" PRIi8 " data fetched", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
639 640
    }

C
Cary Xu 已提交
641
#if 1
C
Cary Xu 已提交
642 643 644
    char flag[10] = {0};
    snprintf(flag, 10, "level %" PRIi8, pItem->level);
    blockDebugShowDataBlocks(pResList, flag);
C
Cary Xu 已提交
645
#endif
C
Cary Xu 已提交
646 647 648 649 650 651 652 653 654 655 656
    for (int32_t i = 0; i < taosArrayGetSize(pResList); ++i) {
      SSDataBlock *output = taosArrayGetP(pResList, i);
      STsdb       *sinkTsdb = (pItem->level == TSDB_RETENTION_L1 ? pSma->pRSmaTsdb[0] : pSma->pRSmaTsdb[1]);
      SSubmitReq  *pReq = NULL;

      // TODO: the schema update should be handled later(TD-17965)
      if (buildSubmitReqFromDataBlock(&pReq, output, pTSchema, SMA_VID(pSma), suid) < 0) {
        smaError("vgId:%d, build submit req for rsma stable %" PRIi64 " level %" PRIi8 " failed since %s",
                 SMA_VID(pSma), suid, pItem->level, terrstr());
        goto _err;
      }
657

C
Cary Xu 已提交
658 659 660 661 662 663
      if (pReq && tdProcessSubmitReq(sinkTsdb, output->info.version, pReq) < 0) {
        taosMemoryFreeClear(pReq);
        smaError("vgId:%d, process submit req for rsma stable %" PRIi64 " level %" PRIi8 " failed since %s",
                 SMA_VID(pSma), suid, pItem->level, terrstr());
        goto _err;
      }
664
      taosMemoryFreeClear(pReq);
C
Cary Xu 已提交
665 666 667
      
      smaDebug("vgId:%d, process submit req for rsma table %" PRIi64 " level %" PRIi8 " version:%" PRIi64,
               SMA_VID(pSma), suid, pItem->level, output->info.version);
C
Cary Xu 已提交
668

C
Cary Xu 已提交
669
    }
670 671
  }

H
Haojun Liao 已提交
672
  taosArrayDestroy(pResList);
C
Cary Xu 已提交
673
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
674

C
Cary Xu 已提交
675
_err:
H
Haojun Liao 已提交
676
  taosArrayDestroy(pResList);
C
Cary Xu 已提交
677
  return TSDB_CODE_FAILED;
678 679
}

C
Cary Xu 已提交
680 681 682 683
static int32_t tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfo *pInfo, tb_uid_t suid,
                                 int8_t level) {
  int32_t idx = level - 1;
  if (!pInfo || !RSMA_INFO_QTASK(pInfo, idx)) {
684 685 686
    smaDebug("vgId:%d, no qTaskInfo to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, suid);
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
687
  if (!pInfo->pTSchema) {
688 689 690
    smaWarn("vgId:%d, no schema to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, suid);
    return TSDB_CODE_FAILED;
  }
691 692

  smaDebug("vgId:%d, execute rsma %" PRIi8 " task for qTaskInfo:%p suid:%" PRIu64, SMA_VID(pSma), level,
C
Cary Xu 已提交
693
           RSMA_INFO_QTASK(pInfo, idx), suid);
694

C
Cary Xu 已提交
695
  if (qSetMultiStreamInput(RSMA_INFO_QTASK(pInfo, idx), pMsg, 1, inputType) < 0) {  // INPUT__DATA_SUBMIT
696
    smaError("vgId:%d, rsma %" PRIi8 " qSetStreamInput failed since %s", SMA_VID(pSma), level, tstrerror(terrno));
697 698 699
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
700
  SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, idx);
C
Cary Xu 已提交
701
  tdRSmaFetchAndSubmitResult(pSma, RSMA_INFO_QTASK(pInfo, idx), pItem, pInfo->pTSchema, suid,
C
Cary Xu 已提交
702
                             STREAM_INPUT__DATA_SUBMIT);
703 704 705 706
  atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);

  if (smaMgmt.tmrHandle) {
    taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
707
  }
708 709 710 711

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
712 713
/**
 * @brief During async commit, the SRSmaInfo object would be COW from iRSmaInfoHash and write lock should be applied.
C
Cary Xu 已提交
714 715 716 717
 *
 * @param pSma
 * @param suid
 * @return SRSmaInfo*
C
Cary Xu 已提交
718
 */
C
Cary Xu 已提交
719
static SRSmaInfo *tdAcquireRSmaInfoBySuid(SSma *pSma, int64_t suid) {
720 721
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
C
Cary Xu 已提交
722 723
  SRSmaInfo *pRSmaInfo = NULL;

724
  if (!pEnv) {
C
Cary Xu 已提交
725
    terrno = TSDB_CODE_RSMA_INVALID_ENV;
726
    return NULL;
727 728
  }

729 730
  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
C
Cary Xu 已提交
731
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
732 733
    return NULL;
  }
734

C
Cary Xu 已提交
735
  taosRLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
736 737
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
  if (pRSmaInfo && (pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
C
Cary Xu 已提交
738 739 740 741 742 743
    if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
      taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
      return NULL;
    }
    tdRefRSmaInfo(pSma, pRSmaInfo);
    taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
744 745
    return pRSmaInfo;
  }
C
Cary Xu 已提交
746
  taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
747

C
Cary Xu 已提交
748
  if (RSMA_COMMIT_STAT(pStat) == 0) {  // return NULL if not in committing stat
749 750
    return NULL;
  }
C
Cary Xu 已提交
751

C
Cary Xu 已提交
752 753 754 755
  // clone the SRSmaInfo from iRsmaInfoHash to rsmaInfoHash if in committing stat
  SRSmaInfo *pCowRSmaInfo = NULL;
  // lock
  taosWLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
756
  if (!(pCowRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t)))) {  // 2-phase lock
C
Cary Xu 已提交
757 758 759
    void *iRSmaInfo = taosHashGet(RSMA_IMU_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
    if (iRSmaInfo) {
      SRSmaInfo *pIRSmaInfo = *(SRSmaInfo **)iRSmaInfo;
C
Cary Xu 已提交
760
      if (pIRSmaInfo && !RSMA_INFO_IS_DEL(pIRSmaInfo)) {
C
Cary Xu 已提交
761
        if (tdCloneRSmaInfo(pSma, &pCowRSmaInfo, pIRSmaInfo) < 0) {
C
Cary Xu 已提交
762
          // unlock
C
Cary Xu 已提交
763 764 765 766 767 768
          taosWUnLockLatch(SMA_ENV_LOCK(pEnv));
          smaError("vgId:%d, clone rsma info failed for suid:%" PRIu64 " since %s", SMA_VID(pSma), suid, terrstr());
          return NULL;
        }
        smaDebug("vgId:%d, clone rsma info succeed for suid:%" PRIu64, SMA_VID(pSma), suid);
        if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pCowRSmaInfo, sizeof(pCowRSmaInfo)) < 0) {
C
Cary Xu 已提交
769
          // unlock
C
Cary Xu 已提交
770
          taosWUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
771
          smaError("vgId:%d, clone rsma info failed for suid:%" PRIu64 " since %s", SMA_VID(pSma), suid, terrstr());
C
Cary Xu 已提交
772 773
          return NULL;
        }
C
Cary Xu 已提交
774 775
      }
    }
C
Cary Xu 已提交
776 777 778
  } else {
    pCowRSmaInfo = *(SRSmaInfo **)pCowRSmaInfo;
    ASSERT(!pCowRSmaInfo);
C
Cary Xu 已提交
779
  }
C
Cary Xu 已提交
780

C
Cary Xu 已提交
781
  if (pCowRSmaInfo) {
C
Cary Xu 已提交
782 783
    tdRefRSmaInfo(pSma, pCowRSmaInfo);
  }
C
Cary Xu 已提交
784 785 786
  // unlock
  taosWUnLockLatch(SMA_ENV_LOCK(pEnv));
  return pCowRSmaInfo;
787 788
}

C
Cary Xu 已提交
789 790 791
static FORCE_INLINE void tdReleaseRSmaInfo(SSma *pSma, SRSmaInfo *pInfo) {
  if (pInfo) {
    tdUnRefRSmaInfo(pSma, pInfo);
C
Cary Xu 已提交
792 793 794
  }
}

795
static int32_t tdExecuteRSma(SSma *pSma, const void *pMsg, int32_t inputType, tb_uid_t suid) {
C
Cary Xu 已提交
796
  SRSmaInfo *pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, suid);
797
  if (!pRSmaInfo) {
C
Cary Xu 已提交
798
    smaError("vgId:%d, execute rsma, no rsma info for suid:%" PRIu64, SMA_VID(pSma), suid);
799 800 801
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
802
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
C
Cary Xu 已提交
803 804
    tdExecuteRSmaImpl(pSma, pMsg, inputType, pRSmaInfo, suid, TSDB_RETENTION_L1);
    tdExecuteRSmaImpl(pSma, pMsg, inputType, pRSmaInfo, suid, TSDB_RETENTION_L2);
805 806
  }

C
Cary Xu 已提交
807
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
808 809 810 811 812 813 814 815 816 817
  return TSDB_CODE_SUCCESS;
}

int32_t tdProcessRSmaSubmit(SSma *pSma, void *pMsg, int32_t inputType) {
  SSmaEnv *pEnv = SMA_RSMA_ENV(pSma);
  if (!pEnv) {
    // only applicable when rsma env exists
    return TSDB_CODE_SUCCESS;
  }

818 819 820 821 822 823
  SRetention *pRetention = SMA_RETENTION(pSma);
  if (!RETENTION_VALID(pRetention + 1)) {
    // return directly if retention level 1 is invalid
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
824
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
825 826 827 828
    STbUidStore uidStore = {0};
    tdFetchSubmitReqSuids(pMsg, &uidStore);

    if (uidStore.suid != 0) {
829
      tdExecuteRSma(pSma, pMsg, inputType, uidStore.suid);
830 831 832 833

      void *pIter = taosHashIterate(uidStore.uidHash, NULL);
      while (pIter) {
        tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
834
        tdExecuteRSma(pSma, pMsg, inputType, *pTbSuid);
835 836 837 838 839 840 841 842
        pIter = taosHashIterate(uidStore.uidHash, pIter);
      }

      tdUidStoreDestory(&uidStore);
    }
  }
  return TSDB_CODE_SUCCESS;
}
C
Cary Xu 已提交
843

C
Cary Xu 已提交
844
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables) {
845 846 847 848
  SVnode *pVnode = pSma->pVnode;

  SArray *suidList = taosArrayInit(1, sizeof(tb_uid_t));
  if (tsdbGetStbIdList(SMA_META(pSma), 0, suidList) < 0) {
C
Cary Xu 已提交
849 850
    taosArrayDestroy(suidList);
    smaError("vgId:%d, failed to restore rsma env since get stb id list error: %s", TD_VID(pVnode), terrstr());
851 852 853
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
854 855 856 857 858 859
  int64_t arrSize = taosArrayGetSize(suidList);

  if (nTables) {
    *nTables = arrSize;
  }

C
Cary Xu 已提交
860 861 862
  if (arrSize == 0) {
    taosArrayDestroy(suidList);
    smaDebug("vgId:%d, no need to restore rsma env since empty stb id list", TD_VID(pVnode));
863 864 865 866 867
    return TSDB_CODE_SUCCESS;
  }

  SMetaReader mr = {0};
  metaReaderInit(&mr, SMA_META(pSma), 0);
C
Cary Xu 已提交
868
  for (int64_t i = 0; i < arrSize; ++i) {
869
    tb_uid_t suid = *(tb_uid_t *)taosArrayGet(suidList, i);
C
Cary Xu 已提交
870
    smaDebug("vgId:%d, rsma restore, suid is %" PRIi64, TD_VID(pVnode), suid);
871
    if (metaGetTableEntryByUid(&mr, suid) < 0) {
C
Cary Xu 已提交
872 873
      smaError("vgId:%d, rsma restore, failed to get table meta for %" PRIi64 " since %s", TD_VID(pVnode), suid,
               terrstr());
874 875
      goto _err;
    }
876
    tDecoderClear(&mr.coder);
877 878 879 880
    ASSERT(mr.me.type == TSDB_SUPER_TABLE);
    ASSERT(mr.me.uid == suid);
    if (TABLE_IS_ROLLUP(mr.me.flags)) {
      SRSmaParam *param = &mr.me.stbEntry.rsmaParam;
C
Cary Xu 已提交
881 882 883 884
      for (int i = 0; i < TSDB_RETENTION_L2; ++i) {
        smaDebug("vgId:%d, rsma restore, table:%" PRIi64 " level:%d, maxdelay:%" PRIi64 " watermark:%" PRIi64
                 " qmsgLen:%" PRIi32,
                 TD_VID(pVnode), suid, i, param->maxdelay[i], param->watermark[i], param->qmsgLen[i]);
885 886
      }
      if (tdProcessRSmaCreateImpl(pSma, &mr.me.stbEntry.rsmaParam, suid, mr.me.name) < 0) {
C
Cary Xu 已提交
887
        smaError("vgId:%d, rsma restore env failed for %" PRIi64 " since %s", TD_VID(pVnode), suid, terrstr());
888 889
        goto _err;
      }
C
Cary Xu 已提交
890
      smaDebug("vgId:%d, rsma restore env success for %" PRIi64, TD_VID(pVnode), suid);
891 892 893
    }
  }

C
Cary Xu 已提交
894 895 896 897 898 899 900 901 902 903 904
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);

  return TSDB_CODE_SUCCESS;
_err:
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);

  return TSDB_CODE_FAILED;
}

905
static int32_t tdRSmaRestoreQTaskInfoReload(SSma *pSma, int8_t type, int64_t qTaskFileVer) {
C
Cary Xu 已提交
906
  SVnode *pVnode = pSma->pVnode;
C
Cary Xu 已提交
907
  STFile  tFile = {0};
C
Cary Xu 已提交
908
  char    qTaskInfoFName[TSDB_FILENAME_LEN] = {0};
909

910
  tdRSmaQTaskInfoGetFileName(TD_VID(pVnode), qTaskFileVer, qTaskInfoFName);
C
Cary Xu 已提交
911
  if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
912 913
    goto _err;
  }
C
Cary Xu 已提交
914 915

  if (!taosCheckExistFile(TD_TFILE_FULL_NAME(&tFile))) {
916 917 918
    if (qTaskFileVer > 0) {
      smaWarn("vgId:%d, restore rsma task %" PRIi8 " for version %" PRIi64 ", not start as %s not exist",
              TD_VID(pVnode), type, qTaskFileVer, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
919
    } else {
920 921
      smaDebug("vgId:%d, restore rsma task %" PRIi8 " for version %" PRIi64 ", no need as %s not exist", TD_VID(pVnode),
               type, qTaskFileVer, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
922
    }
C
Cary Xu 已提交
923
    return TSDB_CODE_SUCCESS;
924 925
  }

926 927 928
  if (tdOpenTFile(&tFile, TD_FILE_READ) < 0) {
    goto _err;
  }
C
Cary Xu 已提交
929

930 931 932 933 934 935 936 937
  STFInfo tFileInfo = {0};
  if (tdLoadTFileHeader(&tFile, &tFileInfo) < 0) {
    goto _err;
  }

  SSmaEnv   *pRSmaEnv = pSma->pRSmaEnv;
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pRSmaEnv);

C
Cary Xu 已提交
938
  SRSmaQTaskInfoIter fIter = {0};
939
  if (tdRSmaQTaskInfoIterInit(&fIter, &tFile) < 0) {
C
Cary Xu 已提交
940 941
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
942
    tdDestroyTFile(&tFile);
943 944
    goto _err;
  }
C
Cary Xu 已提交
945

946
  if (tdRSmaQTaskInfoRestore(pSma, type, &fIter) < 0) {
C
Cary Xu 已提交
947 948
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
949
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
950 951
    goto _err;
  }
952

C
Cary Xu 已提交
953
  tdRSmaQTaskInfoIterDestroy(&fIter);
C
Cary Xu 已提交
954
  tdCloseTFile(&tFile);
C
Cary Xu 已提交
955
  tdDestroyTFile(&tFile);
C
Cary Xu 已提交
956

957 958 959
  // restored successfully from committed or sync
  smaInfo("vgId:%d, restore rsma task %" PRIi8 " for version %" PRIi64 ", qtaskinfo reload succeed", TD_VID(pVnode),
          type, qTaskFileVer);
C
Cary Xu 已提交
960 961
  return TSDB_CODE_SUCCESS;
_err:
962 963
  smaError("vgId:%d, restore rsma task %" PRIi8 " for version %" PRIi64 ", qtaskinfo reload failed since %s",
           TD_VID(pVnode), type, qTaskFileVer, terrstr());
C
Cary Xu 已提交
964 965 966 967 968
  return TSDB_CODE_FAILED;
}

/**
 * @brief reload ts data from checkpoint
C
Cary Xu 已提交
969 970 971
 *
 * @param pSma
 * @return int32_t
C
Cary Xu 已提交
972
 */
973
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma) {
C
Cary Xu 已提交
974
  // NOTHING TODO: the data would be restored from the unified WAL replay procedure
C
Cary Xu 已提交
975 976 977
  return TSDB_CODE_SUCCESS;
}

978
int32_t tdProcessRSmaRestoreImpl(SSma *pSma, int8_t type, int64_t qtaskFileVer) {
C
Cary Xu 已提交
979
  // step 1: iterate all stables to restore the rsma env
C
Cary Xu 已提交
980
  int64_t nTables = 0;
C
Cary Xu 已提交
981
  if (tdRSmaRestoreQTaskInfoInit(pSma, &nTables) < 0) {
C
Cary Xu 已提交
982 983
    goto _err;
  }
C
Cary Xu 已提交
984

C
Cary Xu 已提交
985
  if (nTables <= 0) {
986
    smaDebug("vgId:%d, no need to restore rsma task %" PRIi8 " since no tables", SMA_VID(pSma), type);
C
Cary Xu 已提交
987 988
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
989 990

  // step 2: retrieve qtaskinfo items from the persistence file(rsma/qtaskinfo) and restore
991
  if (tdRSmaRestoreQTaskInfoReload(pSma, type, qtaskFileVer) < 0) {
C
Cary Xu 已提交
992 993 994 995
    goto _err;
  }

  // step 3: reload ts data from checkpoint
996
  if (tdRSmaRestoreTSDataReload(pSma) < 0) {
C
Cary Xu 已提交
997 998
    goto _err;
  }
999
  smaInfo("vgId:%d, restore rsma task %" PRIi8 " from qtaskf %" PRIi64 " succeed", SMA_VID(pSma), type, qtaskFileVer);
1000 1001
  return TSDB_CODE_SUCCESS;
_err:
1002 1003
  smaError("vgId:%d, restore rsma task %" PRIi8 "from qtaskf %" PRIi64 " failed since %s", SMA_VID(pSma), type,
           qtaskFileVer, terrstr());
1004 1005 1006
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1007 1008
/**
 * @brief Restore from SRSmaQTaskInfoItem
C
Cary Xu 已提交
1009 1010 1011 1012
 *
 * @param pSma
 * @param pItem
 * @return int32_t
C
Cary Xu 已提交
1013
 */
C
Cary Xu 已提交
1014
static int32_t tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *pItem) {
1015 1016 1017
  SRSmaInfo *pRSmaInfo = NULL;
  void      *qTaskInfo = NULL;

C
Cary Xu 已提交
1018
  pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pItem->suid);
1019
  if (!pRSmaInfo) {
C
Cary Xu 已提交
1020
    smaDebug("vgId:%d, no restore as no rsma info for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
1021 1022 1023
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1024
  if (pItem->type == TSDB_RETENTION_L1) {
C
Cary Xu 已提交
1025
    qTaskInfo = RSMA_INFO_QTASK(pRSmaInfo, 0);
C
Cary Xu 已提交
1026
  } else if (pItem->type == TSDB_RETENTION_L2) {
C
Cary Xu 已提交
1027
    qTaskInfo = RSMA_INFO_QTASK(pRSmaInfo, 1);
1028 1029 1030 1031 1032
  } else {
    ASSERT(0);
  }

  if (!qTaskInfo) {
C
Cary Xu 已提交
1033
    tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
1034
    smaDebug("vgId:%d, no restore as NULL rsma qTaskInfo for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
1035 1036 1037
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1038
  if (qDeserializeTaskStatus(qTaskInfo, pItem->qTaskInfo, pItem->len) < 0) {
C
Cary Xu 已提交
1039
    tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
1040
    smaError("vgId:%d, restore rsma task failed for table:%" PRIi64 " level %d since %s", SMA_VID(pSma), pItem->suid,
C
Cary Xu 已提交
1041
             pItem->type, terrstr());
1042 1043
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1044 1045
  smaDebug("vgId:%d, restore rsma task success for table:%" PRIi64 " level %d", SMA_VID(pSma), pItem->suid,
           pItem->type);
1046

C
Cary Xu 已提交
1047
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
1048 1049 1050
  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1051
static int32_t tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile) {
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
  memset(pIter, 0, sizeof(*pIter));
  pIter->pTFile = pTFile;
  pIter->offset = TD_FILE_HEAD_SIZE;

  if (tdGetTFileSize(pTFile, &pIter->fsize) < 0) {
    return TSDB_CODE_FAILED;
  }

  if ((pIter->fsize - TD_FILE_HEAD_SIZE) < RSMA_QTASKINFO_BUFSIZE) {
    pIter->nAlloc = pIter->fsize - TD_FILE_HEAD_SIZE;
  } else {
    pIter->nAlloc = RSMA_QTASKINFO_BUFSIZE;
  }

  if (pIter->nAlloc < TD_FILE_HEAD_SIZE) {
    pIter->nAlloc = TD_FILE_HEAD_SIZE;
  }

C
Cary Xu 已提交
1070 1071
  pIter->pBuf = taosMemoryMalloc(pIter->nAlloc);
  if (!pIter->pBuf) {
1072 1073 1074
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1075
  pIter->qBuf = pIter->pBuf;
1076 1077 1078 1079

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1080
static int32_t tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish) {
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
  STFile *pTFile = pIter->pTFile;
  int64_t nBytes = RSMA_QTASKINFO_BUFSIZE;

  if (pIter->offset >= pIter->fsize) {
    *isFinish = true;
    return TSDB_CODE_SUCCESS;
  }

  if ((pIter->fsize - pIter->offset) < RSMA_QTASKINFO_BUFSIZE) {
    nBytes = pIter->fsize - pIter->offset;
  }

  if (tdSeekTFile(pTFile, pIter->offset, SEEK_SET) < 0) {
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
1097
  if (tdReadTFile(pTFile, pIter->qBuf, nBytes) != nBytes) {
1098 1099 1100 1101
    return TSDB_CODE_FAILED;
  }

  int32_t infoLen = 0;
C
Cary Xu 已提交
1102
  taosDecodeFixedI32(pIter->qBuf, &infoLen);
1103
  if (infoLen > nBytes) {
C
Cary Xu 已提交
1104 1105 1106 1107 1108
    if (infoLen <= RSMA_QTASKINFO_BUFSIZE) {
      terrno = TSDB_CODE_RSMA_FILE_CORRUPTED;
      smaError("iterate rsma qtaskinfo file %s failed since %s", TD_TFILE_FULL_NAME(pIter->pTFile), terrstr());
      return TSDB_CODE_FAILED;
    }
1109
    pIter->nAlloc = infoLen;
C
Cary Xu 已提交
1110
    void *pBuf = taosMemoryRealloc(pIter->pBuf, infoLen);
1111 1112 1113 1114
    if (!pBuf) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1115 1116
    pIter->pBuf = pBuf;
    pIter->qBuf = pIter->pBuf;
1117 1118 1119 1120 1121 1122
    nBytes = infoLen;

    if (tdSeekTFile(pTFile, pIter->offset, SEEK_SET)) {
      return TSDB_CODE_FAILED;
    }

C
Cary Xu 已提交
1123
    if (tdReadTFile(pTFile, pIter->pBuf, nBytes) != nBytes) {
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
      return TSDB_CODE_FAILED;
    }
  }

  pIter->offset += nBytes;
  pIter->nBytes = nBytes;
  pIter->nBufPos = 0;

  return TSDB_CODE_SUCCESS;
}

1135
static int32_t tdRSmaQTaskInfoRestore(SSma *pSma, int8_t type, SRSmaQTaskInfoIter *pIter) {
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
  while (1) {
    // block iter
    bool isFinish = false;
    if (tdRSmaQTaskInfoIterNextBlock(pIter, &isFinish) < 0) {
      return TSDB_CODE_FAILED;
    }
    if (isFinish) {
      return TSDB_CODE_SUCCESS;
    }

    // consume the block
    int32_t qTaskInfoLenWithHead = 0;
C
Cary Xu 已提交
1148 1149
    pIter->qBuf = taosDecodeFixedI32(pIter->qBuf, &qTaskInfoLenWithHead);
    if (qTaskInfoLenWithHead < RSMA_QTASKINFO_HEAD_LEN) {
1150
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
1151
      smaError("vgId:%d, restore rsma task %" PRIi8 " from qtaskinfo file %s failed since %s", SMA_VID(pSma), type,
C
Cary Xu 已提交
1152
               TD_TFILE_FULL_NAME(pIter->pTFile), terrstr());
1153 1154
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1155

1156 1157
    while (1) {
      if ((pIter->nBufPos + qTaskInfoLenWithHead) <= pIter->nBytes) {
C
Cary Xu 已提交
1158 1159 1160 1161 1162
        SRSmaQTaskInfoItem infoItem = {0};
        pIter->qBuf = taosDecodeFixedI8(pIter->qBuf, &infoItem.type);
        pIter->qBuf = taosDecodeFixedI64(pIter->qBuf, &infoItem.suid);
        infoItem.qTaskInfo = pIter->qBuf;
        infoItem.len = tdRSmaQTaskInfoContLen(qTaskInfoLenWithHead);
1163
        // do the restore job
1164 1165
        smaDebug("vgId:%d, restore rsma task %" PRIi8 " from qtaskinfo file %s offset:%" PRIi64 "\n", SMA_VID(pSma),
                 type, TD_TFILE_FULL_NAME(pIter->pTFile), pIter->offset - pIter->nBytes + pIter->nBufPos);
C
Cary Xu 已提交
1166
        tdRSmaQTaskInfoItemRestore(pSma, &infoItem);
1167

C
Cary Xu 已提交
1168
        pIter->qBuf = POINTER_SHIFT(pIter->qBuf, infoItem.len);
1169 1170
        pIter->nBufPos += qTaskInfoLenWithHead;

C
Cary Xu 已提交
1171 1172 1173 1174 1175 1176 1177
        if ((pIter->nBufPos + RSMA_QTASKINFO_HEAD_LEN) >= pIter->nBytes) {
          // prepare and load next block in the file
          pIter->offset -= (pIter->nBytes - pIter->nBufPos);
          break;
        }

        pIter->qBuf = taosDecodeFixedI32(pIter->qBuf, &qTaskInfoLenWithHead);
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
        continue;
      }
      // prepare and load next block in the file
      pIter->offset -= (pIter->nBytes - pIter->nBufPos);
      break;
    }
  }

  return TSDB_CODE_SUCCESS;
}
C
Cary Xu 已提交
1188

C
Cary Xu 已提交
1189
int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
C
Cary Xu 已提交
1190 1191 1192 1193 1194
  SSma   *pSma = pRSmaStat->pSma;
  SVnode *pVnode = pSma->pVnode;
  int32_t vid = SMA_VID(pSma);
  int64_t toffset = 0;
  bool    isFileCreated = false;
C
Cary Xu 已提交
1195

C
Cary Xu 已提交
1196
  if (taosHashGetSize(pInfoHash) <= 0) {
1197 1198 1199
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1200
  void *infoHash = taosHashIterate(pInfoHash, NULL);
C
Cary Xu 已提交
1201
  if (!infoHash) {
C
Cary Xu 已提交
1202
    return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1203 1204 1205
  }

  STFile tFile = {0};
C
Cary Xu 已提交
1206 1207
#if 0
  if (pRSmaStat->commitAppliedVer > 0) {
1208
    char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1209
    tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
    if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
      smaError("vgId:%d, rsma persit, init %s failed since %s", vid, qTaskInfoFName, terrstr());
      goto _err;
    }
    if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
      smaError("vgId:%d, rsma persit, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
      goto _err;
    }
    smaDebug("vgId:%d, rsma, serialize qTaskInfo, file %s created", vid, TD_TFILE_FULL_NAME(&tFile));

    isFileCreated = true;
  }
C
Cary Xu 已提交
1222
#endif
1223

C
Cary Xu 已提交
1224 1225
  while (infoHash) {
    SRSmaInfo *pRSmaInfo = *(SRSmaInfo **)infoHash;
C
Cary Xu 已提交
1226 1227 1228 1229 1230 1231

    if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
      infoHash = taosHashIterate(pInfoHash, infoHash);
      continue;
    }

C
Cary Xu 已提交
1232
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
C
Cary Xu 已提交
1233
      qTaskInfo_t taskInfo = RSMA_INFO_QTASK(pRSmaInfo, i);
C
Cary Xu 已提交
1234
      if (!taskInfo) {
1235
        smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d qTaskInfo is NULL", vid, pRSmaInfo->suid, i + 1);
C
Cary Xu 已提交
1236 1237 1238 1239 1240 1241 1242
        continue;
      }

      char   *pOutput = NULL;
      int32_t len = 0;
      int8_t  type = (int8_t)(i + 1);
      if (qSerializeTaskStatus(taskInfo, &pOutput, &len) < 0) {
1243
        smaError("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo failed since %s", vid, pRSmaInfo->suid,
C
Cary Xu 已提交
1244
                 i + 1, terrstr());
C
Cary Xu 已提交
1245 1246 1247
        goto _err;
      }
      if (!pOutput || len <= 0) {
1248 1249
        smaDebug("vgId:%d, rsma, table %" PRIi64
                 " level %d serialize qTaskInfo success but no output(len %d), not persist",
C
Cary Xu 已提交
1250 1251 1252 1253 1254
                 vid, pRSmaInfo->suid, i + 1, len);
        taosMemoryFreeClear(pOutput);
        continue;
      }

1255
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo success with len %d, need persist", vid,
C
Cary Xu 已提交
1256 1257 1258 1259
               pRSmaInfo->suid, i + 1, len);

      if (!isFileCreated) {
        char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1260
        tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
C
Cary Xu 已提交
1261
        if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
C
Cary Xu 已提交
1262
          smaError("vgId:%d, rsma persit, init %s failed since %s", vid, qTaskInfoFName, terrstr());
C
Cary Xu 已提交
1263 1264
          goto _err;
        }
1265
        if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
C
Cary Xu 已提交
1266
          smaError("vgId:%d, rsma persit, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
C
Cary Xu 已提交
1267 1268
          goto _err;
        }
1269 1270
        smaDebug("vgId:%d, rsma, table %" PRIi64 " serialize qTaskInfo, file %s created", vid, pRSmaInfo->suid,
                 TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283

        isFileCreated = true;
      }

      char    tmpBuf[RSMA_QTASKINFO_HEAD_LEN] = {0};
      void   *pTmpBuf = &tmpBuf;
      int32_t headLen = 0;
      headLen += taosEncodeFixedI32(&pTmpBuf, len + RSMA_QTASKINFO_HEAD_LEN);
      headLen += taosEncodeFixedI8(&pTmpBuf, type);
      headLen += taosEncodeFixedI64(&pTmpBuf, pRSmaInfo->suid);

      ASSERT(headLen <= RSMA_QTASKINFO_HEAD_LEN);
      tdAppendTFile(&tFile, (void *)&tmpBuf, headLen, &toffset);
1284
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d head part(len:%d) appended to offset:%" PRIi64, vid,
1285
               pRSmaInfo->suid, i + 1, headLen, toffset);
C
Cary Xu 已提交
1286
      tdAppendTFile(&tFile, pOutput, len, &toffset);
1287 1288
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d body part len:%d appended to offset:%" PRIi64, vid,
               pRSmaInfo->suid, i + 1, len, toffset);
C
Cary Xu 已提交
1289 1290 1291 1292

      taosMemoryFree(pOutput);
    }

C
Cary Xu 已提交
1293
    infoHash = taosHashIterate(pInfoHash, infoHash);
C
Cary Xu 已提交
1294
  }
C
Cary Xu 已提交
1295

C
Cary Xu 已提交
1296 1297
  if (isFileCreated) {
    if (tdUpdateTFileHeader(&tFile) < 0) {
1298
      smaError("vgId:%d, rsma, failed to update tfile %s header since %s", vid, TD_TFILE_FULL_NAME(&tFile),
C
Cary Xu 已提交
1299 1300 1301
               tstrerror(terrno));
      goto _err;
    } else {
1302
      smaDebug("vgId:%d, rsma, succeed to update tfile %s header", vid, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1303 1304 1305
    }

    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1306
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1307
  }
C
Cary Xu 已提交
1308
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1309
_err:
C
Cary Xu 已提交
1310
  smaError("vgId:%d, rsma persit failed since %s", vid, terrstr());
C
Cary Xu 已提交
1311 1312
  if (isFileCreated) {
    tdRemoveTFile(&tFile);
C
Cary Xu 已提交
1313 1314 1315 1316 1317
    tdDestroyTFile(&tFile);
  }
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1318
/**
C
Cary Xu 已提交
1319
 * @brief trigger to get rsma result in async mode
C
Cary Xu 已提交
1320 1321 1322 1323
 *
 * @param param
 * @param tmrId
 */
C
Cary Xu 已提交
1324
static void tdRSmaFetchTrigger(void *param, void *tmrId) {
C
Cary Xu 已提交
1325 1326
  SRSmaInfoItem *pItem = param;
  SSma          *pSma = NULL;
C
Cary Xu 已提交
1327 1328 1329
  SRSmaInfo     *pRSmaInfo = tdGetRSmaInfoByItem(pItem);

  if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
C
Cary Xu 已提交
1330 1331
    smaDebug("rsma fetch task not start since rsma info already deleted, rsetId:%" PRIi64 " refId:%d)", smaMgmt.rsetId,
             pRSmaInfo->refId);
C
Cary Xu 已提交
1332 1333 1334
    return;
  }

C
Cary Xu 已提交
1335
  SRSmaStat *pStat = (SRSmaStat *)tdAcquireSmaRef(smaMgmt.rsetId, pRSmaInfo->refId);
C
Cary Xu 已提交
1336 1337

  if (!pStat) {
C
Cary Xu 已提交
1338 1339
    smaDebug("rsma fetch task not start since rsma stat already destroyed, rsetId:%" PRIi64 " refId:%d)",
             smaMgmt.rsetId, pRSmaInfo->refId);
C
Cary Xu 已提交
1340
    return;
C
Cary Xu 已提交
1341 1342
  }

C
Cary Xu 已提交
1343 1344 1345 1346 1347 1348 1349
  pSma = pStat->pSma;

  // if rsma trigger stat in paused, cancelled or finished, not start fetch task
  int8_t rsmaTriggerStat = atomic_load_8(RSMA_TRIGGER_STAT(pStat));
  switch (rsmaTriggerStat) {
    case TASK_TRIGGER_STAT_PAUSED:
    case TASK_TRIGGER_STAT_CANCELLED: {
C
Cary Xu 已提交
1350
      tdReleaseSmaRef(smaMgmt.rsetId, pRSmaInfo->refId);
C
Cary Xu 已提交
1351 1352
      smaDebug("vgId:%d, rsma fetch task not start for level %" PRIi8 " since stat is %" PRIi8
               ", rsetId rsetId:%" PRIi64 " refId:%d",
C
Cary Xu 已提交
1353
               SMA_VID(pSma), pItem->level, rsmaTriggerStat, smaMgmt.rsetId, pRSmaInfo->refId);
C
Cary Xu 已提交
1354
      if (rsmaTriggerStat == TASK_TRIGGER_STAT_PAUSED) {
C
Cary Xu 已提交
1355
        taosTmrReset(tdRSmaFetchTrigger, 5000, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
1356 1357
      }
      return;
C
Cary Xu 已提交
1358
    }
C
Cary Xu 已提交
1359 1360 1361 1362 1363 1364 1365 1366
    default:
      break;
  }

  int8_t fetchTriggerStat =
      atomic_val_compare_exchange_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE, TASK_TRIGGER_STAT_INACTIVE);
  switch (fetchTriggerStat) {
    case TASK_TRIGGER_STAT_ACTIVE: {
C
Cary Xu 已提交
1367 1368
      smaDebug("vgId:%d, rsma fetch task started for level:%" PRIi8 " suid:%" PRIi64 " since stat is active",
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
C
Cary Xu 已提交
1369 1370
      // async process
      tdRSmaFetchSend(pSma, pRSmaInfo, pItem->level);
C
Cary Xu 已提交
1371 1372
    } break;
    case TASK_TRIGGER_STAT_PAUSED: {
C
Cary Xu 已提交
1373
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is paused",
C
Cary Xu 已提交
1374 1375 1376
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INACTIVE: {
C
Cary Xu 已提交
1377
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is inactive",
C
Cary Xu 已提交
1378 1379 1380
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INIT: {
C
Cary Xu 已提交
1381 1382
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid::%" PRIi64 " since stat is init",
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
C
Cary Xu 已提交
1383 1384
    } break;
    default: {
C
Cary Xu 已提交
1385
      smaWarn("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is unknown",
C
Cary Xu 已提交
1386 1387
              SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
C
Cary Xu 已提交
1388 1389 1390
  }

_end:
C
Cary Xu 已提交
1391
  // taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
1392
  tdReleaseSmaRef(smaMgmt.rsetId, pRSmaInfo->refId);
C
Cary Xu 已提交
1393
}
C
Cary Xu 已提交
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403

/**
 * @brief put rsma fetch msg to fetch queue
 *
 * @param pSma
 * @param pInfo
 * @param level
 * @return int32_t
 */
int32_t tdRSmaFetchSend(SSma *pSma, SRSmaInfo *pInfo, int8_t level) {
C
Cary Xu 已提交
1404
  SRSmaFetchMsg fetchMsg = {.suid = pInfo->suid, .level = level};
C
Cary Xu 已提交
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
  int32_t       ret = 0;
  int32_t       contLen = 0;
  SEncoder      encoder = {0};
  tEncodeSize(tEncodeSRSmaFetchMsg, &fetchMsg, contLen, ret);
  if (ret < 0) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    tEncoderClear(&encoder);
    goto _err;
  }

1415 1416
  void *pBuf = rpcMallocCont(contLen + sizeof(SMsgHead));
  tEncoderInit(&encoder, POINTER_SHIFT(pBuf, sizeof(SMsgHead)), contLen);
C
Cary Xu 已提交
1417 1418 1419 1420 1421
  if (tEncodeSRSmaFetchMsg(&encoder, &fetchMsg) < 0) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    tEncoderClear(&encoder);
  }
  tEncoderClear(&encoder);
H
Haojun Liao 已提交
1422

1423 1424 1425
  ((SMsgHead *)pBuf)->vgId = SMA_VID(pSma);
  ((SMsgHead *)pBuf)->contLen = contLen + sizeof(SMsgHead);

C
Cary Xu 已提交
1426 1427 1428 1429 1430 1431 1432
  SRpcMsg rpcMsg = {
      .code = 0,
      .msgType = TDMT_VND_FETCH_RSMA,
      .pCont = pBuf,
      .contLen = contLen,
  };

C
Cary Xu 已提交
1433
  if ((terrno = tmsgPutToQueue(&pSma->pVnode->msgCb, QUERY_QUEUE, &rpcMsg)) != 0) {
1434
    smaError("vgId:%d, failed to put rsma fetch msg into fetch-queue for suid:%" PRIi64 " level:%" PRIi8 " since %s",
C
Cary Xu 已提交
1435 1436 1437 1438
             SMA_VID(pSma), pInfo->suid, level, terrstr());
    goto _err;
  }

1439 1440 1441
  smaDebug("vgId:%d, success to put rsma fetch msg into fetch-queue for suid:%" PRIi64 " level:%" PRIi8, SMA_VID(pSma),
           pInfo->suid, level);

C
Cary Xu 已提交
1442 1443 1444 1445 1446
  return TSDB_CODE_SUCCESS;
_err:
  return TSDB_CODE_FAILED;
}

1447 1448
/**
 * @brief fetch rsma data of level 2/3 and submit
H
Haojun Liao 已提交
1449 1450 1451 1452
 *
 * @param pSma
 * @param pMsg
 * @return int32_t
1453
 */
C
Cary Xu 已提交
1454 1455 1456 1457
int32_t smaProcessFetch(SSma *pSma, void *pMsg) {
  SRpcMsg       *pRpcMsg = (SRpcMsg *)pMsg;
  SRSmaFetchMsg  req = {0};
  SDecoder       decoder = {0};
1458
  void          *pBuf = NULL;
C
Cary Xu 已提交
1459 1460 1461
  SRSmaInfo     *pInfo = NULL;
  SRSmaInfoItem *pItem = NULL;

1462 1463
  if (!pRpcMsg || pRpcMsg->contLen < sizeof(SMsgHead)) {
    terrno = TSDB_CODE_RSMA_FETCH_MSG_MSSED_UP;
C
Cary Xu 已提交
1464
    goto _err;
1465 1466 1467 1468 1469
  }

  pBuf = POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead));

  tDecoderInit(&decoder, pBuf, pRpcMsg->contLen);
C
Cary Xu 已提交
1470 1471 1472 1473 1474 1475 1476
  if (tDecodeSRSmaFetchMsg(&decoder, &req) < 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    goto _err;
  }

  pInfo = tdAcquireRSmaInfoBySuid(pSma, req.suid);
  if (!pInfo) {
1477 1478 1479 1480
    if (terrno == TSDB_CODE_SUCCESS) {
      terrno = TSDB_CODE_RSMA_EMPTY_INFO;
    }
    smaWarn("vgId:%d, failed to process rsma fetch msg for suid:%" PRIi64 " level:%" PRIi8 " since %s", SMA_VID(pSma),
C
Cary Xu 已提交
1481
            req.suid, req.level, terrstr());
C
Cary Xu 已提交
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
    goto _err;
  }

  pItem = RSMA_INFO_ITEM(pInfo, req.level - 1);

  SSDataBlock dataBlock = {.info.type = STREAM_GET_ALL};
  qTaskInfo_t taskInfo = RSMA_INFO_QTASK(pInfo, req.level - 1);
  if ((terrno = qSetMultiStreamInput(taskInfo, &dataBlock, 1, STREAM_INPUT__DATA_BLOCK)) < 0) {
    goto _err;
  }
  if (tdRSmaFetchAndSubmitResult(pSma, taskInfo, pItem, pInfo->pTSchema, pInfo->suid, STREAM_INPUT__DATA_BLOCK) < 0) {
    goto _err;
  }

  tdCleanupStreamInputDataBlock(taskInfo);

  tdReleaseRSmaInfo(pSma, pInfo);
  tDecoderClear(&decoder);
1500 1501
  smaDebug("vgId:%d, success to process rsma fetch msg for suid:%" PRIi64 " level:%" PRIi8, SMA_VID(pSma), req.suid,
           req.level);
C
Cary Xu 已提交
1502 1503 1504 1505 1506 1507 1508
  return TSDB_CODE_SUCCESS;
_err:
  tdReleaseRSmaInfo(pSma, pInfo);
  tDecoderClear(&decoder);
  smaError("vgId:%d, failed to process rsma fetch msg since %s", SMA_VID(pSma), terrstr());
  return TSDB_CODE_FAILED;
}