smaRollup.c 64.5 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 20 21
#define RSMA_QTASKINFO_BUFSIZE     (32768)                                               // size
#define RSMA_QTASKINFO_HEAD_LEN    (sizeof(int32_t) + sizeof(int8_t) + sizeof(int64_t))  // len + type + suid
#define RSMA_QTASKEXEC_SMOOTH_SIZE (100)                                                 // cnt
#define RSMA_SUBMIT_BATCH_SIZE     (1024)                                                // cnt
C
Cary Xu 已提交
22
#define RSMA_FETCH_DELAY_MAX       (120000)                                              // ms
23
#define RSMA_FETCH_ACTIVE_MAX      (1000)                                                // ms
24
#define RSMA_FETCH_INTERVAL        (5000)                                                // ms
C
Cary Xu 已提交
25

26
SSmaMgmt smaMgmt = {
C
Cary Xu 已提交
27 28
    .inited = 0,
    .rsetId = -1,
29 30
};

C
Cary Xu 已提交
31 32
#define TD_QTASKINFO_FNAME_PREFIX "qinf.v"

33
typedef struct SRSmaQTaskInfoItem SRSmaQTaskInfoItem;
C
Cary Xu 已提交
34
typedef struct SRSmaQTaskInfoIter SRSmaQTaskInfoIter;
35

36
static int32_t    tdUidStorePut(STbUidStore *pStore, tb_uid_t suid, tb_uid_t *uid);
37
static int32_t    tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids, bool isAdd);
38
static int32_t    tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
39
                                          int8_t idx);
C
Cary Xu 已提交
40
static int32_t    tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t msgSize, int32_t inputType, SRSmaInfo *pInfo,
C
Cary Xu 已提交
41
                                    ERsmaExecType type, int8_t level);
C
Cary Xu 已提交
42 43
static SRSmaInfo *tdAcquireRSmaInfoBySuid(SSma *pSma, int64_t suid);
static void       tdReleaseRSmaInfo(SSma *pSma, SRSmaInfo *pInfo);
C
Cary Xu 已提交
44
static void       tdFreeRSmaSubmitItems(SArray *pItems);
45
static int32_t    tdRSmaFetchAllResult(SSma *pSma, SRSmaInfo *pInfo);
C
Cary Xu 已提交
46 47
static int32_t    tdRSmaExecAndSubmitResult(SSma *pSma, qTaskInfo_t taskInfo, SRSmaInfoItem *pItem, STSchema *pTSchema,
                                            int64_t suid);
C
Cary Xu 已提交
48
static void       tdRSmaFetchTrigger(void *param, void *tmrId);
49 50
static int32_t    tdRSmaInfoClone(SSma *pSma, SRSmaInfo *pInfo);
static void       tdRSmaQTaskInfoFree(qTaskInfo_t *taskHandle, int32_t vgId, int32_t level);
C
Cary Xu 已提交
51 52 53 54 55 56 57
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 已提交
58

59 60
static SRSmaInfo *tdGetRSmaInfoByItem(SRSmaInfoItem *pItem) {
  // adapt accordingly if definition of SRSmaInfo update
61 62
  SRSmaInfo *pResult = NULL;
  ASSERT(pItem->level == TSDB_RETENTION_L1 || pItem->level == TSDB_RETENTION_L2);
C
Cary Xu 已提交
63
  pResult = (SRSmaInfo *)POINTER_SHIFT(pItem, -(sizeof(SRSmaInfoItem) * (pItem->level - 1) + RSMA_INFO_HEAD_LEN));
64 65
  ASSERT(pResult->pTSchema->numOfCols > 1);
  return pResult;
66
}
67

68 69 70 71 72 73 74
struct SRSmaQTaskInfoItem {
  int32_t len;
  int8_t  type;
  int64_t suid;
  void   *qTaskInfo;
};

C
Cary Xu 已提交
75
struct SRSmaQTaskInfoIter {
76 77 78 79 80
  STFile *pTFile;
  int64_t offset;
  int64_t fsize;
  int32_t nBytes;
  int32_t nAlloc;
C
Cary Xu 已提交
81
  char   *pBuf;
82
  // ------------
C
Cary Xu 已提交
83
  char   *qBuf;  // for iterator
84 85 86
  int32_t nBufPos;
};

