smaRollup.c 44.1 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);
35 36 37 38 39 40
static int32_t    tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfoItem *rsmaItem,
                                    STSchema *pTSchema, tb_uid_t suid, int8_t level);
static SRSmaInfo *tdGetRSmaInfoBySuid(SSma *pSma, int64_t suid);
static int32_t    tdRSmaFetchAndSubmitResult(SRSmaInfoItem *pItem, STSchema *pTSchema, int64_t suid, SRSmaStat *pStat,
                                             int8_t blkType);
static void       tdRSmaFetchTrigger(void *param, void *tmrId);
41

C
Cary Xu 已提交
42 43 44
static int32_t tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile);
static int32_t tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish);
static int32_t tdRSmaQTaskInfoRestore(SSma *pSma, SRSmaQTaskInfoIter *pIter);
45
static int32_t tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *infoItem);
46

C
Cary Xu 已提交
47
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables);
C
Cary Xu 已提交
48 49
static int32_t tdRSmaRestoreQTaskInfoReload(SSma *pSma, int64_t *committed);
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma, int64_t committed);
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
}

C
Cary Xu 已提交
83 84 85 86
void tdRSmaQTaskInfoGetFullName(int32_t vgId, int64_t version, const char* path, char *outputName) {
  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) 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 118
      SRSmaInfoItem *pItem = &pInfo->items[i];
      if (pItem->taskInfo) {
C
Cary Xu 已提交
119
        if (isDeepFree && pItem->tmrId) {
C
Cary Xu 已提交
120 121
          smaDebug("vgId:%d, stop fetch timer %p for table %" PRIi64 " level %d", SMA_VID(pSma), pInfo->suid,
                   pItem->tmrId, i + 1);
C
Cary Xu 已提交
122 123
          taosTmrStopA(&pItem->tmrId);
        }
C
Cary Xu 已提交
124
        tdFreeQTaskInfo(&pItem->taskInfo, SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
125
      } else {
C
Cary Xu 已提交
126
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty taskInfo", SMA_VID(pSma),
127
                 pInfo->suid, i + 1);
128
      }
129
    }
C
Cary Xu 已提交
130 131 132
    if (isDeepFree) {
      taosMemoryFree(pInfo->pTSchema);
    }
133
    taosMemoryFree(pInfo);
134
  }
135

136 137 138 139 140 141 142 143 144 145 146 147 148
  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 已提交
