smaRollup.c 41.0 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"
27
typedef struct SRSmaQTaskInfoItem SRSmaQTaskInfoItem;
C
Cary Xu 已提交
28
typedef struct SRSmaQTaskInfoIter SRSmaQTaskInfoIter;
29

30 31 32 33 34 35 36 37 38 39 40
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,
                                          SReadHandle *handle, int8_t idx);
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);
static void       tdRSmaQTaskInfoGetFName(int32_t vid, int64_t version, char *outputName);
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
struct SRSmaInfoItem {
52 53 54 55 56 57
  void   *taskInfo;  // qTaskInfo_t
  int64_t refId;
  tmr_h   tmrId;
  int32_t maxDelay;
  int8_t  level;
  int8_t  triggerStat;
58
};
C
Cary Xu 已提交
59

60
struct SRSmaInfo {
61 62 63
  STSchema     *pTSchema;
  int64_t       suid;
  SRSmaInfoItem items[TSDB_RETENTION_L2];
64 65
};

66 67 68
static SRSmaInfo *tdGetRSmaInfoByItem(SRSmaInfoItem *pItem) {
  // adapt accordingly if definition of SRSmaInfo update
  int32_t rsmaInfoHeadLen = sizeof(int64_t) + sizeof(STSchema *);
69 70
  ASSERT(pItem->level == 0 || pItem->level == 1);
  return (SRSmaInfo *)POINTER_SHIFT(pItem, -sizeof(SRSmaInfoItem) * pItem->level - rsmaInfoHeadLen);
71
}
72

73 74 75 76 77 78 79
struct SRSmaQTaskInfoItem {
  int32_t len;
  int8_t  type;
  int64_t suid;
  void   *qTaskInfo;
};

C
Cary Xu 已提交
80
struct SRSmaQTaskInfoIter {
81 82 83 84 85
  STFile *pTFile;
  int64_t offset;
  int64_t fsize;
  int32_t nBytes;
  int32_t nAlloc;
C
Cary Xu 已提交
86
  char   *pBuf;
87
  // ------------
C
Cary Xu 已提交
88
  char   *qBuf;  // for iterator
89 90 91
  int32_t nBufPos;
};

C
Cary Xu 已提交
92
static void tdRSmaQTaskInfoGetFName(int32_t vgId, int64_t version, char *outputName) {
C
Cary Xu 已提交
93
  tdGetVndFileName(vgId, NULL, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
94 95
}

C
Cary Xu 已提交
96
static FORCE_INLINE int32_t tdRSmaQTaskInfoContLen(int32_t lenWithHead) {
C
Cary Xu 已提交
97
  return lenWithHead - RSMA_QTASKINFO_HEAD_LEN;
C
Cary Xu 已提交
98 99
}

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

C
Cary Xu 已提交
102
static FORCE_INLINE void tdFreeTaskHandle(qTaskInfo_t *taskHandle, int32_t vgId, int32_t level) {
103 104 105
  // Note: free/kill may in RC
  qTaskInfo_t otaskHandle = atomic_load_ptr(taskHandle);
  if (otaskHandle && atomic_val_compare_exchange_ptr(taskHandle, otaskHandle, NULL)) {
C
Cary Xu 已提交
106
    smaDebug("vgId:%d, free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
107
    qDestroyTask(otaskHandle);
C
Cary Xu 已提交
108
  } else {
C
Cary Xu 已提交
109
    smaDebug("vgId:%d, not free qTaskInfo_t %p of level %d", vgId, otaskHandle, level);
110 111 112
  }
}

113
void *tdFreeRSmaInfo(SSma *pSma, SRSmaInfo *pInfo) {
114
  if (pInfo) {
C
Cary Xu 已提交
115
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
116 117
      SRSmaInfoItem *pItem = &pInfo->items[i];
      if (pItem->taskInfo) {
C
Cary Xu 已提交
118 119 120 121 122
        if (pItem->tmrId) {
          smaDebug("vgId:%d, table %" PRIi64 " stop fetch timer %p level %d", SMA_VID(pSma), pInfo->suid, pItem->tmrId,
                   i + 1);
          taosTmrStopA(&pItem->tmrId);
        }
123
        tdFreeTaskHandle(&pItem->taskInfo, SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
124
      } else {
C
Cary Xu 已提交
125
        smaDebug("vgId:%d, table %" PRIi64 " no need to destroy rsma info level %d since empty taskInfo", SMA_VID(pSma),
126
                 pInfo->suid, i + 1);
127
      }
128
    }
129 130
    taosMemoryFree(pInfo->pTSchema);
    taosMemoryFree(pInfo);
131
  }
132

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

  if (!suid || !tbUids) {
    terrno = TSDB_CODE_INVALID_PTR;
S
Shengliang Guan 已提交
151
    smaError("vgId:%d, failed to get rsma info for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr(terrno));
152 153 154
    return TSDB_CODE_FAILED;
  }

155 156 157
  pRSmaInfo = tdGetRSmaInfoBySuid(pSma, *suid);

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

C
Cary Xu 已提交
163 164 165 166 167 168 169 170
  if (pRSmaInfo->items[0].taskInfo) {
    if ((qUpdateQualifiedTableId(pRSmaInfo->items[0].taskInfo, tbUids, true) < 0)) {
      smaError("vgId:%d, update tbUidList failed for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr(terrno));
      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));
    }
171 172
  }

C
Cary Xu 已提交
173 174 175 176 177 178 179 180
  if (pRSmaInfo->items[1].taskInfo) {
    if ((qUpdateQualifiedTableId(pRSmaInfo->items[1].taskInfo, tbUids, true) < 0)) {
      smaError("vgId:%d, update tbUidList failed for uid:%" PRIi64 " since %s", SMA_VID(pSma), *suid, terrstr(terrno));
      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));
    }
181 182 183 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
  }

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

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

  return TSDB_CODE_SUCCESS;
}