C
Cary Xu 已提交
87
void tdRSmaQTaskInfoGetFileName(int32_t vgId, int64_t version, char *outputName) {
C
Cary Xu 已提交
88
  tdGetVndFileName(vgId, NULL, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
89 90
}

91
void tdRSmaQTaskInfoGetFullName(int32_t vgId, int64_t version, const char *path, char *outputName) {
C
Cary Xu 已提交
92 93 94
  tdGetVndFileName(vgId, path, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
}

95 96 97 98 99 100 101 102 103 104 105 106
void tdRSmaQTaskInfoGetFullPath(int32_t vgId, int8_t level, const char *path, char *outputName) {
  tdGetVndDirName(vgId, path, VNODE_RSMA_DIR, true, outputName);
  int32_t rsmaLen = strlen(outputName);
  snprintf(outputName + rsmaLen, TSDB_FILENAME_LEN - rsmaLen, "%" PRIi8, level);
}

void tdRSmaQTaskInfoGetFullPathEx(int32_t vgId, tb_uid_t suid, int8_t level, const char *path, char *outputName) {
  tdGetVndDirName(vgId, path, VNODE_RSMA_DIR, true, outputName);
  int32_t rsmaLen = strlen(outputName);
  snprintf(outputName + rsmaLen, TSDB_FILENAME_LEN - rsmaLen, "%" PRIi64 "%s%" PRIi8, suid, TD_DIRSEP, level);
}

C
Cary Xu 已提交
107
static FORCE_INLINE int32_t tdRSmaQTaskInfoContLen(int32_t lenWithHead) {
C
Cary Xu 已提交
108
  return lenWithHead - RSMA_QTASKINFO_HEAD_LEN;
C
Cary Xu 已提交
109 110
}

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

113
static void tdRSmaQTaskInfoFree(qTaskInfo_t *taskHandle, int32_t vgId, int32_t level) {
114
  // Note: free/kill may in RC
C
Cary Xu 已提交
115
  if (!taskHandle || !(*taskHandle)) return;
116 117
  qTaskInfo_t otaskHandle = atomic_load_ptr(taskHandle);
  if (otaskHandle && atomic_val_compare_exchange_ptr(taskHandle, otaskHandle, NULL)) {
C
Cary Xu 已提交
118
    smaDebug("vgId:%d, free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
119
    qDestroyTask(otaskHandle);
C
Cary Xu 已提交
120
  } else {
C
Cary Xu 已提交
121
    smaDebug("vgId:%d, not free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
122
  }
C
Cary Xu 已提交
123
  // TODO: clear files related to qTaskInfo?
124 125
}

C
Cary Xu 已提交
126 127 128 129 130 131 132 133 134
/**
 * @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) {
135
  if (pInfo) {
C
Cary Xu 已提交
136
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
137
      SRSmaInfoItem *pItem = &pInfo->items[i];
C
Cary Xu 已提交
138

C
Cary Xu 已提交
139
      if (isDeepFree && pItem->tmrId) {
C
Cary Xu 已提交
140 141
        smaDebug("vgId:%d, stop fetch timer %p for table %" PRIi64 " level %d", SMA_VID(pSma), pItem->tmrId,
                 pInfo->suid, i + 1);
C
Cary Xu 已提交
142 143 144
        taosTmrStopA(&pItem->tmrId);
      }

145 146 147 148
      if (isDeepFree && pItem->pStreamState) {
        streamStateClose(pItem->pStreamState);
      }

C
Cary Xu 已提交
149
      if (isDeepFree && pInfo->taskInfo[i]) {
C
Cary Xu 已提交
150
        tdRSmaQTaskInfoFree(&pInfo->taskInfo[i], SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
151
      } else {
C
Cary Xu 已提交
152
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty taskInfo", SMA_VID(pSma),
153
                 pInfo->suid, i + 1);
154
      }
C
Cary Xu 已提交
155 156

      if (pInfo->iTaskInfo[i]) {
C
Cary Xu 已提交
157
        tdRSmaQTaskInfoFree(&pInfo->iTaskInfo[i], SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
158
      } else {
C
Cary Xu 已提交
159 160
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty iTaskInfo",
                 SMA_VID(pSma), pInfo->suid, i + 1);
C
Cary Xu 已提交
161
      }
162
    }
C
Cary Xu 已提交
163
    if (isDeepFree) {
C
Cary Xu 已提交
164
      taosMemoryFreeClear(pInfo->pTSchema);
C
Cary Xu 已提交
165
    }
C
Cary Xu 已提交
166 167 168 169

    if (isDeepFree) {
      if (pInfo->queue) taosCloseQueue(pInfo->queue);
      if (pInfo->qall) taosFreeQall(pInfo->qall);
C
Cary Xu 已提交
170 171
      if (pInfo->iQueue) taosCloseQueue(pInfo->iQueue);
      if (pInfo->iQall) taosFreeQall(pInfo->iQall);
C
Cary Xu 已提交
172 173
      pInfo->queue = NULL;
      pInfo->qall = NULL;
C
Cary Xu 已提交
174 175
      pInfo->iQueue = NULL;
      pInfo->iQall = NULL;
C
Cary Xu 已提交
176 177
    }

C
Cary Xu 已提交
178 179
    taosMemoryFree(pInfo);
  }
180

181 182 183 184 185 186 187 188 189 190 191 192 193
  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;
}

194
static int32_t tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids, bool isAdd) {
195 196 197 198
  SRSmaInfo *pRSmaInfo = NULL;

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

C
Cary Xu 已提交
203 204 205 206 207
  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 已提交
208
  pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, *suid);
209 210

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

C
Cary Xu 已提交
216 217
  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pRSmaInfo->taskInfo[i]) {
218
      if (((terrno = qUpdateQualifiedTableId(pRSmaInfo->taskInfo[i], tbUids, isAdd)) < 0)) {
C
Cary Xu 已提交
219
        tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
220 221 222 223 224 225 226
        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 已提交
227
    }
228 229
  }

C
Cary Xu 已提交
230
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
231 232 233
  return TSDB_CODE_SUCCESS;
}

234
int32_t tdUpdateTbUidList(SSma *pSma, STbUidStore *pStore, bool isAdd) {
235 236 237 238
  if (!pStore || (taosArrayGetSize(pStore->tbUids) == 0)) {
    return TSDB_CODE_SUCCESS;
  }

239
  if (tdUpdateTbUidListImpl(pSma, &pStore->suid, pStore->tbUids, isAdd) != TSDB_CODE_SUCCESS) {
240 241 242 243 244 245 246 247
    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;

248
    if (tdUpdateTbUidListImpl(pSma, pTbSuid, pTbUids, isAdd) != TSDB_CODE_SUCCESS) {
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
      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 已提交
275 276 277
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  if (!pStat || !(infoHash = RSMA_INFO_HASH(pStat))) {
C
Cary Xu 已提交
278
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
279 280 281 282 283 284 285 286 287 288 289
    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)) {
290
    if (tdUidStoreInit(ppStore) < 0) {
291 292 293 294
      return TSDB_CODE_FAILED;
    }
  }

295
  if (tdUidStorePut(*ppStore, suid, &uid) < 0) {
296 297 298 299 300 301 302
    *ppStore = tdUidStoreFree(*ppStore);
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

303
static int32_t tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
304
                                       int8_t idx) {
C
Cary Xu 已提交
305 306 307
  if ((param->qmsgLen > 0) && param->qmsg[idx]) {
    SRetention *pRetention = SMA_RETENTION(pSma);
    STsdbCfg   *pTsdbCfg = SMA_TSDB_CFG(pSma);
C
Cary Xu 已提交
308
    SVnode     *pVnode = pSma->pVnode;
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
    char        taskInfDir[TSDB_FILENAME_LEN] = {0};
    void       *pStreamState = NULL;

    // set the backend of stream state
    tdRSmaQTaskInfoGetFullPathEx(TD_VID(pVnode), pRSmaInfo->suid, idx + 1, tfsGetPrimaryPath(pVnode->pTfs), taskInfDir);
    if (!taosCheckExistFile(taskInfDir)) {
      char *s = strdup(taskInfDir);
      if (taosMulMkDir(taosDirName(s)) != 0) {
        terrno = TAOS_SYSTEM_ERROR(errno);
        taosMemoryFree(s);
        return TSDB_CODE_FAILED;
      }
      taosMemoryFree(s);
    }
    pStreamState = streamStateOpen(taskInfDir, NULL, true);
    if (!pStreamState) {
      terrno = TSDB_CODE_RSMA_STREAM_STATE_OPEN;
      return TSDB_CODE_FAILED;
    }
    

C
Cary Xu 已提交
330
    SReadHandle handle = {
C
Cary Xu 已提交
331 332
        .meta = pVnode->pMeta,
        .vnode = pVnode,
C
Cary Xu 已提交
333
        .initTqReader = 1,
334
        .pStateBackend = pStreamState,
C
Cary Xu 已提交
335
    };
C
Cary Xu 已提交
336 337
    pRSmaInfo->taskInfo[idx] = qCreateStreamExecTaskInfo(param->qmsg[idx], &handle);
    if (!pRSmaInfo->taskInfo[idx]) {
C
Cary Xu 已提交
338
      terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
C
Cary Xu 已提交
339
      return TSDB_CODE_FAILED;
C
Cary Xu 已提交
340
    }
C
Cary Xu 已提交
341
    SRSmaInfoItem *pItem = &(pRSmaInfo->items[idx]);
342
    pItem->triggerStat = TASK_TRIGGER_STAT_ACTIVE;  // fetch the data when reboot
343
    pItem->pStreamState = pStreamState;
C
Cary Xu 已提交
344 345 346
    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 已提交
347
      pItem->maxDelay = (int32_t)msInterval;
C
Cary Xu 已提交
348
    } else {
C
Cary Xu 已提交
349
      pItem->maxDelay = (int32_t)param->maxdelay[idx];
C
Cary Xu 已提交
350
    }
C
Cary Xu 已提交
351 352
    if (pItem->maxDelay > TSDB_MAX_ROLLUP_MAX_DELAY) {
      pItem->maxDelay = TSDB_MAX_ROLLUP_MAX_DELAY;
C
Cary Xu 已提交
353
    }
C
Cary Xu 已提交
354

355
    pItem->level = idx == 0 ? TSDB_RETENTION_L1 : TSDB_RETENTION_L2;
356 357 358 359 360
    ASSERT(pItem->level > 0);

    SRSmaRef rsmaRef = {.refId = pStat->refId, .suid = pRSmaInfo->suid};
    taosHashPut(smaMgmt.refHash, &pItem, POINTER_BYTES, &rsmaRef, sizeof(rsmaRef));

361 362
    pItem->fetchLevel = pItem->level;
    taosTmrReset(tdRSmaFetchTrigger, RSMA_FETCH_INTERVAL, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
363 364

    smaInfo("vgId:%d, item:%p table:%" PRIi64 " level:%" PRIi8 " maxdelay:%" PRIi64 " watermark:%" PRIi64
365
            ", finally maxdelay:%" PRIi32,
366 367
            TD_VID(pVnode), pItem, pRSmaInfo->suid, idx + 1, param->maxdelay[idx], param->watermark[idx],
            pItem->maxDelay);
C
Cary Xu 已提交
368 369 370 371
  }
  return TSDB_CODE_SUCCESS;
}

372
/**
373
 * @brief for rsam create or restore
374
 *
375 376 377 378
 * @param pSma
 * @param param
 * @param suid
 * @param tbName
379 380
 * @return int32_t
 */
381
int32_t tdRSmaProcessCreateImpl(SSma *pSma, SRSmaParam *param, int64_t suid, const char *tbName) {
382
  if ((param->qmsgLen[0] == 0) && (param->qmsgLen[1] == 0)) {
383
    smaDebug("vgId:%d, no qmsg1/qmsg2 for rollup table %s %" PRIi64, SMA_VID(pSma), tbName, suid);
384 385 386
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
387
  if (tdCheckAndInitSmaEnv(pSma, TSDB_SMA_TYPE_ROLLUP) != TSDB_CODE_SUCCESS) {
388 389 390 391 392
    terrno = TSDB_CODE_TDB_INIT_FAILED;
    return TSDB_CODE_FAILED;
  }

  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
C
Cary Xu 已提交
393
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
394 395
  SRSmaInfo *pRSmaInfo = NULL;

396
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
397
  if (pRSmaInfo) {
398 399 400 401 402 403 404
    // 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);
405 406
  }

407
  // from write queue: single thead
408 409 410 411 412 413
  pRSmaInfo = (SRSmaInfo *)taosMemoryCalloc(1, sizeof(SRSmaInfo));
  if (!pRSmaInfo) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }

414
  STSchema *pTSchema = metaGetTbTSchema(SMA_META(pSma), suid, -1);
415 416 417 418
  if (!pTSchema) {
    terrno = TSDB_CODE_TDB_IVD_TB_SCHEMA_VERSION;
    goto _err;
  }
C
Cary Xu 已提交
419
  pRSmaInfo->pSma = pSma;
420
  pRSmaInfo->pTSchema = pTSchema;
C
Cary Xu 已提交
421 422
  pRSmaInfo->suid = suid;
  T_REF_INIT_VAL(pRSmaInfo, 1);
C
Cary Xu 已提交
423 424 425
  if (!(pRSmaInfo->queue = taosOpenQueue())) {
    goto _err;
  }
C
Cary Xu 已提交
426

C
Cary Xu 已提交
427 428 429
  if (!(pRSmaInfo->qall = taosAllocateQall())) {
    goto _err;
  }
C
Cary Xu 已提交
430 431 432 433 434 435
  if (!(pRSmaInfo->iQueue = taosOpenQueue())) {
    goto _err;
  }
  if (!(pRSmaInfo->iQall = taosAllocateQall())) {
    goto _err;
  }
436

L
Liu Jicong 已提交
437
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 0) < 0) {
C
Cary Xu 已提交
438 439
    goto _err;
  }
C
Cary Xu 已提交
440

L
Liu Jicong 已提交
441
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 1) < 0) {
C
Cary Xu 已提交
442 443
    goto _err;
  }
444

445
  if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pRSmaInfo, sizeof(pRSmaInfo)) < 0) {
446
    goto _err;
447 448
  }

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

451
  return TSDB_CODE_SUCCESS;
452
_err:
C
Cary Xu 已提交
453
  tdFreeRSmaInfo(pSma, pRSmaInfo, true);
454
  return TSDB_CODE_FAILED;
455 456
}

457
/**
C
Cary Xu 已提交
458
 * @brief Check and init qTaskInfo_t, only applicable to stable with SRSmaParam currently
459
 *
460
 * @param pSma
461 462 463
 * @param pReq
 * @return int32_t
 */
464 465
int32_t tdProcessRSmaCreate(SSma *pSma, SVCreateStbReq *pReq) {
  SVnode *pVnode = pSma->pVnode;
466
  if (!pReq->rollup) {
467 468 469 470 471 472 473 474
    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);
475 476 477
    return TSDB_CODE_SUCCESS;
  }

478
  return tdRSmaProcessCreateImpl(pSma, &pReq->rsmaParam, pReq->suid, pReq->name);
479 480
}

481 482 483 484 485 486 487
/**
 * @brief drop cache for stb
 *
 * @param pSma
 * @param pReq
 * @return int32_t
 */