149
static int32_t tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids) {
150 151 152 153
  SRSmaInfo *pRSmaInfo = NULL;

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

158 159 160
  pRSmaInfo = tdGetRSmaInfoBySuid(pSma, *suid);

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

C
Cary Xu 已提交
166 167
  if (pRSmaInfo->items[0].taskInfo) {
    if ((qUpdateQualifiedTableId(pRSmaInfo->items[0].taskInfo, tbUids, true) < 0)) {
C
Cary Xu 已提交
168
      smaError("vgId:%d, update tbUidList failed for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr());
C
Cary Xu 已提交
169 170 171 172 173
      return TSDB_CODE_FAILED;
    } else {
      smaDebug("vgId:%d, update tbUidList succeed for qTaskInfo:%p with suid:%" PRIi64 ", uid:%" PRIi64, SMA_VID(pSma),
               pRSmaInfo->items[0].taskInfo, *suid, *(int64_t *)taosArrayGet(tbUids, 0));
    }
174 175
  }

C
Cary Xu 已提交
176 177
  if (pRSmaInfo->items[1].taskInfo) {
    if ((qUpdateQualifiedTableId(pRSmaInfo->items[1].taskInfo, tbUids, true) < 0)) {
C
Cary Xu 已提交
178
      smaError("vgId:%d, update tbUidList failed for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr());
C
Cary Xu 已提交
179 180 181 182 183
      return TSDB_CODE_FAILED;
    } else {
      smaDebug("vgId:%d, update tbUidList succeed for qTaskInfo:%p with suid:%" PRIi64 ", uid:%" PRIi64, SMA_VID(pSma),
               pRSmaInfo->items[1].taskInfo, *suid, *(int64_t *)taosArrayGet(tbUids, 0));
    }
184 185 186 187 188 189 190 191 192 193 194 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
  }

  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 已提交
230 231 232
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  if (!pStat || !(infoHash = RSMA_INFO_HASH(pStat))) {
C
Cary Xu 已提交
233
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
234 235 236 237 238 239 240 241 242 243 244
    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)) {
245
    if (tdUidStoreInit(ppStore) < 0) {
246 247 248 249
      return TSDB_CODE_FAILED;
    }
  }

250
  if (tdUidStorePut(*ppStore, suid, &uid) < 0) {
251 252 253 254 255 256 257
    *ppStore = tdUidStoreFree(*ppStore);
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

258
static int32_t tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
259
                                       int8_t idx) {
C
Cary Xu 已提交
260 261 262
  if ((param->qmsgLen > 0) && param->qmsg[idx]) {
    SRetention *pRetention = SMA_RETENTION(pSma);
    STsdbCfg   *pTsdbCfg = SMA_TSDB_CFG(pSma);
C
Cary Xu 已提交
263
    SVnode     *pVnode = pSma->pVnode;
C
Cary Xu 已提交
264
    SReadHandle handle = {
C
Cary Xu 已提交
265 266
        .meta = pVnode->pMeta,
        .vnode = pVnode,
C
Cary Xu 已提交
267 268
        .initTqReader = 1,
    };
C
Cary Xu 已提交
269

C
Cary Xu 已提交
270
    SRSmaInfoItem *pItem = &(pRSmaInfo->items[idx]);
271
    pItem->refId = RSMA_REF_ID(pStat);
L
Liu Jicong 已提交
272
    pItem->taskInfo = qCreateStreamExecTaskInfo(param->qmsg[idx], &handle);
C
Cary Xu 已提交
273
    if (!pItem->taskInfo) {
C
Cary Xu 已提交
274
      terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
C
Cary Xu 已提交
275
      return TSDB_CODE_FAILED;
C
Cary Xu 已提交
276
    }
C
Cary Xu 已提交
277
    pItem->triggerStat = TASK_TRIGGER_STAT_INACTIVE;
C
Cary Xu 已提交
278 279 280
    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 已提交
281
      pItem->maxDelay = (int32_t)msInterval;
C
Cary Xu 已提交
282
    } else {
C
Cary Xu 已提交
283
      pItem->maxDelay = (int32_t)param->maxdelay[idx];
C
Cary Xu 已提交
284
    }
C
Cary Xu 已提交
285 286
    if (pItem->maxDelay > TSDB_MAX_ROLLUP_MAX_DELAY) {
      pItem->maxDelay = TSDB_MAX_ROLLUP_MAX_DELAY;
C
Cary Xu 已提交
287
    }
288
    pItem->level = idx == 0 ? TSDB_RETENTION_L1 : TSDB_RETENTION_L2;
C
Cary Xu 已提交
289
    smaInfo("vgId:%d, table:%" PRIi64 " level:%" PRIi8 " maxdelay:%" PRIi64 " watermark:%" PRIi64
290
            ", finally maxdelay:%" PRIi32,
C
Cary Xu 已提交
291
            TD_VID(pVnode), pRSmaInfo->suid, idx + 1, param->maxdelay[idx], param->watermark[idx], pItem->maxDelay);
C
Cary Xu 已提交
292 293 294 295
  }
  return TSDB_CODE_SUCCESS;
}

296
/**
297
 * @brief for rsam create or restore
298
 *
299 300 301 302
 * @param pSma
 * @param param
 * @param suid
 * @param tbName
303 304
 * @return int32_t
 */
305
int32_t tdProcessRSmaCreateImpl(SSma *pSma, SRSmaParam *param, int64_t suid, const char *tbName) {
306
  if ((param->qmsgLen[0] == 0) && (param->qmsgLen[1] == 0)) {
307
    smaDebug("vgId:%d, no qmsg1/qmsg2 for rollup table %s %" PRIi64, SMA_VID(pSma), tbName, suid);
308 309 310
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
311
  if (tdCheckAndInitSmaEnv(pSma, TSDB_SMA_TYPE_ROLLUP) != TSDB_CODE_SUCCESS) {
312 313 314 315 316
    terrno = TSDB_CODE_TDB_INIT_FAILED;
    return TSDB_CODE_FAILED;
  }

  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
C
Cary Xu 已提交
317
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
318 319
  SRSmaInfo *pRSmaInfo = NULL;

320
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
321
  if (pRSmaInfo) {
C
Cary Xu 已提交
322
    ASSERT(0);  // TODO: free original pRSmaInfo if exists abnormally
323
    smaDebug("vgId:%d, rsma info already exists for table %s, %" PRIi64, SMA_VID(pSma), tbName, suid);
324 325 326
    return TSDB_CODE_SUCCESS;
  }

327
  // from write queue: single thead
328 329 330 331 332 333
  pRSmaInfo = (SRSmaInfo *)taosMemoryCalloc(1, sizeof(SRSmaInfo));
  if (!pRSmaInfo) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }

334
  STSchema *pTSchema = metaGetTbTSchema(SMA_META(pSma), suid, -1);
335 336 337 338 339
  if (!pTSchema) {
    terrno = TSDB_CODE_TDB_IVD_TB_SCHEMA_VERSION;
    goto _err;
  }
  pRSmaInfo->pTSchema = pTSchema;
340
  pRSmaInfo->suid = suid;
C
Cary Xu 已提交
341
  T_REF_INIT_VAL(pRSmaInfo, 1);
342

L
Liu Jicong 已提交
343
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 0) < 0) {
C
Cary Xu 已提交
344 345
    goto _err;
  }
C
Cary Xu 已提交
346

L
Liu Jicong 已提交
347
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 1) < 0) {
C
Cary Xu 已提交
348 349
    goto _err;
  }
350

351
  if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pRSmaInfo, sizeof(pRSmaInfo)) < 0) {
352
    goto _err;
353 354
  }

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

357
  return TSDB_CODE_SUCCESS;
358
_err:
C
Cary Xu 已提交
359
  tdFreeRSmaInfo(pSma, pRSmaInfo, true);
360
  return TSDB_CODE_FAILED;
361 362
}

363
/**
C
Cary Xu 已提交
364
 * @brief Check and init qTaskInfo_t, only applicable to stable with SRSmaParam currently
365
 *
366
 * @param pSma
367 368 369
 * @param pReq
 * @return int32_t
 */
370 371
int32_t tdProcessRSmaCreate(SSma *pSma, SVCreateStbReq *pReq) {
  SVnode *pVnode = pSma->pVnode;
372
  if (!pReq->rollup) {
373 374 375 376 377 378 379 380
    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);
381 382 383 384 385 386
    return TSDB_CODE_SUCCESS;
  }

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

387 388 389 390 391 392 393
/**
 * @brief drop cache for stb
 *
 * @param pSma
 * @param pReq
 * @return int32_t
 */