255 256
static int32_t tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
                                       SReadHandle *pReadHandle, int8_t idx) {
C
Cary Xu 已提交
257 258 259 260
  SRetention *pRetention = SMA_RETENTION(pSma);
  STsdbCfg   *pTsdbCfg = SMA_TSDB_CFG(pSma);

  if (param->qmsg[idx]) {
C
Cary Xu 已提交
261
    SRSmaInfoItem *pItem = &(pRSmaInfo->items[idx]);
262
    pItem->refId = RSMA_REF_ID(pStat);
C
Cary Xu 已提交
263
    pItem->taskInfo = qCreateStreamExecTaskInfo(param->qmsg[idx], pReadHandle);
C
Cary Xu 已提交
264
    if (!pItem->taskInfo) {
C
Cary Xu 已提交
265
      terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
C
Cary Xu 已提交
266 267
      goto _err;
    }
C
Cary Xu 已提交
268
    pItem->triggerStat = TASK_TRIGGER_STAT_INACTIVE;
C
Cary Xu 已提交
269 270 271
    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 已提交
272
      pItem->maxDelay = (int32_t)msInterval;
C
Cary Xu 已提交
273
    } else {
C
Cary Xu 已提交
274
      pItem->maxDelay = (int32_t)param->maxdelay[idx];
C
Cary Xu 已提交
275
    }
C
Cary Xu 已提交
276 277
    if (pItem->maxDelay > TSDB_MAX_ROLLUP_MAX_DELAY) {
      pItem->maxDelay = TSDB_MAX_ROLLUP_MAX_DELAY;
C
Cary Xu 已提交
278
    }
C
Cary Xu 已提交
279
    pItem->level = idx;
280 281 282
    smaInfo("vgId:%d table:%" PRIi64 " level:%" PRIi8 " maxdelay:%" PRIi64 " watermark:%" PRIi64
            ", finally maxdelay:%" PRIi32,
            SMA_VID(pSma), pRSmaInfo->suid, idx + 1, param->maxdelay[idx], param->watermark[idx], pItem->maxDelay);
C
Cary Xu 已提交
283 284 285 286 287 288
  }
  return TSDB_CODE_SUCCESS;
_err:
  return TSDB_CODE_FAILED;
}

289
/**
290
 * @brief for rsam create or restore
291
 *
292 293 294 295
 * @param pSma
 * @param param
 * @param suid
 * @param tbName
296 297
 * @return int32_t
 */
298 299 300 301
int32_t tdProcessRSmaCreateImpl(SSma *pSma, SRSmaParam *param, int64_t suid, const char *tbName) {
  SVnode *pVnode = pSma->pVnode;
  SMeta  *pMeta = pVnode->pMeta;
  SMsgCb *pMsgCb = &pVnode->msgCb;
302

303
  if ((param->qmsgLen[0] == 0) && (param->qmsgLen[1] == 0)) {
304
    smaDebug("vgId:%d, no qmsg1/qmsg2 for rollup table %s %" PRIi64, SMA_VID(pSma), tbName, suid);
305 306 307
    return TSDB_CODE_SUCCESS;
  }

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

  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
C
Cary Xu 已提交
314
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
315 316
  SRSmaInfo *pRSmaInfo = NULL;

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

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

L
Liu Jicong 已提交
331 332
  STqReader *pReader = tqOpenReader(pVnode);
  if (!pReader) {
333
    terrno = TSDB_CODE_OUT_OF_MEMORY;
334
    goto _err;
335 336 337
  }

  SReadHandle handle = {
L
Liu Jicong 已提交
338
      .tqReader = pReader,
339 340
      .meta = pMeta,
      .pMsgCb = pMsgCb,
5
54liuyao 已提交
341
      .vnode = pVnode,
342 343
  };

344
  STSchema *pTSchema = metaGetTbTSchema(SMA_META(pSma), suid, -1);
345 346 347 348 349
  if (!pTSchema) {
    terrno = TSDB_CODE_TDB_IVD_TB_SCHEMA_VERSION;
    goto _err;
  }
  pRSmaInfo->pTSchema = pTSchema;
350
  pRSmaInfo->suid = suid;
351

352
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, &handle, 0) < 0) {
C
Cary Xu 已提交
353 354
    goto _err;
  }