L
Liu Jicong 已提交
488
int32_t tdProcessRSmaDrop(SSma *pSma, SVDropStbReq *pReq) {
489 490
  SVnode *pVnode = pSma->pVnode;
  if (!VND_IS_RSMA(pVnode)) {
C
Cary Xu 已提交
491
    smaTrace("vgId:%d, not drop rsma for stable %s %" PRIi64 " since vnd is not rsma", TD_VID(pVnode), pReq->name,
492 493 494 495
             pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
496 497 498 499 500
  SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
  if (!pSmaEnv) {
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
501
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pSmaEnv);
C
Cary Xu 已提交
502

C
Cary Xu 已提交
503
  SRSmaInfo *pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pReq->suid);
C
Cary Xu 已提交
504 505 506 507 508 509 510 511

  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
512
  atomic_store_8(&pRSmaStat->delFlag, 1);
C
Cary Xu 已提交
513 514 515
  RSMA_INFO_SET_DEL(pRSmaInfo);
  tdUnRefRSmaInfo(pSma, pRSmaInfo);

C
Cary Xu 已提交
516
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
517

C
Cary Xu 已提交
518 519
  // save to file
  // TODO
520 521
  smaDebug("vgId:%d, drop rsma for table %" PRIi64 " succeed", TD_VID(pVnode), pReq->suid);
  return TSDB_CODE_SUCCESS;
L
Liu Jicong 已提交
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 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
/**
 * @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;
        }
571
        if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), &pUidArray, sizeof(pUidArray)) < 0) {
572 573 574 575
          return TSDB_CODE_FAILED;
        }
      }
    } else {
576
      if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), NULL, 0) < 0) {
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
        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;
}

C
Cary Xu 已提交
610 611 612 613 614 615 616 617
/**
 * @brief The SubmitReq for rsma L2/L3 is inserted by tsdbInsertData method directly while not by WriteQ, as the queue
 * would be freed when close Vnode, thus lock should be used if with race condition.
 * @param pTsdb
 * @param version
 * @param pReq
 * @return int32_t
 */
618 619 620 621 622 623 624
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;
C
Cary Xu 已提交
625
  // TODO: spin lock for race conditiond
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
  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 已提交
641 642 643
  if (tInitSubmitMsgIter(pMsg, &msgIter) < 0) {
    return -1;
  }
644
  while (true) {
C
Cary Xu 已提交
645 646 647
    if (tGetSubmitMsgNext(&msgIter, &pBlock) < 0) {
      return -1;
    }
648 649 650 651 652

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

C
Cary Xu 已提交
653 654 655
  if (terrno != TSDB_CODE_SUCCESS) {
    return -1;
  }
656 657 658
  return 0;
}

C
Cary Xu 已提交
659 660
/**
 * @brief retention of rsma1/rsma2
C
Cary Xu 已提交
661 662 663
 *
 * @param pSma
 * @param now
664
 * @param maxSpeed
C
Cary Xu 已提交
665
 * @return int32_t
C
Cary Xu 已提交
666
 */
667
int32_t smaDoRetention(SSma *pSma, int64_t now, int64_t maxSpeed) {
C
Cary Xu 已提交
668
  int32_t code = TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
669
  if (!VND_IS_RSMA(pSma->pVnode)) {
C
Cary Xu 已提交
670 671 672 673 674
    return code;
  }

  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pSma->pRSmaTsdb[i]) {
675
      code = tsdbDoRetention(pSma->pRSmaTsdb[i], now, maxSpeed);
C
Cary Xu 已提交
676 677 678 679 680 681 682 683
      if (code) goto _end;
    }
  }

_end:
  return code;
}

C
Cary Xu 已提交
684 685
static int32_t tdRSmaExecAndSubmitResult(SSma *pSma, qTaskInfo_t taskInfo, SRSmaInfoItem *pItem, STSchema *pTSchema,
                                         int64_t suid) {
H
Haojun Liao 已提交
686 687 688 689 690
  SArray *pResList = taosArrayInit(1, POINTER_BYTES);
  if (pResList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }
691

H
Haojun Liao 已提交
692 693
  while (1) {
    uint64_t ts;
694
    int32_t  code = qExecTaskOpt(taskInfo, pResList, &ts, NULL);
C
Cary Xu 已提交
695
    if (code < 0) {
C
Cary Xu 已提交
696 697 698 699 700 701 702
      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;
      }
703
    }
C
Cary Xu 已提交
704

H
Haojun Liao 已提交
705 706
    if (taosArrayGetSize(pResList) == 0) {
      if (terrno == 0) {
707
        // smaDebug("vgId:%d, no rsma level %" PRIi8 " data fetched yet", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
708
      } else {
709
        smaDebug("vgId:%d, no rsma level %" PRIi8 " data fetched since %s", SMA_VID(pSma), pItem->level, terrstr());
H
Haojun Liao 已提交
710 711 712 713
        goto _err;
      }

      break;
C
Cary Xu 已提交
714
    } else {
715
      smaDebug("vgId:%d, rsma level %" PRIi8 " data fetched", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
716
    }
C
Cary Xu 已提交
717
#if 0
C
Cary Xu 已提交
718 719 720
    char flag[10] = {0};
    snprintf(flag, 10, "level %" PRIi8, pItem->level);
    blockDebugShowDataBlocks(pResList, flag);
C
Cary Xu 已提交
721
#endif
C
Cary Xu 已提交
722 723 724 725 726 727 728
    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) {
729 730
        smaError("vgId:%d, build submit req for rsma table %" PRIi64 " level %" PRIi8 " failed since %s", SMA_VID(pSma),
                 suid, pItem->level, terrstr());
C
Cary Xu 已提交
731 732
        goto _err;
      }
733

C
Cary Xu 已提交
734 735
      if (pReq && tdProcessSubmitReq(sinkTsdb, output->info.version, pReq) < 0) {
        taosMemoryFreeClear(pReq);
736
        smaError("vgId:%d, process submit req for rsma table %" PRIi64 " level %" PRIi8 " failed since %s",
C
Cary Xu 已提交
737 738 739
                 SMA_VID(pSma), suid, pItem->level, terrstr());
        goto _err;
      }
C
Cary Xu 已提交
740

741 742 743 744
      smaDebug("vgId:%d, process submit req for rsma table %" PRIi64 " level %" PRIi8 " ver %" PRIi64 " len %" PRIu32,
               SMA_VID(pSma), suid, pItem->level, output->info.version, htonl(pReq->header.contLen));

      taosMemoryFreeClear(pReq);
C
Cary Xu 已提交
745
    }
746 747
  }

H
Haojun Liao 已提交
748
  taosArrayDestroy(pResList);
C
Cary Xu 已提交
749
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
750

C
Cary Xu 已提交
751
_err:
H
Haojun Liao 已提交
752
  taosArrayDestroy(pResList);
C
Cary Xu 已提交
753
  return TSDB_CODE_FAILED;
754 755
}

C
Cary Xu 已提交
756
/**
C
Cary Xu 已提交
757
 * @brief Copy msg to rsmaQueueBuffer for batch process
C
Cary Xu 已提交
758 759 760 761 762 763 764 765 766 767 768 769
 *
 * @param pSma
 * @param pMsg
 * @param inputType
 * @param pInfo
 * @param suid
 * @return int32_t
 */