L
Liu Jicong 已提交
394
int32_t tdProcessRSmaDrop(SSma *pSma, SVDropStbReq *pReq) {
395 396
  SVnode *pVnode = pSma->pVnode;
  if (!VND_IS_RSMA(pVnode)) {
C
Cary Xu 已提交
397
    smaTrace("vgId:%d, not drop rsma for stable %s %" PRIi64 " since vnd is not rsma", TD_VID(pVnode), pReq->name,
398 399 400 401
             pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
  if (!pSmaEnv) {
    return TSDB_CODE_SUCCESS;
  }

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

  SRSmaInfo *pRSmaInfo = tdGetRSmaInfoBySuid(pSma, pReq->suid);

  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);

  // save to file

424 425
  smaDebug("vgId:%d, drop rsma for table %" PRIi64 " succeed", TD_VID(pVnode), pReq->suid);
  return TSDB_CODE_SUCCESS;
L
Liu Jicong 已提交
426
}
427

428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 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
/**
 * @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;
        }
475
        if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), &pUidArray, sizeof(pUidArray)) < 0) {
476 477 478 479
          return TSDB_CODE_FAILED;
        }
      }
    } else {
480
      if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), NULL, 0) < 0) {
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 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
        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 已提交
537 538 539
  if (tInitSubmitMsgIter(pMsg, &msgIter) < 0) {
    return -1;
  }
540
  while (true) {
C
Cary Xu 已提交
541 542 543
    if (tGetSubmitMsgNext(&msgIter, &pBlock) < 0) {
      return -1;
    }
544 545 546 547 548

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

C
Cary Xu 已提交
549 550 551
  if (terrno != TSDB_CODE_SUCCESS) {
    return -1;
  }
552 553 554
  return 0;
}

C
Cary Xu 已提交
555
static void tdDestroySDataBlockArray(SArray *pArray) {
C
Cary Xu 已提交
556
  // TODO
C
Cary Xu 已提交
557 558 559 560 561 562 563 564 565
#if 0
  for (int32_t i = 0; i < taosArrayGetSize(pArray); ++i) {
    SSDataBlock *pDataBlock = taosArrayGet(pArray, i);
    blockDestroyInner(pDataBlock);
  }
#endif
  taosArrayDestroy(pArray);
}

566 567 568 569
static int32_t tdRSmaFetchAndSubmitResult(SRSmaInfoItem *pItem, STSchema *pTSchema, int64_t suid, SRSmaStat *pStat,
                                          int8_t blkType) {
  SArray *pResult = NULL;
  SSma   *pSma = pStat->pSma;
570 571 572 573

  while (1) {
    SSDataBlock *output = NULL;
    uint64_t     ts;
574 575 576

    int32_t code = qExecTask(pItem->taskInfo, &output, &ts);
    if (code < 0) {
577
      smaError("vgId:%d, qExecTask for rsma table %" PRIi64 " level %" PRIi8 " failed since %s", SMA_VID(pSma), suid,
578
               pItem->level, terrstr(code));
C
Cary Xu 已提交
579
      goto _err;
580 581 582 583
    }
    if (!output) {
      break;
    }
C
Cary Xu 已提交
584

585
    if (!pResult) {
C
Cary Xu 已提交
586
      pResult = taosArrayInit(1, sizeof(SSDataBlock));
587 588
      if (!pResult) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
C
Cary Xu 已提交
589
        goto _err;
590 591 592 593 594
      }
    }

    taosArrayPush(pResult, output);

595
    if (taosArrayGetSize(pResult) > 0) {
C
Cary Xu 已提交
596
#if 1
597 598 599
      char flag[10] = {0};
      snprintf(flag, 10, "level %" PRIi8, pItem->level);
      blockDebugShowDataBlocks(pResult, flag);
C
Cary Xu 已提交
600
#endif
601 602 603 604
      STsdb      *sinkTsdb = (pItem->level == TSDB_RETENTION_L1 ? pSma->pRSmaTsdb[0] : pSma->pRSmaTsdb[1]);
      SSubmitReq *pReq = NULL;
      // TODO: the schema update should be handled
      if (buildSubmitReqFromDataBlock(&pReq, pResult, pTSchema, SMA_VID(pSma), suid) < 0) {
C
Cary Xu 已提交
605 606
        smaError("vgId:%d, build submit req for rsma stable %" PRIi64 " level %" PRIi8 " failed since %s",
                 SMA_VID(pSma), suid, pItem->level, terrstr());
607 608 609
        goto _err;
      }

610
      if (pReq && tdProcessSubmitReq(sinkTsdb, output->info.version, pReq) < 0) {
611
        taosMemoryFreeClear(pReq);
612
        smaError("vgId:%d, process submit req for rsma stable %" PRIi64 " level %" PRIi8 " failed since %s",
613 614 615
                 SMA_VID(pSma), suid, pItem->level, terrstr());
        goto _err;
      }
616

L
Liu Jicong 已提交
617 618
      smaDebug("vgId:%d, process submit req for rsma table %" PRIi64 " level %" PRIi8 " version:%" PRIi64,
               SMA_VID(pSma), suid, pItem->level, output->info.version);
619

620
      taosMemoryFreeClear(pReq);
621 622 623 624 625
      taosArrayClear(pResult);
    } else if (terrno == 0) {
      smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched yet", SMA_VID(pSma), pItem->level);
    } else {
      smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched since %s", SMA_VID(pSma), pItem->level, tstrerror(terrno));
626 627 628
    }
  }

C
Cary Xu 已提交
629
  tdDestroySDataBlockArray(pResult);
C
Cary Xu 已提交
630 631
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
632
  tdDestroySDataBlockArray(pResult);
C
Cary Xu 已提交
633
  return TSDB_CODE_FAILED;
634 635
}

636 637
static int32_t tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfoItem *pItem,
                                 STSchema *pTSchema, tb_uid_t suid, int8_t level) {
638 639 640 641
  if (!pItem || !pItem->taskInfo) {
    smaDebug("vgId:%d, no qTaskInfo to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, suid);
    return TSDB_CODE_SUCCESS;
  }
642 643 644 645
  if (!pTSchema) {
    smaWarn("vgId:%d, no schema to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, suid);
    return TSDB_CODE_FAILED;
  }
646 647 648 649

  smaDebug("vgId:%d, execute rsma %" PRIi8 " task for qTaskInfo:%p suid:%" PRIu64, SMA_VID(pSma), level,
           pItem->taskInfo, suid);

L
Liu Jicong 已提交
650
  if (qSetMultiStreamInput(pItem->taskInfo, pMsg, 1, inputType) < 0) {  // INPUT__DATA_SUBMIT
651 652 653 654
    smaError("vgId:%d, rsma % " PRIi8 " qSetStreamInput failed since %s", SMA_VID(pSma), level, tstrerror(terrno));
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
655 656 657
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = SMA_RSMA_STAT(pEnv->pStat);

658 659 660 661 662
  tdRSmaFetchAndSubmitResult(pItem, pTSchema, suid, pStat, STREAM_INPUT__DATA_SUBMIT);
  atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);

  if (smaMgmt.tmrHandle) {
    taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
663 664 665
  } else {
    ASSERT(0);
  }
666 667 668 669

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
670 671
/**
 * @brief During async commit, the SRSmaInfo object would be COW from iRSmaInfoHash and write lock should be applied.
C
Cary Xu 已提交
672 673 674 675
 *
 * @param pSma
 * @param suid
 * @return SRSmaInfo*
C
Cary Xu 已提交
676
 */
677 678 679
static SRSmaInfo *tdGetRSmaInfoBySuid(SSma *pSma, int64_t suid) {
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
C
Cary Xu 已提交
680 681
  SRSmaInfo *pRSmaInfo = NULL;

682
  if (!pEnv) {
683
    return NULL;
684 685
  }

686 687 688 689
  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
    return NULL;
  }
690

C
Cary Xu 已提交
691 692 693 694 695 696
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
  if (pRSmaInfo && (pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
    return pRSmaInfo;
  }

  if (RSMA_COMMIT_STAT(pStat) == 0) {
697 698
    return NULL;
  }
C
Cary Xu 已提交
699 700 701 702 703

  // clone the SRSmaInfo from iRsmaInfoHash to rsmaInfoHash if in committing stat
  SRSmaInfo *pCowRSmaInfo = NULL;
  // lock
  taosWLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
  if (!taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t))) {  // 2-phase lock
    void *iRSmaInfo = taosHashGet(RSMA_IMU_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
    if (iRSmaInfo) {
      SRSmaInfo *pIRSmaInfo = *(SRSmaInfo **)iRSmaInfo;
      if (pIRSmaInfo) {
        if (tdCloneRSmaInfo(pSma, pCowRSmaInfo, pIRSmaInfo) < 0) {
          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) {
          taosWUnLockLatch(SMA_ENV_LOCK(pEnv));
          return NULL;
        }
C
Cary Xu 已提交
719 720 721 722 723 724
      }
    }
  }
  // unlock
  taosWUnLockLatch(SMA_ENV_LOCK(pEnv));
  return pCowRSmaInfo;
725 726
}