C
Cary Xu 已提交
355

356
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, &handle, 1) < 0) {
C
Cary Xu 已提交
357 358
    goto _err;
  }
359

360
  if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pRSmaInfo, sizeof(pRSmaInfo)) < 0) {
361
    goto _err;
362 363
  }

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

366
  return TSDB_CODE_SUCCESS;
367
_err:
368
  tdFreeRSmaInfo(pSma, pRSmaInfo);
L
Liu Jicong 已提交
369
  taosMemoryFree(pReader);
370
  return TSDB_CODE_FAILED;
371 372
}

373
/**
C
Cary Xu 已提交
374
 * @brief Check and init qTaskInfo_t, only applicable to stable with SRSmaParam currently
375
 *
376
 * @param pSma
377 378 379
 * @param pReq
 * @return int32_t
 */
380 381
int32_t tdProcessRSmaCreate(SSma *pSma, SVCreateStbReq *pReq) {
  SVnode *pVnode = pSma->pVnode;
382
  if (!pReq->rollup) {
383 384 385 386 387 388 389 390
    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);
391 392 393 394 395 396
    return TSDB_CODE_SUCCESS;
  }

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

397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
/**
 * @brief drop cache for stb
 *
 * @param pSma
 * @param pReq
 * @return int32_t
 */
int32_t tdProcessRSmaDrop(SSma *pSma,  SVDropStbReq *pReq) { 
  SVnode *pVnode = pSma->pVnode;
  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);
    return TSDB_CODE_SUCCESS;
  }

  

  smaDebug("vgId:%d, drop rsma for table %" PRIi64 " succeed", TD_VID(pVnode), pReq->suid);
  return TSDB_CODE_SUCCESS;
 }