static int32_t tdExecuteRSmaImplAsync(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfo *pInfo,
                                      tb_uid_t suid) {
  const SSubmitReq *pReq = (const SSubmitReq *)pMsg;

C
Cary Xu 已提交
770
  void *qItem = taosAllocateQitem(pReq->header.contLen, DEF_QITEM);
C
Cary Xu 已提交
771 772 773 774 775 776 777 778
  if (!qItem) {
    return TSDB_CODE_FAILED;
  }

  memcpy(qItem, pMsg, pReq->header.contLen);

  taosWriteQitem(pInfo->queue, qItem);

C
Cary Xu 已提交
779 780
  pInfo->lastRecv = taosGetTimestampMs();

C
Cary Xu 已提交
781
  SRSmaStat *pRSmaStat = SMA_RSMA_STAT(pSma);
C
Cary Xu 已提交
782 783

  int64_t nItems = atomic_fetch_add_64(&pRSmaStat->nBufItems, 1);
C
Cary Xu 已提交
784

785 786 787 788
  if (atomic_load_8(&pInfo->assigned) == 0) {
    tsem_post(&(pRSmaStat->notEmpty));
  }

C
Cary Xu 已提交
789
  // smoothing consume
C
Cary Xu 已提交
790
  int32_t n = nItems / RSMA_QTASKEXEC_SMOOTH_SIZE;
C
Cary Xu 已提交
791 792 793 794
  if (n > 1) {
    if (n > 10) {
      n = 10;
    }
C
Cary Xu 已提交
795 796
    taosMsleep(n << 3);
    if (n > 5) {
C
Cary Xu 已提交
797
      smaWarn("vgId:%d, pInfo->queue itemSize:%d, memSize:%" PRIi64 ", sleep %d ms", SMA_VID(pSma),
C
Cary Xu 已提交
798
              taosQueueItemSize(pInfo->queue), taosQueueMemorySize(pInfo->queue), n << 3);
C
Cary Xu 已提交
799 800
    }
  }
C
Cary Xu 已提交
801

C
Cary Xu 已提交
802 803 804
  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
805 806 807 808 809 810 811 812 813 814 815
static int32_t tdRsmaPrintSubmitReq(SSma *pSma, SSubmitReq *pReq) {
  SSubmitMsgIter msgIter = {0};
  SSubmitBlkIter blkIter = {0};
  STSRow        *row = NULL;
  if (tInitSubmitMsgIter(pReq, &msgIter) < 0) return -1;
  while (true) {
    SSubmitBlk *pBlock = NULL;
    if (tGetSubmitMsgNext(&msgIter, &pBlock) < 0) return -1;
    if (pBlock == NULL) break;
    tInitSubmitBlkIter(&msgIter, pBlock, &blkIter);
    while ((row = tGetSubmitBlkNext(&blkIter)) != NULL) {
C
Cary Xu 已提交
816
      smaDebug("vgId:%d, numOfRows:%d, suid:%" PRIi64 ", uid:%" PRIi64 ", version:%" PRIi64 ", ts:%" PRIi64,
C
Cary Xu 已提交
817 818 819 820 821 822
               SMA_VID(pSma), msgIter.numOfRows, msgIter.suid, msgIter.uid, pReq->version, row->ts);
    }
  }
  return 0;
}

C
Cary Xu 已提交
823 824 825 826 827 828 829 830
/**
 * @brief sync mode
 *
 * @param pSma
 * @param pMsg
 * @param msgSize
 * @param inputType
 * @param pInfo
C
Cary Xu 已提交
831
 * @param type
C
Cary Xu 已提交
832 833 834 835
 * @param level
 * @return int32_t
 */
static int32_t tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t msgSize, int32_t inputType, SRSmaInfo *pInfo,
C
Cary Xu 已提交
836
                                 ERsmaExecType type, int8_t level) {
C
Cary Xu 已提交
837
  int32_t idx = level - 1;
C
Cary Xu 已提交
838

C
Cary Xu 已提交
839
  void *qTaskInfo = (type == RSMA_EXEC_COMMIT) ? RSMA_INFO_IQTASK(pInfo, idx) : RSMA_INFO_QTASK(pInfo, idx);
C
Cary Xu 已提交
840 841 842
  if (!qTaskInfo) {
    smaDebug("vgId:%d, no qTaskInfo to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level,
             pInfo->suid);
843 844
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
845
  if (!pInfo->pTSchema) {
C
Cary Xu 已提交
846
    smaWarn("vgId:%d, no schema to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, pInfo->suid);
847 848
    return TSDB_CODE_FAILED;
  }
849 850

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

C
Cary Xu 已提交
853 854 855
#if 0
  for (int32_t i = 0; i < msgSize; ++i) {
    SSubmitReq *pReq = *(SSubmitReq **)((char *)pMsg + i * sizeof(void *));
C
Cary Xu 已提交
856
    smaDebug("vgId:%d, [%d][%d] version %" PRIi64, SMA_VID(pSma), msgSize, i, pReq->version);
C
Cary Xu 已提交
857 858 859 860
    tdRsmaPrintSubmitReq(pSma, pReq);
  }
#endif
  if (qSetMultiStreamInput(qTaskInfo, pMsg, msgSize, inputType) < 0) {
861
    smaError("vgId:%d, rsma %" PRIi8 " qSetStreamInput failed since %s", SMA_VID(pSma), level, tstrerror(terrno));
862 863 864
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
865
  SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, idx);
C
Cary Xu 已提交
866
  tdRSmaExecAndSubmitResult(pSma, qTaskInfo, pItem, pInfo->pTSchema, pInfo->suid);
867 868 869 870

  return TSDB_CODE_SUCCESS;
}

871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
static int32_t tdCloneQTaskInfo(SSma *pSma, qTaskInfo_t dstTaskInfo, qTaskInfo_t srcTaskInfo, SRSmaParam *param,
                                tb_uid_t suid, int8_t idx) {
  SVnode *pVnode = pSma->pVnode;
  char   *pOutput = NULL;
  int32_t len = 0;

  if ((terrno = qSerializeTaskStatus(srcTaskInfo, &pOutput, &len)) < 0) {
    smaError("vgId:%d, rsma clone, table %" PRIi64 " serialize qTaskInfo failed since %s", TD_VID(pVnode), suid,
             terrstr());
    goto _err;
  }

  SReadHandle handle = {
      .meta = pVnode->pMeta,
      .vnode = pVnode,
      .initTqReader = 1,
  };
  ASSERT(!dstTaskInfo);
  dstTaskInfo = qCreateStreamExecTaskInfo(param->qmsg[idx], &handle);
  if (!dstTaskInfo) {
    terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
    goto _err;
  }

  if (qDeserializeTaskStatus(dstTaskInfo, pOutput, len) < 0) {
    smaError("vgId:%d, rsma clone, restore rsma task for table:%" PRIi64 " failed since %s", TD_VID(pVnode), suid,
             terrstr());
    goto _err;
  }

  smaDebug("vgId:%d, rsma clone, restore rsma task for table:%" PRIi64 " succeed", TD_VID(pVnode), suid);

  taosMemoryFreeClear(pOutput);
  return TSDB_CODE_SUCCESS;
_err:
  taosMemoryFreeClear(pOutput);
  tdRSmaQTaskInfoFree(dstTaskInfo, TD_VID(pVnode), idx + 1);
  smaError("vgId:%d, rsma clone, restore rsma task for table:%" PRIi64 " failed since %s", TD_VID(pVnode), suid,
           terrstr());
  return TSDB_CODE_FAILED;
}

/**
 * @brief Clone qTaskInfo of SRSmaInfo
 *
 * @param pSma
 * @param pInfo
 * @return int32_t
 */
static int32_t tdRSmaInfoClone(SSma *pSma, SRSmaInfo *pInfo) {
  SRSmaParam *param = NULL;
  if (!pInfo) {
    return TSDB_CODE_SUCCESS;
  }

  SMetaReader mr = {0};
  metaReaderInit(&mr, SMA_META(pSma), 0);
  smaDebug("vgId:%d, rsma clone qTaskInfo for suid:%" PRIi64, SMA_VID(pSma), pInfo->suid);
  if (metaGetTableEntryByUid(&mr, pInfo->suid) < 0) {
    smaError("vgId:%d, rsma clone, failed to get table meta for %" PRIi64 " since %s", SMA_VID(pSma), pInfo->suid,
             terrstr());
    goto _err;
  }
  ASSERT(mr.me.type == TSDB_SUPER_TABLE);
  ASSERT(mr.me.uid == pInfo->suid);
  if (TABLE_IS_ROLLUP(mr.me.flags)) {
    param = &mr.me.stbEntry.rsmaParam;
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
      if (!pInfo->iTaskInfo[i]) {
        continue;
      }
      if (tdCloneQTaskInfo(pSma, pInfo->taskInfo[i], pInfo->iTaskInfo[i], param, pInfo->suid, i) < 0) {
        goto _err;
      }
    }
    smaDebug("vgId:%d, rsma clone env success for %" PRIi64, SMA_VID(pSma), pInfo->suid);
  } else {
    terrno = TSDB_CODE_RSMA_INVALID_SCHEMA;
    goto _err;
  }

  metaReaderClear(&mr);
  return TSDB_CODE_SUCCESS;
_err:
  metaReaderClear(&mr);
  smaError("vgId:%d, rsma clone env failed for %" PRIi64 " since %s", SMA_VID(pSma), pInfo->suid, terrstr());
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
960 961
/**
 * @brief During async commit, the SRSmaInfo object would be COW from iRSmaInfoHash and write lock should be applied.
C
Cary Xu 已提交
962 963 964 965
 *
 * @param pSma
 * @param suid
 * @return SRSmaInfo*
C
Cary Xu 已提交
966
 */
C
Cary Xu 已提交
967
static SRSmaInfo *tdAcquireRSmaInfoBySuid(SSma *pSma, int64_t suid) {
968 969
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
C
Cary Xu 已提交
970 971
  SRSmaInfo *pRSmaInfo = NULL;

972
  if (!pEnv) {
C
Cary Xu 已提交
973
    terrno = TSDB_CODE_RSMA_INVALID_ENV;
974
    return NULL;
975 976
  }

977 978
  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
C
Cary Xu 已提交
979
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
980 981
    return NULL;
  }
982

983
  taosRLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
984 985
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
  if (pRSmaInfo && (pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
C
Cary Xu 已提交
986
    if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
987
      taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
988 989
      return NULL;
    }
C
Cary Xu 已提交
990
    if (!pRSmaInfo->taskInfo[0]) {
991
      if (tdRSmaInfoClone(pSma, pRSmaInfo) < 0) {
992
        taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
993 994 995
        return NULL;
      }
    }
C
Cary Xu 已提交
996
    tdRefRSmaInfo(pSma, pRSmaInfo);
997
    taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
998
    ASSERT(pRSmaInfo->suid == suid);
C
Cary Xu 已提交
999 1000
    return pRSmaInfo;
  }
1001
  taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
1002

C
Cary Xu 已提交
1003
  return NULL;
1004 1005
}

C
Cary Xu 已提交
1006 1007 1008
static FORCE_INLINE void tdReleaseRSmaInfo(SSma *pSma, SRSmaInfo *pInfo) {
  if (pInfo) {
    tdUnRefRSmaInfo(pSma, pInfo);
C
Cary Xu 已提交
1009 1010 1011
  }
}

C
Cary Xu 已提交
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
/**
 * @brief async mode
 *
 * @param pSma
 * @param pMsg
 * @param inputType
 * @param suid
 * @return int32_t
 */
static int32_t tdExecuteRSmaAsync(SSma *pSma, const void *pMsg, int32_t inputType, tb_uid_t suid) {
  SRSmaInfo *pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, suid);
  if (!pRSmaInfo) {
    smaDebug("vgId:%d, execute rsma, no rsma info for suid:%" PRIu64, SMA_VID(pSma), suid);
    return TSDB_CODE_SUCCESS;
  }

  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
    if (tdExecuteRSmaImplAsync(pSma, pMsg, inputType, pRSmaInfo, suid) < 0) {
      tdReleaseRSmaInfo(pSma, pRSmaInfo);
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
    if (smaMgmt.tmrHandle) {
      SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pRSmaInfo, 0);
      if (pItem->level > 0) {
        atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);
      }
      pItem = RSMA_INFO_ITEM(pRSmaInfo, 1);
      if (pItem->level > 0) {
        atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);
      }
    }
C
Cary Xu 已提交
1043 1044
  } else {
    ASSERT(0);
C
Cary Xu 已提交
1045 1046 1047 1048 1049 1050
  }

  tdReleaseRSmaInfo(pSma, pRSmaInfo);
  return TSDB_CODE_SUCCESS;
}

1051 1052 1053 1054 1055 1056
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;
  }
C
Cary Xu 已提交
1057
  STbUidStore uidStore = {0};
1058 1059 1060 1061 1062 1063
  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 已提交
1064
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
C
Cary Xu 已提交
1065 1066 1067
    if (tdFetchSubmitReqSuids(pMsg, &uidStore) < 0) {
      goto _err;
    }
1068 1069

    if (uidStore.suid != 0) {
C
Cary Xu 已提交
1070 1071 1072
      if (tdExecuteRSmaAsync(pSma, pMsg, inputType, uidStore.suid) < 0) {
        goto _err;
      }
1073

C
Cary Xu 已提交
1074 1075
      void *pIter = NULL;
      while ((pIter = taosHashIterate(uidStore.uidHash, pIter))) {
1076
        tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
C
Cary Xu 已提交
1077 1078 1079
        if (tdExecuteRSmaAsync(pSma, pMsg, inputType, *pTbSuid) < 0) {
          goto _err;
        }
1080 1081 1082
      }
    }
  }
C
Cary Xu 已提交
1083
  tdUidStoreDestory(&uidStore);
1084
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1085 1086 1087 1088
_err:
  tdUidStoreDestory(&uidStore);
  smaError("vgId:%d, failed to process rsma submit since: %s", SMA_VID(pSma), terrstr());
  return TSDB_CODE_FAILED;