C
Cary Xu 已提交
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
/**
 * @brief During the drop procedure, only need to delete the object in rsmaInfoHash.
 *
 * @param pSma
 * @param suid
 * @return SRSmaInfo*
 */
void tdRemoveRSmaInfoBySuid(SSma *pSma, int64_t suid) {
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
  SRSmaInfo *pRSmaInfo = NULL;

  if (!pEnv) {
    return;
  }

  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
    return;
  }

  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
  if (pRSmaInfo) {
C
Cary Xu 已提交
750
    if ((pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
C
Cary Xu 已提交
751 752 753 754 755 756 757
      tdFreeRSmaInfo(pSma, pRSmaInfo, true);
    }
    taosHashRemove(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
    smaDebug("vgId:%d, remove from infoHash for table:%" PRIu64 " succeed", SMA_VID(pSma), suid);
  }
}

758 759 760
static int32_t tdExecuteRSma(SSma *pSma, const void *pMsg, int32_t inputType, tb_uid_t suid) {
  SRSmaInfo *pRSmaInfo = tdGetRSmaInfoBySuid(pSma, suid);
  if (!pRSmaInfo) {
C
Cary Xu 已提交
761
    smaDebug("vgId:%d, execute rsma, no rsma info for suid:%" PRIu64, SMA_VID(pSma), suid);
762 763
    return TSDB_CODE_SUCCESS;
  }
764 765

  if (!pRSmaInfo->items[0].taskInfo) {
C
Cary Xu 已提交
766
    smaDebug("vgId:%d, execute rsma, no rsma qTaskInfo for suid:%" PRIu64, SMA_VID(pSma), suid);
767 768 769
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
770
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
C
Cary Xu 已提交
771 772
    tdRefRSmaInfo(pSma, pRSmaInfo);

C
Cary Xu 已提交
773 774
    tdExecuteRSmaImpl(pSma, pMsg, inputType, &pRSmaInfo->items[0], pRSmaInfo->pTSchema, suid, TSDB_RETENTION_L1);
    tdExecuteRSmaImpl(pSma, pMsg, inputType, &pRSmaInfo->items[1], pRSmaInfo->pTSchema, suid, TSDB_RETENTION_L2);
C
Cary Xu 已提交
775 776

    tdUnRefRSmaInfo(pSma, pRSmaInfo);
777 778 779 780 781 782 783 784 785 786 787 788
  }

  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;
  }

789 790 791 792 793 794
  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 已提交
795
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
796 797 798 799
    STbUidStore uidStore = {0};
    tdFetchSubmitReqSuids(pMsg, &uidStore);

    if (uidStore.suid != 0) {
800
      tdExecuteRSma(pSma, pMsg, inputType, uidStore.suid);
801 802 803 804

      void *pIter = taosHashIterate(uidStore.uidHash, NULL);
      while (pIter) {
        tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
805
        tdExecuteRSma(pSma, pMsg, inputType, *pTbSuid);
806 807 808 809 810 811 812 813
        pIter = taosHashIterate(uidStore.uidHash, pIter);
      }

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

C
Cary Xu 已提交
815
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables) {
816 817 818 819
  SVnode *pVnode = pSma->pVnode;

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

C
Cary Xu 已提交
825 826 827 828 829 830
  int64_t arrSize = taosArrayGetSize(suidList);

  if (nTables) {
    *nTables = arrSize;
  }

C
Cary Xu 已提交
831 832 833
  if (arrSize == 0) {
    taosArrayDestroy(suidList);
    smaDebug("vgId:%d, no need to restore rsma env since empty stb id list", TD_VID(pVnode));
834 835 836 837 838
    return TSDB_CODE_SUCCESS;
  }

  SMetaReader mr = {0};
  metaReaderInit(&mr, SMA_META(pSma), 0);
C
Cary Xu 已提交
839
  for (int64_t i = 0; i < arrSize; ++i) {
840
    tb_uid_t suid = *(tb_uid_t *)taosArrayGet(suidList, i);
C
Cary Xu 已提交
841
    smaDebug("vgId:%d, rsma restore, suid is %" PRIi64, TD_VID(pVnode), suid);
842
    if (metaGetTableEntryByUid(&mr, suid) < 0) {
C
Cary Xu 已提交
843 844
      smaError("vgId:%d, rsma restore, failed to get table meta for %" PRIi64 " since %s", TD_VID(pVnode), suid,
               terrstr());
845 846 847 848 849 850
      goto _err;
    }
    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 已提交
851 852 853 854
      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]);
855 856
      }
      if (tdProcessRSmaCreateImpl(pSma, &mr.me.stbEntry.rsmaParam, suid, mr.me.name) < 0) {
C
Cary Xu 已提交
857
        smaError("vgId:%d, rsma restore env failed for %" PRIi64 " since %s", TD_VID(pVnode), suid, terrstr());
858 859
        goto _err;
      }