418 419 420 421 422 423 424 425 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
/**
 * @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;
        }
465
        if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), &pUidArray, sizeof(pUidArray)) < 0) {
466 467 468 469
          return TSDB_CODE_FAILED;
        }
      }
    } else {
470
      if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), NULL, 0) < 0) {
471 472 473 474 475 476 477 478 479 480 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
        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 已提交
527 528 529
  if (tInitSubmitMsgIter(pMsg, &msgIter) < 0) {
    return -1;
  }
530
  while (true) {
C
Cary Xu 已提交
531 532 533
    if (tGetSubmitMsgNext(&msgIter, &pBlock) < 0) {
      return -1;
    }
534 535 536 537 538

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

C
Cary Xu 已提交
539 540 541
  if (terrno != TSDB_CODE_SUCCESS) {
    return -1;
  }
542 543 544
  return 0;
}

C
Cary Xu 已提交
545
static void tdDestroySDataBlockArray(SArray *pArray) {
C
Cary Xu 已提交
546
  // TODO
C
Cary Xu 已提交
547 548 549 550 551 552 553 554 555
#if 0
  for (int32_t i = 0; i < taosArrayGetSize(pArray); ++i) {
    SSDataBlock *pDataBlock = taosArrayGet(pArray, i);
    blockDestroyInner(pDataBlock);
  }
#endif
  taosArrayDestroy(pArray);
}

556 557 558 559 560 561 562 563 564 565 566
int64_t tdRSmaGetMaxSubmitVer(SSma *pSma, int8_t level) {
  if (level == TSDB_RETENTION_L0) {
    return pSma->pVnode->state.applied;
  }

  SSmaEnv   *pRSmaEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pRSmaStat = (SRSmaStat *)(SMA_ENV_STAT(pRSmaEnv));

  return atomic_load_64(&pRSmaStat->submitVer);
}

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

  while (1) {
    SSDataBlock *output = NULL;
    uint64_t     ts;
575
    if (qExecTask(pItem->taskInfo, &output, &ts) < 0) {
576 577 578 579 580
      ASSERT(false);
    }
    if (!output) {
      break;
    }
C
Cary Xu 已提交
581

582
    if (!pResult) {
C
Cary Xu 已提交
583
      pResult = taosArrayInit(1, sizeof(SSDataBlock));
584 585 586 587 588 589 590 591 592 593
      if (!pResult) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        return TSDB_CODE_FAILED;
      }
    }

    taosArrayPush(pResult, output);
  }

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

608
    if (pReq && tdProcessSubmitReq(sinkTsdb, atomic_add_fetch_64(&pStat->submitVer, 1), pReq) < 0) {
609
      taosMemoryFreeClear(pReq);
610
      smaError("vgId:%d, process submit req for rsma table %" PRIi64 " level %" PRIi8 " failed since %s", SMA_VID(pSma),
611
               suid, pItem->level, terrstr());
C
Cary Xu 已提交
612
      goto _err;
613
    }
614

615
    taosMemoryFreeClear(pReq);
C
Cary Xu 已提交
616 617
  } else if (terrno == 0) {
    smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched yet", SMA_VID(pSma), pItem->level);
618
  } else {
C
Cary Xu 已提交
619
    smaDebug("vgId:%d, no rsma %" PRIi8 " data fetched since %s", SMA_VID(pSma), pItem->level, tstrerror(terrno));
620 621
  }

C
Cary Xu 已提交
622
  tdDestroySDataBlockArray(pResult);
C
Cary Xu 已提交
623 624
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
625
  tdDestroySDataBlockArray(pResult);
C
Cary Xu 已提交
626
  return TSDB_CODE_FAILED;
627 628
}

629 630
static int32_t tdExecuteRSmaImpl(SSma *pSma, const void *pMsg, int32_t inputType, SRSmaInfoItem *pItem,
                                 STSchema *pTSchema, tb_uid_t suid, int8_t level) {
631 632 633 634
  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;
  }
635 636 637 638
  if (!pTSchema) {
    smaWarn("vgId:%d, no schema to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, suid);
    return TSDB_CODE_FAILED;
  }
639 640 641 642

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

L
Liu Jicong 已提交
643
  if (qSetStreamInput(pItem->taskInfo, pMsg, inputType, true) < 0) {  // INPUT__DATA_SUBMIT
644 645 646 647
    smaError("vgId:%d, rsma % " PRIi8 " qSetStreamInput failed since %s", SMA_VID(pSma), level, tstrerror(terrno));
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
648 649 650
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = SMA_RSMA_STAT(pEnv->pStat);

651 652 653 654 655
  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 已提交
656 657 658
  } else {
    ASSERT(0);
  }
659 660 661 662

  return TSDB_CODE_SUCCESS;
}

663 664 665
static SRSmaInfo *tdGetRSmaInfoBySuid(SSma *pSma, int64_t suid) {
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
666 667
  if (!pEnv) {
    // only applicable when rsma env exists
668
    return NULL;
669 670
  }

671 672 673 674
  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
    return NULL;
  }
675

676
  SRSmaInfo *pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
677
  if (!pRSmaInfo || !(pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
678 679 680 681 682 683 684 685
    return NULL;
  }
  return pRSmaInfo;
}

static int32_t tdExecuteRSma(SSma *pSma, const void *pMsg, int32_t inputType, tb_uid_t suid) {
  SRSmaInfo *pRSmaInfo = tdGetRSmaInfoBySuid(pSma, suid);
  if (!pRSmaInfo) {
686
    smaDebug("vgId:%d, return as no rsma info for suid:%" PRIu64, SMA_VID(pSma), suid);
687 688
    return TSDB_CODE_SUCCESS;
  }
689 690 691

  if (!pRSmaInfo->items[0].taskInfo) {
    smaDebug("vgId:%d, return as no rsma qTaskInfo for suid:%" PRIu64, SMA_VID(pSma), suid);
692 693 694
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
695
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
C
Cary Xu 已提交
696 697
    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);
698 699 700 701 702 703 704 705 706 707 708 709
  }

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

710 711 712 713 714 715
  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 已提交
716
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
717 718 719 720
    STbUidStore uidStore = {0};
    tdFetchSubmitReqSuids(pMsg, &uidStore);

    if (uidStore.suid != 0) {
721
      tdExecuteRSma(pSma, pMsg, inputType, uidStore.suid);
722 723 724 725

      void *pIter = taosHashIterate(uidStore.uidHash, NULL);
      while (pIter) {
        tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
726
        tdExecuteRSma(pSma, pMsg, inputType, *pTbSuid);
727 728 729 730 731 732 733 734
        pIter = taosHashIterate(uidStore.uidHash, pIter);
      }

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

C
Cary Xu 已提交
736
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables) {
737 738 739 740
  SVnode *pVnode = pSma->pVnode;

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

C
Cary Xu 已提交
746 747 748 749 750 751
  int64_t arrSize = taosArrayGetSize(suidList);

  if (nTables) {
    *nTables = arrSize;
  }

C
Cary Xu 已提交
752 753 754
  if (arrSize == 0) {
    taosArrayDestroy(suidList);
    smaDebug("vgId:%d, no need to restore rsma env since empty stb id list", TD_VID(pVnode));
755 756 757 758 759
    return TSDB_CODE_SUCCESS;
  }

  SMetaReader mr = {0};
  metaReaderInit(&mr, SMA_META(pSma), 0);
C
Cary Xu 已提交
760
  for (int64_t i = 0; i < arrSize; ++i) {
761
    tb_uid_t suid = *(tb_uid_t *)taosArrayGet(suidList, i);
C
Cary Xu 已提交
762
    smaDebug("vgId:%d, rsma restore, suid is %" PRIi64, TD_VID(pVnode), suid);
763
    if (metaGetTableEntryByUid(&mr, suid) < 0) {
C
Cary Xu 已提交
764 765
      smaError("vgId:%d, rsma restore, failed to get table meta for %" PRIi64 " since %s", TD_VID(pVnode), suid,
               terrstr());
766 767 768 769 770 771
      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 已提交
772 773 774 775
      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]);
776 777
      }
      if (tdProcessRSmaCreateImpl(pSma, &mr.me.stbEntry.rsmaParam, suid, mr.me.name) < 0) {
C
Cary Xu 已提交
778
        smaError("vgId:%d, rsma restore env failed for %" PRIi64 " since %s", TD_VID(pVnode), suid, terrstr());
779 780
        goto _err;
      }
C
Cary Xu 已提交
781
      smaDebug("vgId:%d, rsma restore env success for %" PRIi64, TD_VID(pVnode), suid);
782 783 784
    }
  }

C
Cary Xu 已提交
785 786 787 788 789 790 791 792 793 794 795
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);

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

  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
796
static int32_t tdRSmaRestoreQTaskInfoReload(SSma *pSma, int64_t *committed) {
C
Cary Xu 已提交
797
  SVnode *pVnode = pSma->pVnode;
C
Cary Xu 已提交
798
  STFile  tFile = {0};
C
Cary Xu 已提交
799
  char    qTaskInfoFName[TSDB_FILENAME_LEN] = {0};
800

C
Cary Xu 已提交
801 802
  tdRSmaQTaskInfoGetFName(TD_VID(pVnode), pVnode->state.committed, qTaskInfoFName);
  if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
803 804
    goto _err;
  }
C
Cary Xu 已提交
805 806

  if (!taosCheckExistFile(TD_TFILE_FULL_NAME(&tFile))) {
807
    *committed = 0;
C
Cary Xu 已提交
808 809 810
    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 已提交
811 812 813 814
    } 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 已提交
815
    return TSDB_CODE_SUCCESS;
816 817
  }

818 819 820
  if (tdOpenTFile(&tFile, TD_FILE_READ) < 0) {
    goto _err;
  }
C
Cary Xu 已提交
821

822 823 824 825 826 827 828 829 830 831 832 833
  STFInfo tFileInfo = {0};
  if (tdLoadTFileHeader(&tFile, &tFileInfo) < 0) {
    goto _err;
  }

  ASSERT(tFileInfo.qTaskInfo.submitVer > 0);

  SSmaEnv   *pRSmaEnv = pSma->pRSmaEnv;
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pRSmaEnv);
  atomic_store_64(&pRSmaStat->submitVer, tFileInfo.qTaskInfo.submitVer);
  smaDebug("%s:%d tFileInfo.qTaskInfo.submitVer = %" PRIi64, __func__, __LINE__, tFileInfo.qTaskInfo.submitVer);

C
Cary Xu 已提交
834
  SRSmaQTaskInfoIter fIter = {0};
835
  if (tdRSmaQTaskInfoIterInit(&fIter, &tFile) < 0) {
C
Cary Xu 已提交
836 837
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
838
    tdDestroyTFile(&tFile);
839 840
    goto _err;
  }
C
Cary Xu 已提交
841

C
Cary Xu 已提交
842
  if (tdRSmaQTaskInfoRestore(pSma, &fIter) < 0) {
C
Cary Xu 已提交
843 844
    tdRSmaQTaskInfoIterDestroy(&fIter);
    tdCloseTFile(&tFile);
C
Cary Xu 已提交
845
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
846 847
    goto _err;
  }
848

C
Cary Xu 已提交
849
  tdRSmaQTaskInfoIterDestroy(&fIter);
C
Cary Xu 已提交
850
  tdCloseTFile(&tFile);
C
Cary Xu 已提交
851
  tdDestroyTFile(&tFile);
C
Cary Xu 已提交
852 853 854 855

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

C
Cary Xu 已提交
856 857
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
858 859
  smaError("vgId:%d, rsma restore for version %" PRIi64 ", qtaskinfo reload failed since %s", TD_VID(pVnode),
           pVnode->state.committed, terrstr());
C
Cary Xu 已提交
860 861 862 863 864
  return TSDB_CODE_FAILED;
}

/**
 * @brief reload ts data from checkpoint
C
Cary Xu 已提交
865 866
 *
 * @param pSma
C
Cary Xu 已提交
867
 * @param committed restore from committed version
C
Cary Xu 已提交
868
 * @return int32_t
C
Cary Xu 已提交
869
 */