1089
}
C
Cary Xu 已提交
1090

C
Cary Xu 已提交
1091 1092 1093 1094 1095 1096 1097
/**
 * @brief retrieve rsma meta and init
 *
 * @param pSma
 * @param nTables number of tables of rsma
 * @return int32_t
 */
C
Cary Xu 已提交
1098
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables) {
C
Cary Xu 已提交
1099 1100 1101 1102
  SVnode     *pVnode = pSma->pVnode;
  SArray     *suidList = NULL;
  STbUidStore uidStore = {0};
  SMetaReader mr = {0};
1103

C
Cary Xu 已提交
1104 1105 1106 1107 1108 1109
  if (!(suidList = taosArrayInit(1, sizeof(tb_uid_t)))) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }

  if (vnodeGetStbIdList(pSma->pVnode, 0, suidList) < 0) {
C
Cary Xu 已提交
1110
    smaError("vgId:%d, failed to restore rsma env since get stb id list error: %s", TD_VID(pVnode), terrstr());
C
Cary Xu 已提交
1111
    goto _err;
1112 1113
  }

C
Cary Xu 已提交
1114 1115
  int64_t arrSize = taosArrayGetSize(suidList);

C
Cary Xu 已提交
1116
  if (arrSize == 0) {
C
Cary Xu 已提交
1117 1118 1119
    if (nTables) {
      *nTables = 0;
    }
C
Cary Xu 已提交
1120 1121
    taosArrayDestroy(suidList);
    smaDebug("vgId:%d, no need to restore rsma env since empty stb id list", TD_VID(pVnode));
1122 1123 1124
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1125
  int64_t nRsmaTables = 0;
1126
  metaReaderInit(&mr, SMA_META(pSma), 0);
C
Cary Xu 已提交
1127 1128 1129
  if (!(uidStore.tbUids = taosArrayInit(1024, sizeof(tb_uid_t)))) {
    goto _err;
  }
C
Cary Xu 已提交
1130
  for (int64_t i = 0; i < arrSize; ++i) {
1131
    tb_uid_t suid = *(tb_uid_t *)taosArrayGet(suidList, i);
C
Cary Xu 已提交
1132
    smaDebug("vgId:%d, rsma restore, suid is %" PRIi64, TD_VID(pVnode), suid);
1133
    if (metaGetTableEntryByUid(&mr, suid) < 0) {
C
Cary Xu 已提交
1134 1135
      smaError("vgId:%d, rsma restore, failed to get table meta for %" PRIi64 " since %s", TD_VID(pVnode), suid,
               terrstr());
1136 1137
      goto _err;
    }
1138
    tDecoderClear(&mr.coder);
1139 1140 1141
    ASSERT(mr.me.type == TSDB_SUPER_TABLE);
    ASSERT(mr.me.uid == suid);
    if (TABLE_IS_ROLLUP(mr.me.flags)) {
C
Cary Xu 已提交
1142
      ++nRsmaTables;
1143
      SRSmaParam *param = &mr.me.stbEntry.rsmaParam;
C
Cary Xu 已提交
1144 1145 1146 1147
      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]);
1148
      }
1149
      if (tdRSmaProcessCreateImpl(pSma, &mr.me.stbEntry.rsmaParam, suid, mr.me.name) < 0) {
C
Cary Xu 已提交
1150
        smaError("vgId:%d, rsma restore env failed for %" PRIi64 " since %s", TD_VID(pVnode), suid, terrstr());
1151 1152
        goto _err;
      }
C
Cary Xu 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161

      // reload all ctbUids for suid
      uidStore.suid = suid;
      if (vnodeGetCtbIdList(pVnode, suid, uidStore.tbUids) < 0) {
        smaError("vgId:%d, rsma restore, get ctb idlist failed for %" PRIi64 " since %s", TD_VID(pVnode), suid,
                 terrstr());
        goto _err;
      }

1162
      if (tdUpdateTbUidList(pVnode->pSma, &uidStore, true) < 0) {
C
Cary Xu 已提交
1163 1164 1165 1166 1167 1168 1169
        smaError("vgId:%d, rsma restore, update tb uid list failed for %" PRIi64 " since %s", TD_VID(pVnode), suid,
                 terrstr());
        goto _err;
      }

      taosArrayClear(uidStore.tbUids);

C
Cary Xu 已提交
1170
      smaDebug("vgId:%d, rsma restore env success for %" PRIi64, TD_VID(pVnode), suid);
1171 1172 1173
    }
  }

C
Cary Xu 已提交
1174 1175
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);
C
Cary Xu 已提交
1176 1177 1178 1179 1180
  tdUidStoreDestory(&uidStore);

  if (nTables) {
    *nTables = nRsmaTables;
  }
C
Cary Xu 已提交
1181 1182 1183 1184 1185

  return TSDB_CODE_SUCCESS;
_err:
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);
C
Cary Xu 已提交
1186
  tdUidStoreDestory(&uidStore);
C
Cary Xu 已提交
1187 1188 1189 1190

  return TSDB_CODE_FAILED;
}

1191
static int32_t tdRSmaRestoreQTaskInfoReload(SSma *pSma, int8_t type, int64_t qTaskFileVer) {
C
Cary Xu 已提交
1192
  SVnode *pVnode = pSma->pVnode;
C
Cary Xu 已提交
1193
  STFile  tFile = {0};
C
Cary Xu 已提交
1194
  char    qTaskInfoFName[TSDB_FILENAME_LEN] = {0};
1195

1196
  tdRSmaQTaskInfoGetFileName(TD_VID(pVnode), qTaskFileVer, qTaskInfoFName);
C
Cary Xu 已提交
1197
  if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
1198 1199
    goto _err;
  }
C
Cary Xu 已提交
1200 1201

  if (!taosCheckExistFile(TD_TFILE_FULL_NAME(&tFile))) {
1202 1203 1204
    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 已提交
1205
    } else {
1206 1207
      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 已提交
1208
    }
C
Cary Xu 已提交
1209
    return TSDB_CODE_SUCCESS;
1210 1211
  }

1212 1213 1214
  if (tdOpenTFile(&tFile, TD_FILE_READ) < 0) {
    goto _err;
  }
C
Cary Xu 已提交
1215

1216 1217 1218 1219 1220
  STFInfo tFileInfo = {0};
  if (tdLoadTFileHeader(&tFile, &tFileInfo) < 0) {
    goto _err;
  }

C
Cary Xu 已提交
1221
  SRSmaQTaskInfoIter fIter = {0};
1222
  if (tdRSmaQTaskInfoIterInit(&fIter, &tFile) < 0) {
C
Cary Xu 已提交
1223 1224
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1225
    tdDestroyTFile(&tFile);
1226 1227
    goto _err;
  }
C
Cary Xu 已提交
1228

1229
  if (tdRSmaQTaskInfoRestore(pSma, type, &fIter) < 0) {
C
Cary Xu 已提交
1230 1231
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1232
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1233 1234
    goto _err;
  }
1235

C
Cary Xu 已提交
1236
  tdRSmaQTaskInfoIterDestroy(&fIter);
C
Cary Xu 已提交
1237
  tdCloseTFile(&tFile);
C
Cary Xu 已提交
1238
  tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1239

1240 1241 1242
  // 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 已提交
1243 1244
  return TSDB_CODE_SUCCESS;
_err:
1245 1246
  smaError("vgId:%d, restore rsma task %" PRIi8 " for version %" PRIi64 ", qtaskinfo reload failed since %s",
           TD_VID(pVnode), type, qTaskFileVer, terrstr());
C
Cary Xu 已提交
1247 1248 1249 1250 1251
  return TSDB_CODE_FAILED;
}

/**
 * @brief reload ts data from checkpoint
C
Cary Xu 已提交
1252 1253 1254
 *
 * @param pSma
 * @return int32_t
C
Cary Xu 已提交
1255
 */
1256
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma) {
C
Cary Xu 已提交
1257
  // NOTHING TODO: the data would be restored from the unified WAL replay procedure
C
Cary Xu 已提交
1258 1259 1260
  return TSDB_CODE_SUCCESS;
}