C
Cary Xu 已提交
860
      smaDebug("vgId:%d, rsma restore env success for %" PRIi64, TD_VID(pVnode), suid);
861 862 863
    }
  }

C
Cary Xu 已提交
864 865 866 867 868 869 870 871 872 873 874
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);

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

  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
875
static int32_t tdRSmaRestoreQTaskInfoReload(SSma *pSma, int64_t *committed) {
C
Cary Xu 已提交
876
  SVnode *pVnode = pSma->pVnode;
C
Cary Xu 已提交
877
  STFile  tFile = {0};
C
Cary Xu 已提交
878
  char    qTaskInfoFName[TSDB_FILENAME_LEN] = {0};
879

C
Cary Xu 已提交
880
  tdRSmaQTaskInfoGetFileName(TD_VID(pVnode), pVnode->state.committed, qTaskInfoFName);
C
Cary Xu 已提交
881
  if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
882 883
    goto _err;
  }
C
Cary Xu 已提交
884 885

  if (!taosCheckExistFile(TD_TFILE_FULL_NAME(&tFile))) {
886
    *committed = 0;
C
Cary Xu 已提交
887 888 889
    if (pVnode->state.committed > 0) {
      smaWarn("vgId:%d, rsma restore for version %" PRIi64 ", not start as %s not exist", TD_VID(pVnode),
              pVnode->state.committed, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
890 891 892 893
    } else {
      smaDebug("vgId:%d, rsma restore for version %" PRIi64 ", no need as %s not exist", TD_VID(pVnode),
               pVnode->state.committed, TD_TFILE_FULL_NAME(&tFile));
    }
C
Cary Xu 已提交
894
    return TSDB_CODE_SUCCESS;
895 896
  }

897 898 899
  if (tdOpenTFile(&tFile, TD_FILE_READ) < 0) {
    goto _err;
  }
C
Cary Xu 已提交
900

901 902 903 904 905 906 907 908
  STFInfo tFileInfo = {0};
  if (tdLoadTFileHeader(&tFile, &tFileInfo) < 0) {
    goto _err;
  }

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

C
Cary Xu 已提交
909
  SRSmaQTaskInfoIter fIter = {0};
910
  if (tdRSmaQTaskInfoIterInit(&fIter, &tFile) < 0) {
C
Cary Xu 已提交
911 912
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
913
    tdDestroyTFile(&tFile);
914 915
    goto _err;
  }
C
Cary Xu 已提交
916

C
Cary Xu 已提交
917
  if (tdRSmaQTaskInfoRestore(pSma, &fIter) < 0) {
C
Cary Xu 已提交
918 919
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
920
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
921 922
    goto _err;
  }
923

C
Cary Xu 已提交
924
  tdRSmaQTaskInfoIterDestroy(&fIter);
C
Cary Xu 已提交
925
  tdCloseTFile(&tFile);
C
Cary Xu 已提交
926
  tdDestroyTFile(&tFile);
C
Cary Xu 已提交
927 928 929 930

  // restored successfully from committed
  *committed = pVnode->state.committed;

C
Cary Xu 已提交
931 932
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
933 934
  smaError("vgId:%d, rsma restore for version %" PRIi64 ", qtaskinfo reload failed since %s", TD_VID(pVnode),
           pVnode->state.committed, terrstr());
C
Cary Xu 已提交
935 936 937 938 939
  return TSDB_CODE_FAILED;
}