C
Cary Xu 已提交
870
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma, int64_t committed) {
C
Cary Xu 已提交
871
  // TODO
C
Cary Xu 已提交
872
  smaDebug("vgId:%d, rsma restore from %" PRIi64 ", ts data reload success", SMA_VID(pSma), committed);
C
Cary Xu 已提交
873 874
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
875 876
  smaError("vgId:%d, rsma restore from %" PRIi64 ", ts data reload failed since %s", SMA_VID(pSma), committed,
           terrstr());
C
Cary Xu 已提交
877 878 879 880 881
  return TSDB_CODE_FAILED;
}

int32_t tdProcessRSmaRestoreImpl(SSma *pSma) {
  // step 1: iterate all stables to restore the rsma env
C
Cary Xu 已提交
882
  int64_t nTables = 0;
C
Cary Xu 已提交
883
  if (tdRSmaRestoreQTaskInfoInit(pSma, &nTables) < 0) {
C
Cary Xu 已提交
884 885
    goto _err;
  }
C
Cary Xu 已提交
886

C
Cary Xu 已提交
887 888 889 890
  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 已提交
891 892

  // step 2: retrieve qtaskinfo items from the persistence file(rsma/qtaskinfo) and restore
C
Cary Xu 已提交
893 894
  int64_t committed = -1;
  if (tdRSmaRestoreQTaskInfoReload(pSma, &committed) < 0) {
C
Cary Xu 已提交
895 896 897 898
    goto _err;
  }

  // step 3: reload ts data from checkpoint
899
  if (tdRSmaRestoreTSDataReload(pSma, committed) < 0) {
C
Cary Xu 已提交
900 901 902
    goto _err;
  }

903 904
  return TSDB_CODE_SUCCESS;
_err:
C
Cary Xu 已提交
905
  smaError("vgId:%d failed to restore rsma task since %s", SMA_VID(pSma), terrstr());
906 907 908
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
909
static int32_t tdRSmaQTaskInfoItemRestore(SSma *pSma, const SRSmaQTaskInfoItem *pItem) {
910 911 912
  SRSmaInfo *pRSmaInfo = NULL;
  void      *qTaskInfo = NULL;

913 914
  pRSmaInfo = tdGetRSmaInfoBySuid(pSma, pItem->suid);
  if (!pRSmaInfo) {
C
Cary Xu 已提交
915
    smaDebug("vgId:%d, no restore as no rsma info for table:%" PRIu64, SMA_VID(pSma), pItem->suid);
916 917 918
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
919
  if (pItem->type == TSDB_RETENTION_L1) {
920
    qTaskInfo = pRSmaInfo->items[0].taskInfo;
C
Cary Xu 已提交
921
  } else if (pItem->type == TSDB_RETENTION_L2) {
922 923 924 925 926 927
    qTaskInfo = pRSmaInfo->items[1].taskInfo;
  } else {
    ASSERT(0);
  }

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

C
Cary Xu 已提交
932 933 934
  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,
             pItem->type, terrstr(terrno));
935 936
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
937 938
  smaDebug("vgId:%d, restore rsma task success for table:%" PRIi64 " level %d", SMA_VID(pSma), pItem->suid,
           pItem->type);
939 940 941 942

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
943
static int32_t tdRSmaQTaskInfoIterInit(SRSmaQTaskInfoIter *pIter, STFile *pTFile) {
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
  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 已提交
962 963
  pIter->pBuf = taosMemoryMalloc(pIter->nAlloc);
  if (!pIter->pBuf) {
964 965 966
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
C
Cary Xu 已提交
967
  pIter->qBuf = pIter->pBuf;
968 969 970 971

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
972
static int32_t tdRSmaQTaskInfoIterNextBlock(SRSmaQTaskInfoIter *pIter, bool *isFinish) {
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
  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 已提交
989
  if (tdReadTFile(pTFile, pIter->qBuf, nBytes) != nBytes) {
990 991 992 993
    return TSDB_CODE_FAILED;
  }

  int32_t infoLen = 0;
C
Cary Xu 已提交
994
  taosDecodeFixedI32(pIter->qBuf, &infoLen);
995
  if (infoLen > nBytes) {
C
Cary Xu 已提交
996 997 998 999 1000
    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;
    }
1001
    pIter->nAlloc = infoLen;
C
Cary Xu 已提交
1002
    void *pBuf = taosMemoryRealloc(pIter->pBuf, infoLen);
1003 1004 1005 1006
    if (!pBuf) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1007 1008
    pIter->pBuf = pBuf;
    pIter->qBuf = pIter->pBuf;
1009 1010 1011 1012 1013 1014
    nBytes = infoLen;

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

C
Cary Xu 已提交
1015
    if (tdReadTFile(pTFile, pIter->pBuf, nBytes) != nBytes) {
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
      return TSDB_CODE_FAILED;
    }
  }

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

  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
1027
static int32_t tdRSmaQTaskInfoRestore(SSma *pSma, SRSmaQTaskInfoIter *pIter) {
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
  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 已提交
1040 1041
    pIter->qBuf = taosDecodeFixedI32(pIter->qBuf, &qTaskInfoLenWithHead);
    if (qTaskInfoLenWithHead < RSMA_QTASKINFO_HEAD_LEN) {
1042
      terrno = TSDB_CODE_TDB_FILE_CORRUPTED;
C
Cary Xu 已提交
1043 1044
      smaError("vgId:%d, restore rsma qtaskinfo file %s failed since %s", SMA_VID(pSma),
               TD_TFILE_FULL_NAME(pIter->pTFile), terrstr());
1045 1046
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1047

1048 1049
    while (1) {
      if ((pIter->nBufPos + qTaskInfoLenWithHead) <= pIter->nBytes) {
C
Cary Xu 已提交
1050 1051 1052 1053 1054
        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);
1055
        // do the restore job
C
Cary Xu 已提交
1056 1057 1058
        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);
1059

C
Cary Xu 已提交
1060
        pIter->qBuf = POINTER_SHIFT(pIter->qBuf, infoItem.len);
1061 1062
        pIter->nBufPos += qTaskInfoLenWithHead;

C
Cary Xu 已提交
1063 1064 1065 1066 1067 1068 1069
        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);
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
        continue;
      }
      // prepare and load next block in the file
      pIter->offset -= (pIter->nBytes - pIter->nBufPos);
      break;
    }
  }

  return TSDB_CODE_SUCCESS;
}
C
Cary Xu 已提交
1080

C
Cary Xu 已提交
1081
int32_t tdRSmaPersistExecImpl(SRSmaStat *pRSmaStat) {
C
Cary Xu 已提交
1082 1083 1084 1085 1086
  SSma   *pSma = pRSmaStat->pSma;
  SVnode *pVnode = pSma->pVnode;
  int32_t vid = SMA_VID(pSma);
  int64_t toffset = 0;
  bool    isFileCreated = false;
C
Cary Xu 已提交
1087

1088 1089 1090 1091
  if (taosHashGetSize(RSMA_INFO_HASH(pRSmaStat)) <= 0) {
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1092 1093
  void *infoHash = taosHashIterate(RSMA_INFO_HASH(pRSmaStat), NULL);
  if (!infoHash) {
C
Cary Xu 已提交
1094
    return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1095 1096 1097
  }

  STFile tFile = {0};
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
  if (RSMA_SUBMIT_VER(pRSmaStat) > 0) {
    char qTaskInfoFName[TSDB_FILENAME_LEN];
    tdRSmaQTaskInfoGetFName(vid, pSma->pVnode->state.applied, qTaskInfoFName);
    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 已提交
1114 1115 1116 1117 1118
  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) {
1119
        smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d qTaskInfo is NULL", vid, pRSmaInfo->suid, i + 1);
C
Cary Xu 已提交
1120 1121 1122 1123 1124 1125 1126
        continue;
      }

      char   *pOutput = NULL;
      int32_t len = 0;
      int8_t  type = (int8_t)(i + 1);
      if (qSerializeTaskStatus(taskInfo, &pOutput, &len) < 0) {
1127 1128
        smaError("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo failed since %s", vid, pRSmaInfo->suid,
                 i + 1, terrstr(terrno));
C
Cary Xu 已提交
1129 1130 1131
        goto _err;
      }
      if (!pOutput || len <= 0) {
1132 1133
        smaDebug("vgId:%d, rsma, table %" PRIi64
                 " level %d serialize qTaskInfo success but no output(len %d), not persist",
C
Cary Xu 已提交
1134 1135 1136 1137 1138
                 vid, pRSmaInfo->suid, i + 1, len);
        taosMemoryFreeClear(pOutput);
        continue;
      }

1139
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d serialize qTaskInfo success with len %d, need persist", vid,
C
Cary Xu 已提交
1140 1141 1142 1143
               pRSmaInfo->suid, i + 1, len);

      if (!isFileCreated) {
        char qTaskInfoFName[TSDB_FILENAME_LEN];
C
Cary Xu 已提交
1144 1145
        tdRSmaQTaskInfoGetFName(vid, pSma->pVnode->state.applied, qTaskInfoFName);
        if (tdInitTFile(&tFile, tfsGetPrimaryPath(pVnode->pTfs), qTaskInfoFName) < 0) {
C
Cary Xu 已提交
1146
          smaError("vgId:%d, rsma persit, init %s failed since %s", vid, qTaskInfoFName, terrstr());
C
Cary Xu 已提交
1147 1148
          goto _err;
        }
1149
        if (tdCreateTFile(&tFile, true, TD_FTYPE_RSMA_QTASKINFO) < 0) {
C
Cary Xu 已提交
1150
          smaError("vgId:%d, rsma persit, create %s failed since %s", vid, TD_TFILE_FULL_NAME(&tFile), terrstr());
C
Cary Xu 已提交
1151 1152
          goto _err;
        }
1153 1154
        smaDebug("vgId:%d, rsma, table %" PRIi64 " serialize qTaskInfo, file %s created", vid, pRSmaInfo->suid,
                 TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167

        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);
1168
      smaDebug("vgId:%d, rsma, table %" PRIi64 " level %d head part(len:%d) appended to offset:%" PRIi64, vid,
1169
               pRSmaInfo->suid, i + 1, headLen, toffset);
C
Cary Xu 已提交
1170
      tdAppendTFile(&tFile, pOutput, len, &toffset);
1171 1172
      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 已提交
1173 1174 1175 1176 1177 1178

      taosMemoryFree(pOutput);
    }

    infoHash = taosHashIterate(RSMA_INFO_HASH(pRSmaStat), infoHash);
  }
C
Cary Xu 已提交
1179

C
Cary Xu 已提交
1180
  if (isFileCreated) {
1181
    tFile.info.qTaskInfo.submitVer = atomic_load_64(&pRSmaStat->submitVer);
C
Cary Xu 已提交
1182
    if (tdUpdateTFileHeader(&tFile) < 0) {
1183
      smaError("vgId:%d, rsma, failed to update tfile %s header since %s", vid, TD_TFILE_FULL_NAME(&tFile),
C
Cary Xu 已提交
1184 1185 1186
               tstrerror(terrno));
      goto _err;
    } else {
1187
      smaDebug("vgId:%d, rsma, succeed to update tfile %s header", vid, TD_TFILE_FULL_NAME(&tFile));
C
Cary Xu 已提交
1188 1189 1190
    }

    tdCloseTFile(&tFile);
C
Cary Xu 已提交
1191
    tdDestroyTFile(&tFile);
C
Cary Xu 已提交
1192
  }
C
Cary Xu 已提交
1193
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1194
_err:
C
Cary Xu 已提交
1195
  smaError("vgId:%d, rsma persit failed since %s", vid, terrstr());
C
Cary Xu 已提交
1196 1197
  if (isFileCreated) {
    tdRemoveTFile(&tFile);
C
Cary Xu 已提交
1198 1199 1200 1201 1202
    tdDestroyTFile(&tFile);
  }
  return TSDB_CODE_FAILED;
}

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
/**
 * @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:
1226
    case TASK_TRIGGER_STAT_CANCELLED: {
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
      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);
      return;
    }
    default:
      break;
  }

  SRSmaInfo *pRSmaInfo = tdGetRSmaInfoByItem(pItem);

1239
  ASSERT(pRSmaInfo->items[pItem->level].level == pItem->level);
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276

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

      tdRefSmaStat(pSma, (SSmaStat *)pStat);

      SSDataBlock dataBlock = {.info.type = STREAM_GET_ALL};
      qSetStreamInput(pItem->taskInfo, &dataBlock, STREAM_INPUT__DATA_BLOCK, false);
      tdRSmaFetchAndSubmitResult(pItem, pRSmaInfo->pTSchema, pRSmaInfo->suid, pStat, STREAM_INPUT__DATA_BLOCK);

      tdUnRefSmaStat(pSma, (SSmaStat *)pStat);
    } 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__);
}