1261
int32_t tdRSmaProcessRestoreImpl(SSma *pSma, int8_t type, int64_t qtaskFileVer) {
C
Cary Xu 已提交
1262
  // step 1: iterate all stables to restore the rsma env
C
Cary Xu 已提交
1263
  int64_t nTables = 0;
C
Cary Xu 已提交
1264
  if (tdRSmaRestoreQTaskInfoInit(pSma, &nTables) < 0) {
C
Cary Xu 已提交
1265 1266
    goto _err;
  }
C
Cary Xu 已提交
1267
  if (nTables <= 0) {
1268
    smaDebug("vgId:%d, no need to restore rsma task %" PRIi8 " since no tables", SMA_VID(pSma), type);
C
Cary Xu 已提交
1269 1270
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
1271

1272
#if 0
C
Cary Xu 已提交
1273
  // step 2: retrieve qtaskinfo items from the persistence file(rsma/qtaskinfo) and restore
1274
  if (tdRSmaRestoreQTaskInfoReload(pSma, type, qtaskFileVer) < 0) {
C
Cary Xu 已提交
1275 1276
    goto _err;
  }
1277
#endif
C
Cary Xu 已提交
1278 1279

  // step 3: reload ts data from checkpoint
1280
  if (tdRSmaRestoreTSDataReload(pSma) < 0) {
C
Cary Xu 已提交
1281 1282
    goto _err;
  }
1283 1284 1285 1286 1287 1288

  // step 4: open SRSmaFS for qTaskFiles
  if (tdRSmaFSOpen(pSma, qtaskFileVer) < 0) {
    goto _err;
  }

1289
  smaInfo("vgId:%d, restore rsma task %" PRIi8 " from qtaskf %" PRIi64 " succeed", SMA_VID(pSma), type, qtaskFileVer);
1290 1291
  return TSDB_CODE_SUCCESS;
_err:
1292 1293
  smaError("vgId:%d, restore rsma task %" PRIi8 "from qtaskf %" PRIi64 " failed since %s", SMA_VID(pSma), type,
           qtaskFileVer, terrstr());
1294 1295 1296
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1297 1298
/**
 * @brief Restore from SRSmaQTaskInfoItem
C
Cary Xu 已提交
1299 1300 1301 1302
 *
 * @param pSma
 * @param pItem
 * @return int32_t
C
Cary Xu 已提交
1303
 */
C
Cary Xu 已提交
1304
static int32_t tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *pItem) {
1305 1306 1307
  SRSmaInfo *pRSmaInfo = NULL;
  void      *qTaskInfo = NULL;

C
Cary Xu 已提交
1308
  pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pItem->suid);
1309
  if (!pRSmaInfo) {
C
Cary Xu 已提交
1310
    smaDebug("vgId:%d, no restore as no rsma info for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
1311 1312 1313
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1314
  if (pItem->type == TSDB_RETENTION_L1) {
C
Cary Xu 已提交
1315
    qTaskInfo = RSMA_INFO_QTASK(pRSmaInfo, 0);
C
Cary Xu 已提交
1316
  } else if (pItem->type == TSDB_RETENTION_L2) {
C
Cary Xu 已提交
1317
    qTaskInfo = RSMA_INFO_QTASK(pRSmaInfo, 1);
1318 1319 1320 1321 1322
  } else {
    ASSERT(0);
  }

  if (!qTaskInfo) {
C
Cary Xu 已提交
1323
    tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
1324
    smaDebug("vgId:%d, no restore as NULL rsma qTaskInfo for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
1325 1326 1327
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1328
  if (qDeserializeTaskStatus(qTaskInfo, pItem->qTaskInfo, pItem->len) < 0) {
C
Cary Xu 已提交
1329
    tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
1330
    smaError("vgId:%d, restore rsma task failed for table:%" PRIi64 " level %d since %s", SMA_VID(pSma), pItem->suid,
C
Cary Xu 已提交
1331
             pItem->type, terrstr());
1332 1333
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1334 1335
  smaDebug("vgId:%d, restore rsma task success for table:%" PRIi64 " level %d", SMA_VID(pSma), pItem->suid,
           pItem->type);
1336

C
Cary Xu 已提交
1337
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
1338 1339 1340
  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1341
static int32_t tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile) {
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
  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 已提交
1360 1361
  pIter->pBuf = taosMemoryMalloc(pIter->nAlloc);
  if (!pIter->pBuf) {
1362 1363 1364
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
1365
  pIter->qBuf = pIter->pBuf;
1366 1367 1368 1369

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1370
static int32_t tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish) {
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
  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 已提交
1387
  if (tdReadTFile(pTFile, pIter->pBuf, nBytes) != nBytes) {
1388 1389 1390 1391
    return TSDB_CODE_FAILED;
  }

  int32_t infoLen = 0;
C
Cary Xu 已提交
1392
  taosDecodeFixedI32(pIter->pBuf, &infoLen);
1393
  if (infoLen > nBytes) {
C
Cary Xu 已提交
1394 1395 1396 1397 1398
    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;
    }
C
Cary Xu 已提交
1399 1400 1401 1402 1403 1404 1405 1406
    if (pIter->nAlloc < infoLen) {
      pIter->nAlloc = infoLen;
      void *pBuf = taosMemoryRealloc(pIter->pBuf, infoLen);
      if (!pBuf) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        return TSDB_CODE_FAILED;
      }
      pIter->pBuf = pBuf;
1407
    }
C
Cary Xu 已提交
1408

1409 1410
    nBytes = infoLen;

C
Cary Xu 已提交
1411
    if (tdSeekTFile(pTFile, pIter->offset, SEEK_SET) < 0) {
1412 1413 1414
      return TSDB_CODE_FAILED;
    }

C
Cary Xu 已提交
1415
    if (tdReadTFile(pTFile, pIter->pBuf, nBytes) != nBytes) {
1416 1417 1418 1419
      return TSDB_CODE_FAILED;
    }
  }

C
Cary Xu 已提交
1420
  pIter->qBuf = pIter->pBuf;
1421 1422 1423 1424 1425 1426 1427
  pIter->offset += nBytes;
  pIter->nBytes = nBytes;
  pIter->nBufPos = 0;

  return TSDB_CODE_SUCCESS;
}

1428
static int32_t tdRSmaQTaskInfoRestore(SSma *pSma, int8_t type, SRSmaQTaskInfoIter *pIter) {
1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
  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 已提交
1441 1442
    pIter->qBuf = taosDecodeFixedI32(pIter->qBuf, &qTaskInfoLenWithHead);
    if (qTaskInfoLenWithHead < RSMA_QTASKINFO_HEAD_LEN) {
1443
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
1444
      smaError("vgId:%d, restore rsma task %" PRIi8 " from qtaskinfo file %s failed since %s", SMA_VID(pSma), type,
C
Cary Xu 已提交
1445
               TD_TFILE_FULL_NAME(pIter->pTFile), terrstr());
1446 1447
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1448

1449 1450
    while (1) {
      if ((pIter->nBufPos + qTaskInfoLenWithHead) <= pIter->nBytes) {
C
Cary Xu 已提交
1451 1452 1453 1454 1455
        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);
1456
        // do the restore job
1457 1458
        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 已提交
1459
        tdRSmaQTaskInfoItemRestore(pSma, &infoItem);
1460

C
Cary Xu 已提交
1461
        pIter->qBuf = POINTER_SHIFT(pIter->qBuf, infoItem.len);
1462 1463
        pIter->nBufPos += qTaskInfoLenWithHead;

C
Cary Xu 已提交
1464 1465 1466 1467 1468 1469 1470
        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);
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
        continue;
      }
      // prepare and load next block in the file
      pIter->offset -= (pIter->nBytes - pIter->nBufPos);
      break;
    }
  }

  return TSDB_CODE_SUCCESS;
}
C
Cary Xu 已提交
1481

1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
  SSma   *pSma = pRSmaStat->pSma;
  SVnode *pVnode = pSma->pVnode;
  int32_t vid = SMA_VID(pSma);

  if (taosHashGetSize(pInfoHash) <= 0) {
    return TSDB_CODE_SUCCESS;
  }

  int64_t fsMaxVer = tdRSmaFSMaxVer(pSma, pRSmaStat);
  if (pRSmaStat->commitAppliedVer <= fsMaxVer) {
    smaDebug("vgId:%d, rsma persist, no need as applied %" PRIi64 " not larger than fsMaxVer %" PRIi64, vid,
             pRSmaStat->commitAppliedVer, fsMaxVer);
    return TSDB_CODE_SUCCESS;
  }

  void *infoHash = NULL;
  while ((infoHash = taosHashIterate(pInfoHash, infoHash))) {
    SRSmaInfo *pRSmaInfo = *(SRSmaInfo **)infoHash;

    if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
      continue;
    }

    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
      SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pRSmaInfo, i);
      if (pItem && pItem->pStreamState) {
        if (streamStateCommit(pItem->pStreamState) < 0) {
          terrno = TSDB_CODE_RSMA_STREAM_STATE_COMMIT;
          goto _err;
        }
        smaDebug("vgId:%d, rsma persist, stream state commit success, table %" PRIi64 " level %d", vid, pRSmaInfo->suid,
                 i + 1);
      }
    }
  }

  return TSDB_CODE_SUCCESS;
_err:
  smaError("vgId:%d, rsma persist failed since %s", vid, terrstr());
  return TSDB_CODE_FAILED;
}

#if 0
C
Cary Xu 已提交
1526
int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat, SHashObj *pInfoHash) {
C
Cary Xu 已提交
1527 1528 1529 1530 1531
  SSma   *pSma = pRSmaStat->pSma;
  SVnode *pVnode = pSma->pVnode;
  int32_t vid = SMA_VID(pSma);
  int64_t toffset = 0;
  bool    isFileCreated = false;
C
Cary Xu 已提交
1532

C
Cary Xu 已提交
1533
  if (taosHashGetSize(pInfoHash) <= 0) {
1534 1535 1536
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1537
  void *infoHash = taosHashIterate(pInfoHash, NULL);
C
Cary Xu 已提交
1538
  if (!infoHash) {
C
Cary Xu 已提交
1539
    return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1540 1541
  }

1542 1543 1544
  int64_t fsMaxVer = tdRSmaFSMaxVer(pSma, pRSmaStat);
  if (pRSmaStat->commitAppliedVer <= fsMaxVer) {
    smaDebug("vgId:%d, rsma persist, no need as applied %" PRIi64 " not larger than fsMaxVer %" PRIi64, vid,
1545
             pRSmaStat->commitAppliedVer, fsMaxVer);
1546 1547 1548
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1549
  STFile tFile = {0};
C
Cary Xu 已提交
1550 1551
#if 0
  if (pRSmaStat->commitAppliedVer > 0) {
1552
    char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1553
    tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
1554
    if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
1555
      smaError("vgId:%d, rsma persist, init %s failed since %s", vid, qTaskInfoFName, terrstr());
1556 1557 1558
      goto _err;
    }
    if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
1559
      smaError("vgId:%d, rsma persist, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
1560 1561 1562 1563 1564 1565
      goto _err;
    }
    smaDebug("vgId:%d, rsma, serialize qTaskInfo, file %s created", vid, TD_TFILE_FULL_NAME(&tFile));

    isFileCreated = true;
  }
C
Cary Xu 已提交
1566
#endif
1567

C
Cary Xu 已提交
1568 1569
  while (infoHash) {
    SRSmaInfo *pRSmaInfo = *(SRSmaInfo **)infoHash;
C
Cary Xu 已提交
1570 1571 1572 1573 1574 1575

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

C
Cary Xu 已提交
1576
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
C
Cary Xu 已提交
1577
#if 0
C
Cary Xu 已提交
1578
      qTaskInfo_t taskInfo = RSMA_INFO_IQTASK(pRSmaInfo, i);
C
Cary Xu 已提交
1579 1580
#endif
      qTaskInfo_t taskInfo = RSMA_INFO_QTASK(pRSmaInfo, i);
C
Cary Xu 已提交
1581
      if (!taskInfo) {
1582
        smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d qTaskInfo is NULL", vid, pRSmaInfo->suid, i + 1);
C
Cary Xu 已提交
1583 1584 1585 1586 1587 1588 1589
        continue;
      }

      char   *pOutput = NULL;
      int32_t len = 0;
      int8_t  type = (int8_t)(i + 1);
      if (qSerializeTaskStatus(taskInfo, &pOutput, &len) < 0) {
1590
        smaError("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo failed since %s", vid, pRSmaInfo->suid,
C
Cary Xu 已提交
1591
                 i + 1, terrstr());
C
Cary Xu 已提交
1592 1593 1594
        goto _err;
      }
      if (!pOutput || len <= 0) {
1595 1596
        smaDebug("vgId:%d, rsma, table %" PRIi64
                 " level %d serialize qTaskInfo success but no output(len %d), not persist",
C
Cary Xu 已提交
1597 1598 1599 1600 1601
                 vid, pRSmaInfo->suid, i + 1, len);
        taosMemoryFreeClear(pOutput);
        continue;
      }

1602
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo success with len %d, need persist", vid,
C
Cary Xu 已提交
1603 1604 1605 1606
               pRSmaInfo->suid, i + 1, len);

      if (!isFileCreated) {
        char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1607
        tdRSmaQTaskInfoGetFileName(vid, pRSmaStat->commitAppliedVer, qTaskInfoFName);
C
Cary Xu 已提交
1608
        if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
1609
          smaError("vgId:%d, rsma persist, init %s failed since %s", vid, qTaskInfoFName, terrstr());
C
Cary Xu 已提交
1610 1611
          goto _err;
        }
1612
        if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
1613
          smaError("vgId:%d, rsma persist, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
C
Cary Xu 已提交
1614 1615
          goto _err;
        }
1616 1617
        smaDebug("vgId:%d, rsma, table %" PRIi64 " serialize qTaskInfo, file %s created", vid, pRSmaInfo->suid,
                 TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630

        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);
1631
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d head part(len:%d) appended to offset:%" PRIi64, vid,
1632
               pRSmaInfo->suid, i + 1, headLen, toffset);
C
Cary Xu 已提交
1633
      tdAppendTFile(&tFile, pOutput, len, &toffset);
1634 1635
      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 已提交
1636 1637 1638 1639

      taosMemoryFree(pOutput);
    }