/**
 * @brief reload ts data from checkpoint
C
Cary Xu 已提交
940 941
 *
 * @param pSma
C
Cary Xu 已提交
942
 * @param committed restore from committed version
C
Cary Xu 已提交
943
 * @return int32_t
C
Cary Xu 已提交
944
 */
C
Cary Xu 已提交
945
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma, int64_t committed) {
C
Cary Xu 已提交
946
  // NOTHING TODO: the data would be restored from the unified WAL replay procedure
C
Cary Xu 已提交
947 948 949 950 951
  return TSDB_CODE_SUCCESS;
}

int32_t tdProcessRSmaRestoreImpl(SSma *pSma) {
  // step 1: iterate all stables to restore the rsma env
C
Cary Xu 已提交
952
  int64_t nTables = 0;
C
Cary Xu 已提交
953
  if (tdRSmaRestoreQTaskInfoInit(pSma, &nTables) < 0) {
C
Cary Xu 已提交
954 955
    goto _err;
  }
C
Cary Xu 已提交
956

C
Cary Xu 已提交
957 958 959 960
  if (nTables <= 0) {
    smaDebug("vgId:%d, no need to restore rsma task since no tables", SMA_VID(pSma));
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
961 962

  // step 2: retrieve qtaskinfo items from the persistence file(rsma/qtaskinfo) and restore
C
Cary Xu 已提交
963 964
  int64_t committed = -1;
  if (tdRSmaRestoreQTaskInfoReload(pSma, &committed) < 0) {
C
Cary Xu 已提交
965 966 967 968
    goto _err;
  }

  // step 3: reload ts data from checkpoint
969
  if (tdRSmaRestoreTSDataReload(pSma, committed) < 0) {
C
Cary Xu 已提交
970 971 972
    goto _err;
  }

973 974
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
975
  smaError("vgId:%d, failed to restore rsma task since %s", SMA_VID(pSma), terrstr());
976 977 978
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
979 980
/**
 * @brief Restore from SRSmaQTaskInfoItem
C
Cary Xu 已提交
981 982 983 984
 *
 * @param pSma
 * @param pItem
 * @return int32_t
C
Cary Xu 已提交
985
 */
C
Cary Xu 已提交
986
static int32_t tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *pItem) {
987 988 989
  SRSmaInfo *pRSmaInfo = NULL;
  void      *qTaskInfo = NULL;

990 991
  pRSmaInfo = tdGetRSmaInfoBySuid(pSma, pItem->suid);
  if (!pRSmaInfo) {
C
Cary Xu 已提交
992
    smaDebug("vgId:%d, no restore as no rsma info for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
993 994 995
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
996
  if (pItem->type == TSDB_RETENTION_L1) {
997
    qTaskInfo = pRSmaInfo->items[0].taskInfo;
C
Cary Xu 已提交
998
  } else if (pItem->type == TSDB_RETENTION_L2) {
999 1000 1001 1002 1003 1004
    qTaskInfo = pRSmaInfo->items[1].taskInfo;
  } else {
    ASSERT(0);
  }

  if (!qTaskInfo) {
C
Cary Xu 已提交
1005
    smaDebug("vgId:%d, no restore as NULL rsma qTaskInfo for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
1006 1007 1008
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1009 1010
  if (qDeserializeTaskStatus(qTaskInfo, pItem->qTaskInfo, pItem->len) < 0) {
    smaError("vgId:%d, restore rsma task failed for table:%" PRIi64 " level %d since %s", SMA_VID(pSma), pItem->suid,
C
Cary Xu 已提交
1011
             pItem->type, terrstr());
1012 1013
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1014 1015
  smaDebug("vgId:%d, restore rsma task success for table:%" PRIi64 " level %d", SMA_VID(pSma), pItem->suid,
           pItem->type);
1016 1017 1018 1019

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1020
static int32_t tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile) {
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
  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 已提交
1039 1040
  pIter->pBuf = taosMemoryMalloc(pIter->nAlloc);
  if (!pIter->pBuf) {
1041 1042 1043
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1044
  pIter->qBuf = pIter->pBuf;
1045 1046 1047 1048

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1049
static int32_t tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish) {
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
  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 已提交
1066
  if (tdReadTFile(pTFile, pIter->qBuf, nBytes) != nBytes) {
1067 1068 1069 1070
    return TSDB_CODE_FAILED;
  }

  int32_t infoLen = 0;
C
Cary Xu 已提交
1071
  taosDecodeFixedI32(pIter->qBuf, &infoLen);
1072
  if (infoLen > nBytes) {
C
Cary Xu 已提交
1073 1074 1075 1076 1077
    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;
    }
1078
    pIter->nAlloc = infoLen;
C
Cary Xu 已提交
1079
    void *pBuf = taosMemoryRealloc(pIter->pBuf, infoLen);
1080 1081 1082 1083
    if (!pBuf) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1084 1085
    pIter->pBuf = pBuf;
    pIter->qBuf = pIter->pBuf;
1086 1087 1088 1089 1090 1091
    nBytes = infoLen;

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

C
Cary Xu 已提交
1092
    if (tdReadTFile(pTFile, pIter->pBuf, nBytes) != nBytes) {
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
      return TSDB_CODE_FAILED;
    }
  }

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

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1104
static int32_t tdRSmaQTaskInfoRestore(SSma *pSma, SRSmaQTaskInfoIter *pIter) {
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
  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 已提交
1117 1118
    pIter->qBuf = taosDecodeFixedI32(pIter->qBuf, &qTaskInfoLenWithHead);
    if (qTaskInfoLenWithHead < RSMA_QTASKINFO_HEAD_LEN) {
1119
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
C
Cary Xu 已提交
1120 1121
      smaError("vgId:%d, restore rsma qtaskinfo file %s failed since %s", SMA_VID(pSma),
               TD_TFILE_FULL_NAME(pIter->pTFile), terrstr());
1122 1123
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1124

1125 1126
    while (1) {
      if ((pIter->nBufPos + qTaskInfoLenWithHead) <= pIter->nBytes) {
C
Cary Xu 已提交
1127 1128 1129 1130 1131
        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);
1132
        // do the restore job
C
Cary Xu 已提交
1133 1134 1135
        smaDebug("vgId:%d, restore the qtask info %s offset:%" PRIi64 "\n", SMA_VID(pSma),
                 TD_TFILE_FULL_NAME(pIter->pTFile), pIter->offset - pIter->nBytes + pIter->nBufPos);
        tdRSmaQTaskInfoItemRestore(pSma, &infoItem);
1136

C
Cary Xu 已提交
1137
        pIter->qBuf = POINTER_SHIFT(pIter->qBuf, infoItem.len);
1138 1139
        pIter->nBufPos += qTaskInfoLenWithHead;

C
Cary Xu 已提交
1140 1141 1142 1143 1144 1145 1146
        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);
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
        continue;
      }
      // prepare and load next block in the file
      pIter->offset -= (pIter->nBytes - pIter->nBufPos);
      break;
    }
  }

  return TSDB_CODE_SUCCESS;
}
C
Cary Xu 已提交
1157

C
Cary Xu 已提交
1158
int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
C
Cary Xu 已提交
1159 1160 1161 1162 1163
  SSma   *pSma = pRSmaStat->pSma;
  SVnode *pVnode = pSma->pVnode;
  int32_t vid = SMA_VID(pSma);
  int64_t toffset = 0;
  bool    isFileCreated = false;
C
Cary Xu 已提交
1164

C
Cary Xu 已提交
1165
  if (taosHashGetSize(pInfoHash) <= 0) {
1166 1167 1168
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1169
  void *infoHash = taosHashIterate(pInfoHash, NULL);
C
Cary Xu 已提交
1170
  if (!infoHash) {
C
Cary Xu 已提交
1171
    return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1172 1173 1174
  }

  STFile tFile = {0};
C
Cary Xu 已提交
1175 1176
#if 0
  if (pRSmaStat->commitAppliedVer > 0) {
1177
    char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1178
    tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
    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 已提交
1191
#endif
1192

C
Cary Xu 已提交
1193 1194 1195 1196 1197
  while (infoHash) {
    SRSmaInfo *pRSmaInfo = *(SRSmaInfo **)infoHash;
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
      qTaskInfo_t taskInfo = pRSmaInfo->items[i].taskInfo;
      if (!taskInfo) {
1198
        smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d qTaskInfo is NULL", vid, pRSmaInfo->suid, i + 1);
C
Cary Xu 已提交
1199 1200 1201 1202 1203 1204 1205
        continue;
      }

      char   *pOutput = NULL;
      int32_t len = 0;
      int8_t  type = (int8_t)(i + 1);
      if (qSerializeTaskStatus(taskInfo, &pOutput, &len) < 0) {
1206
        smaError("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo failed since %s", vid, pRSmaInfo->suid,
C
Cary Xu 已提交
1207
                 i + 1, terrstr());
C
Cary Xu 已提交
1208 1209 1210
        goto _err;
      }
      if (!pOutput || len <= 0) {
1211 1212
        smaDebug("vgId:%d, rsma, table %" PRIi64
                 " level %d serialize qTaskInfo success but no output(len %d), not persist",
C
Cary Xu 已提交
1213 1214 1215 1216 1217
                 vid, pRSmaInfo->suid, i + 1, len);
        taosMemoryFreeClear(pOutput);
        continue;
      }

1218
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo success with len %d, need persist", vid,
C
Cary Xu 已提交
1219 1220 1221 1222
               pRSmaInfo->suid, i + 1, len);

      if (!isFileCreated) {
        char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1223
        tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
C
Cary Xu 已提交
1224
        if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
C
Cary Xu 已提交
1225
          smaError("vgId:%d, rsma persit, init %s failed since %s", vid, qTaskInfoFName, terrstr());
C
Cary Xu 已提交
1226 1227
          goto _err;
        }
1228
        if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
C
Cary Xu 已提交
1229
          smaError("vgId:%d, rsma persit, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
C
Cary Xu 已提交
1230 1231
          goto _err;
        }
1232 1233
        smaDebug("vgId:%d, rsma, table %" PRIi64 " serialize qTaskInfo, file %s created", vid, pRSmaInfo->suid,
                 TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246

        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);
1247
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d head part(len:%d) appended to offset:%" PRIi64, vid,
1248
               pRSmaInfo->suid, i + 1, headLen, toffset);
C
Cary Xu 已提交
1249
      tdAppendTFile(&tFile, pOutput, len, &toffset);
1250 1251
      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 已提交
1252 1253 1254 1255

      taosMemoryFree(pOutput);
    }

C
Cary Xu 已提交
1256
    infoHash = taosHashIterate(pInfoHash, infoHash);
C
Cary Xu 已提交
1257
  }
C
Cary Xu 已提交
1258

C
Cary Xu 已提交
1259 1260
  if (isFileCreated) {
    if (tdUpdateTFileHeader(&tFile) < 0) {
1261
      smaError("vgId:%d, rsma, failed to update tfile %s header since %s", vid, TD_TFILE_FULL_NAME(&tFile),
C
Cary Xu 已提交
1262 1263 1264
               tstrerror(terrno));
      goto _err;
    } else {
1265
      smaDebug("vgId:%d, rsma, succeed to update tfile %s header", vid, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1266 1267 1268
    }

    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1269
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1270
  }
C
Cary Xu 已提交
1271
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1272
_err:
C
Cary Xu 已提交
1273
  smaError("vgId:%d, rsma persit failed since %s", vid, terrstr());
C
Cary Xu 已提交
1274 1275
  if (isFileCreated) {
    tdRemoveTFile(&tFile);
C
Cary Xu 已提交
1276 1277 1278 1279 1280
    tdDestroyTFile(&tFile);
  }
  return TSDB_CODE_FAILED;
}

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303
/**
 * @brief trigger to get rsma result
 *
 * @param param
 * @param tmrId
 */
static void tdRSmaFetchTrigger(void *param, void *tmrId) {
  SRSmaInfoItem *pItem = param;
  SSma          *pSma = NULL;
  SRSmaStat     *pStat = (SRSmaStat *)tdAcquireSmaRef(smaMgmt.rsetId, pItem->refId, __func__, __LINE__);

  if (!pStat) {
    smaDebug("rsma fetch task not start since already destroyed, rsetId rsetId:%" PRIi64 " refId:%d)", smaMgmt.rsetId,
             pItem->refId);
    return;
  }

  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:
1304
    case TASK_TRIGGER_STAT_CANCELLED: {
1305 1306 1307 1308
      tdReleaseSmaRef(smaMgmt.rsetId, pItem->refId, __func__, __LINE__);
      smaDebug("vgId:%d, not fetch rsma level %" PRIi8 " data since stat is %" PRIi8 ", rsetId rsetId:%" PRIi64
               " refId:%d",
               SMA_VID(pSma), pItem->level, rsmaTriggerStat, smaMgmt.rsetId, pItem->refId);
C
Cary Xu 已提交
1309 1310 1311 1312
      if (rsmaTriggerStat == TASK_TRIGGER_STAT_PAUSED) {
        taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay > 5000 ? 5000 : pItem->maxDelay, pItem, smaMgmt.tmrHandle,
                     &pItem->tmrId);
      }
1313 1314 1315 1316 1317 1318 1319
      return;
    }
    default:
      break;
  }

  SRSmaInfo *pRSmaInfo = tdGetRSmaInfoByItem(pItem);
C
Cary Xu 已提交
1320 1321 1322
  if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
    goto _end;
  }
1323 1324 1325 1326 1327 1328 1329 1330

  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: {
      smaDebug("vgId:%d, fetch rsma level %" PRIi8 " data for table:%" PRIi64 " since stat is active", SMA_VID(pSma),
               pItem->level, pRSmaInfo->suid);

C
Cary Xu 已提交
1331 1332
      // sync procedure => async process
      tdRefRSmaInfo(pSma, pRSmaInfo);
1333 1334

      SSDataBlock dataBlock = {.info.type = STREAM_GET_ALL};
L
Liu Jicong 已提交
1335
      qSetMultiStreamInput(pItem->taskInfo, &dataBlock, 1, STREAM_INPUT__DATA_BLOCK);
1336 1337
      tdRSmaFetchAndSubmitResult(pItem, pRSmaInfo->pTSchema, pRSmaInfo->suid, pStat, STREAM_INPUT__DATA_BLOCK);

C
Cary Xu 已提交
1338
      tdUnRefRSmaInfo(pSma, pRSmaInfo);
1339 1340
      // atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);
      // taosTmrReset(tdRSmaFetchTrigger, 5000, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
    } break;
    case TASK_TRIGGER_STAT_PAUSED: {
      smaDebug("vgId:%d, not fetch rsma level %" PRIi8 " data for table:%" PRIi64 " since stat is paused",
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INACTIVE: {
      smaDebug("vgId:%d, not fetch rsma level %" PRIi8 " data for table:%" PRIi64 " since stat is inactive",
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INIT: {
      smaDebug("vgId:%d, not fetch rsma level %" PRIi8 " data for table:%" PRIi64 " since stat is init", SMA_VID(pSma),
               pItem->level, pRSmaInfo->suid);
    } break;
    default: {
      smaWarn("vgId:%d, not fetch rsma level %" PRIi8 " data for table:%" PRIi64 " since stat is unknown",
              SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
  }

_end:
  tdReleaseSmaRef(smaMgmt.rsetId, pItem->refId, __func__, __LINE__);
L
Liu Jicong 已提交
1362
}
C
Cary Xu 已提交
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

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;
}