C
Cary Xu 已提交
1640
    infoHash = taosHashIterate(pInfoHash, infoHash);
C
Cary Xu 已提交
1641
  }
C
Cary Xu 已提交
1642

C
Cary Xu 已提交
1643 1644
  if (isFileCreated) {
    if (tdUpdateTFileHeader(&tFile) < 0) {
1645
      smaError("vgId:%d, rsma, failed to update tfile %s header since %s", vid, TD_TFILE_FULL_NAME(&tFile),
C
Cary Xu 已提交
1646 1647 1648
               tstrerror(terrno));
      goto _err;
    } else {
1649
      smaDebug("vgId:%d, rsma, succeed to update tfile %s header", vid, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1650 1651 1652
    }

    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1653
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1654
  }
C
Cary Xu 已提交
1655
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1656
_err:
1657
  smaError("vgId:%d, rsma persist failed since %s", vid, terrstr());
C
Cary Xu 已提交
1658 1659
  if (isFileCreated) {
    tdRemoveTFile(&tFile);
C
Cary Xu 已提交
1660 1661 1662 1663 1664
    tdDestroyTFile(&tFile);
  }
  return TSDB_CODE_FAILED;
}

1665 1666
#endif

C
Cary Xu 已提交
1667
/**
C
Cary Xu 已提交
1668
 * @brief trigger to get rsma result in async mode
C
Cary Xu 已提交
1669 1670 1671 1672
 *
 * @param param
 * @param tmrId
 */
C
Cary Xu 已提交
1673
static void tdRSmaFetchTrigger(void *param, void *tmrId) {
1674
  SRSmaRef      *pRSmaRef = NULL;
C
Cary Xu 已提交
1675
  SSma          *pSma = NULL;
1676 1677 1678
  SRSmaStat     *pStat = NULL;
  SRSmaInfo     *pRSmaInfo = NULL;
  SRSmaInfoItem *pItem = NULL;
C
Cary Xu 已提交
1679

1680 1681 1682
  if (!(pRSmaRef = taosHashGet(smaMgmt.refHash, &param, POINTER_BYTES))) {
    smaDebug("rsma fetch task not start since rsma info item:%p not exist in refHash:%p, rsetId:%" PRIi64, param,
             *(int64_t *)&param, smaMgmt.refHash, smaMgmt.rsetId);
C
Cary Xu 已提交
1683 1684 1685
    return;
  }

1686
  if (!(pStat = (SRSmaStat *)tdAcquireSmaRef(smaMgmt.rsetId, pRSmaRef->refId))) {
C
Cary Xu 已提交
1687
    smaDebug("rsma fetch task not start since rsma stat already destroyed, rsetId:%" PRIi64 " refId:%d)",
C
Cary Xu 已提交
1688 1689
             smaMgmt.rsetId, pRSmaRef->refId);  // pRSmaRef freed in taosHashRemove
    taosHashRemove(smaMgmt.refHash, &param, POINTER_BYTES);
C
Cary Xu 已提交
1690
    return;
C
Cary Xu 已提交
1691 1692
  }

C
Cary Xu 已提交
1693 1694
  pSma = pStat->pSma;

1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
  if (!(pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pRSmaRef->suid))) {
    smaDebug("rsma fetch task not start since rsma info not exist, rsetId:%" PRIi64 " refId:%d)", smaMgmt.rsetId,
             pRSmaRef->refId);  // pRSmaRef freed in taosHashRemove
    tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
    taosHashRemove(smaMgmt.refHash, &param, POINTER_BYTES);
    return;
  }

  if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
    smaDebug("rsma fetch task not start since rsma info already deleted, rsetId:%" PRIi64 " refId:%d)", smaMgmt.rsetId,
             pRSmaRef->refId);  // pRSmaRef freed in taosHashRemove
    tdReleaseRSmaInfo(pSma, pRSmaInfo);
    tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
    taosHashRemove(smaMgmt.refHash, &param, POINTER_BYTES);
    return;
  }

  pItem = *(SRSmaInfoItem **)&param;

C
Cary Xu 已提交
1714 1715 1716 1717 1718
  // 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 已提交
1719 1720
      smaDebug("vgId:%d, rsma fetch task not start for level %" PRIi8 " since stat is %" PRIi8
               ", rsetId rsetId:%" PRIi64 " refId:%d",
1721
               SMA_VID(pSma), pItem->level, rsmaTriggerStat, smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1722
      if (rsmaTriggerStat == TASK_TRIGGER_STAT_PAUSED) {
1723
        taosTmrReset(tdRSmaFetchTrigger, RSMA_FETCH_INTERVAL, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
1724
      }
1725 1726
      tdReleaseRSmaInfo(pSma, pRSmaInfo);
      tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1727
      return;
C
Cary Xu 已提交
1728
    }
C
Cary Xu 已提交
1729 1730 1731 1732 1733 1734 1735 1736
    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: {
1737
      smaDebug("vgId:%d, rsma fetch task planned for level:%" PRIi8 " suid:%" PRIi64 " since stat is active",
C
Cary Xu 已提交
1738
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
C
Cary Xu 已提交
1739
      // async process
C
Cary Xu 已提交
1740
      pItem->fetchLevel = pItem->level;
C
Cary Xu 已提交
1741
#if 0
C
Cary Xu 已提交
1742 1743 1744 1745
      SRSmaInfo     *qInfo = tdAcquireRSmaInfoBySuid(pSma, pRSmaInfo->suid);
      SRSmaInfoItem *qItem = RSMA_INFO_ITEM(qInfo, pItem->level - 1);
      ASSERT(qItem->level == pItem->level);
      ASSERT(qItem->fetchLevel == pItem->fetchLevel);
C
Cary Xu 已提交
1746
#endif
1747 1748 1749
      if (atomic_load_8(&pRSmaInfo->assigned) == 0) {
        tsem_post(&(pStat->notEmpty));
      }
C
Cary Xu 已提交
1750 1751
    } break;
    case TASK_TRIGGER_STAT_PAUSED: {
C
Cary Xu 已提交
1752
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is paused",
C
Cary Xu 已提交
1753 1754 1755
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INACTIVE: {
C
Cary Xu 已提交
1756
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is inactive",
C
Cary Xu 已提交
1757 1758 1759
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INIT: {
C
Cary Xu 已提交
1760 1761
      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 已提交
1762 1763
    } break;
    default: {
C
Cary Xu 已提交
1764 1765
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is unknown",
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
C
Cary Xu 已提交
1766
    } break;
C
Cary Xu 已提交
1767 1768 1769
  }

_end:
C
Cary Xu 已提交
1770
  taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
1771 1772
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
  tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1773
}
C
Cary Xu 已提交
1774

C
Cary Xu 已提交
1775 1776 1777 1778
static void tdFreeRSmaSubmitItems(SArray *pItems) {
  for (int32_t i = 0; i < taosArrayGetSize(pItems); ++i) {
    taosFreeQitem(*(void **)taosArrayGet(pItems, i));
  }
C
Cary Xu 已提交
1779
  taosArrayClear(pItems);
C
Cary Xu 已提交
1780 1781
}

C
Cary Xu 已提交
1782 1783 1784 1785 1786 1787 1788
/**
 * @brief fetch rsma result(consider the efficiency and functionality)
 *
 * @param pSma
 * @param pInfo
 * @return int32_t
 */
1789
static int32_t tdRSmaFetchAllResult(SSma *pSma, SRSmaInfo *pInfo) {
C
Cary Xu 已提交
1790 1791
  SSDataBlock dataBlock = {.info.type = STREAM_GET_ALL};
  for (int8_t i = 1; i <= TSDB_RETENTION_L2; ++i) {
C
Cary Xu 已提交
1792 1793 1794
    SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, i - 1);
    if (pItem->fetchLevel) {
      pItem->fetchLevel = 0;
C
Cary Xu 已提交
1795 1796 1797 1798
      qTaskInfo_t taskInfo = RSMA_INFO_QTASK(pInfo, i - 1);
      if (!taskInfo) {
        continue;
      }
C
Cary Xu 已提交
1799

C
Cary Xu 已提交
1800 1801 1802
      if ((++pItem->nScanned * pItem->maxDelay) > RSMA_FETCH_DELAY_MAX) {
        smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi8 " maxDelay:%d, fetch executed",
                 SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay);
C
Cary Xu 已提交
1803
      } else {
C
Cary Xu 已提交
1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
        int64_t curMs = taosGetTimestampMs();
        if ((curMs - pInfo->lastRecv) < RSMA_FETCH_ACTIVE_MAX) {
          smaTrace("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " curMs:%" PRIi64 " lastRecv:%" PRIi64 ", fetch skipped ",
                   SMA_VID(pSma), pInfo->suid, i, curMs, pInfo->lastRecv);
          atomic_store_8(&pItem->triggerStat, TASK_TRIGGER_STAT_ACTIVE);  // restore the active stat
          continue;
        } else {
          smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " curMs:%" PRIi64 " lastRecv:%" PRIi64 ", fetch executed ",
                   SMA_VID(pSma), pInfo->suid, i, curMs, pInfo->lastRecv);
        }
C
Cary Xu 已提交
1814 1815
      }

C
Cary Xu 已提交
1816
      pItem->nScanned = 0;
C
Cary Xu 已提交
1817

C
Cary Xu 已提交
1818 1819 1820
      if ((terrno = qSetMultiStreamInput(taskInfo, &dataBlock, 1, STREAM_INPUT__DATA_BLOCK)) < 0) {
        goto _err;
      }
C
Cary Xu 已提交
1821
      if (tdRSmaExecAndSubmitResult(pSma, taskInfo, pItem, pInfo->pTSchema, pInfo->suid) < 0) {
C
Cary Xu 已提交
1822 1823 1824 1825 1826
        tdCleanupStreamInputDataBlock(taskInfo);
        goto _err;
      }

      tdCleanupStreamInputDataBlock(taskInfo);
C
Cary Xu 已提交
1827 1828
      smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi8 " maxDelay:%d, fetch finished",
               SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay);
C
Cary Xu 已提交
1829
    } else {
C
Cary Xu 已提交
1830
      smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi8
C
Cary Xu 已提交
1831
               " maxDelay:%d, fetch not executed as fetch level is %" PRIi8,
C
Cary Xu 已提交
1832
               SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay, pItem->fetchLevel);
C
Cary Xu 已提交
1833 1834 1835 1836 1837 1838 1839 1840 1841
    }
  }

_end:
  return TSDB_CODE_SUCCESS;
_err:
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880
static int32_t tdRSmaBatchExec(SSma *pSma, SRSmaInfo *pInfo, STaosQall *qall, SArray *pSubmitArr, ERsmaExecType type) {
  taosArrayClear(pSubmitArr);
  while (1) {
    void *msg = NULL;
    taosGetQitem(qall, (void **)&msg);
    if (msg) {
      if (taosArrayPush(pSubmitArr, &msg) < 0) {
        tdFreeRSmaSubmitItems(pSubmitArr);
        goto _err;
      }
    } else {
      break;
    }
  }

  int32_t size = taosArrayGetSize(pSubmitArr);
  if (size > 0) {
    for (int32_t i = 1; i <= TSDB_RETENTION_L2; ++i) {
      if (tdExecuteRSmaImpl(pSma, pSubmitArr->pData, size, STREAM_INPUT__MERGED_SUBMIT, pInfo, type, i) < 0) {
        tdFreeRSmaSubmitItems(pSubmitArr);
        goto _err;
      }
    }
    tdFreeRSmaSubmitItems(pSubmitArr);
  }
  return TSDB_CODE_SUCCESS;
_err:
  while (1) {
    void *msg = NULL;
    taosGetQitem(qall, (void **)&msg);
    if (msg) {
      taosFreeQitem(msg);
    } else {
      break;
    }
  }
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1881 1882 1883 1884
/**
 * @brief
 *
 * @param pSma
C
Cary Xu 已提交
1885
 * @param type
C
Cary Xu 已提交
1886 1887
 * @return int32_t
 */
C
Cary Xu 已提交
1888

C
Cary Xu 已提交
1889
int32_t tdRSmaProcessExecImpl(SSma *pSma, ERsmaExecType type) {
C
Cary Xu 已提交
1890
  SVnode    *pVnode = pSma->pVnode;
C
Cary Xu 已提交
1891 1892 1893 1894
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  SArray    *pSubmitArr = NULL;
C
Cary Xu 已提交
1895
  bool       isFetchAll = false;
C
Cary Xu 已提交
1896 1897 1898 1899 1900 1901

  if (!pRSmaStat || !(infoHash = RSMA_INFO_HASH(pRSmaStat))) {
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
    goto _err;
  }

C
Cary Xu 已提交
1902 1903
  if (!(pSubmitArr =
            taosArrayInit(TMIN(RSMA_SUBMIT_BATCH_SIZE, atomic_load_64(&pRSmaStat->nBufItems)), POINTER_BYTES))) {
C
Cary Xu 已提交
1904 1905 1906 1907
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }

C
Cary Xu 已提交
1908 1909
  while (true) {
    // step 1: rsma exec - consume data in buffer queue for all suids
C
Cary Xu 已提交
1910
    if (type == RSMA_EXEC_OVERFLOW) {
1911 1912
      void *pIter = NULL;
      while ((pIter = taosHashIterate(infoHash, pIter))) {
C
Cary Xu 已提交
1913
        SRSmaInfo *pInfo = *(SRSmaInfo **)pIter;
1914 1915 1916 1917 1918 1919 1920 1921
        if (atomic_val_compare_exchange_8(&pInfo->assigned, 0, 1) == 0) {
          if ((taosQueueItemSize(pInfo->queue) > 0) || RSMA_INFO_ITEM(pInfo, 0)->fetchLevel ||
              RSMA_INFO_ITEM(pInfo, 1)->fetchLevel) {
            int32_t batchCnt = -1;
            int32_t batchMax = taosHashGetSize(infoHash) / tsNumOfVnodeRsmaThreads;
            bool    occupied = (batchMax <= 1);
            if (batchMax > 1) {
              batchMax = 100 / batchMax;
C
Cary Xu 已提交
1922
              batchMax = TMAX(batchMax, 4);
C
Cary Xu 已提交
1923
            }
C
Cary Xu 已提交
1924
            while (occupied || (++batchCnt < batchMax)) {    // greedy mode
1925 1926 1927 1928 1929 1930 1931
              taosReadAllQitems(pInfo->queue, pInfo->qall);  // queue has mutex lock
              int32_t qallItemSize = taosQallItemSize(pInfo->qall);
              if (qallItemSize > 0) {
                tdRSmaBatchExec(pSma, pInfo, pInfo->qall, pSubmitArr, type);
                smaDebug("vgId:%d, batchSize:%d, execType:%" PRIi8, SMA_VID(pSma), qallItemSize, type);
              }

1932 1933 1934 1935 1936 1937 1938 1939 1940
              if (RSMA_INFO_ITEM(pInfo, 0)->fetchLevel || RSMA_INFO_ITEM(pInfo, 1)->fetchLevel) {
                int8_t oldStat = atomic_val_compare_exchange_8(RSMA_COMMIT_STAT(pRSmaStat), 0, 2);
                if (oldStat == 0 ||
                    ((oldStat == 2) && atomic_load_8(RSMA_TRIGGER_STAT(pRSmaStat)) < TASK_TRIGGER_STAT_PAUSED)) {
                  atomic_fetch_add_32(&pRSmaStat->nFetchAll, 1);
                  tdRSmaFetchAllResult(pSma, pInfo);
                  if (0 == atomic_sub_fetch_32(&pRSmaStat->nFetchAll, 1)) {
                    atomic_store_8(RSMA_COMMIT_STAT(pRSmaStat), 0);
                  }
C
Cary Xu 已提交
1941
                }
1942 1943 1944 1945 1946 1947
              }

              if (qallItemSize > 0) {
                atomic_fetch_sub_64(&pRSmaStat->nBufItems, qallItemSize);
                continue;
              } else if (RSMA_INFO_ITEM(pInfo, 0)->fetchLevel || RSMA_INFO_ITEM(pInfo, 1)->fetchLevel) {
1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
                if (atomic_load_8(RSMA_COMMIT_STAT(pRSmaStat)) == 0) {
                  continue;
                }
                for (int32_t j = 0; j < TSDB_RETENTION_L2; ++j) {
                  SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, j);
                  if (pItem->fetchLevel) {
                    pItem->fetchLevel = 0;
                    taosTmrReset(tdRSmaFetchTrigger, RSMA_FETCH_INTERVAL, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
                  }
                }
1958 1959 1960
              }

              break;
C
Cary Xu 已提交
1961 1962
            }
          }
1963
          atomic_val_compare_exchange_8(&pInfo->assigned, 1, 0);
C
Cary Xu 已提交
1964
        }
C
Cary Xu 已提交
1965
      }
C
Cary Xu 已提交
1966
    } else {
C
Cary Xu 已提交
1967
      ASSERT(0);
C
Cary Xu 已提交
1968 1969
    }

C
Cary Xu 已提交
1970
    if (atomic_load_64(&pRSmaStat->nBufItems) <= 0) {
C
Cary Xu 已提交
1971
      if (pEnv->flag & SMA_ENV_FLG_CLOSE) {
C
Cary Xu 已提交
1972 1973
        break;
      }
1974

1975
      tsem_wait(&pRSmaStat->notEmpty);
C
Cary Xu 已提交
1976

1977
      if ((pEnv->flag & SMA_ENV_FLG_CLOSE) && (atomic_load_64(&pRSmaStat->nBufItems) <= 0)) {
1978
        smaDebug("vgId:%d, exec task end, flag:%" PRIi8 ", nBufItems:%" PRIi64, SMA_VID(pSma), pEnv->flag,
1979
                 atomic_load_64(&pRSmaStat->nBufItems));
1980 1981
        break;
      }
C
Cary Xu 已提交
1982
    }
1983

C
Cary Xu 已提交
1984
  }  // end of while(true)
C
Cary Xu 已提交
1985 1986

_end:
C
Cary Xu 已提交
1987 1988 1989 1990 1991 1992
  taosArrayDestroy(pSubmitArr);
  return TSDB_CODE_SUCCESS;
_err:
  taosArrayDestroy(pSubmitArr);
  return TSDB_CODE_FAILED;
}