smaRollup.c 51.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include "sma.h"

L
Liu Jicong 已提交
18 19 20 21 22
#define RSMA_QTASKEXEC_SMOOTH_SIZE (100)     // cnt
#define RSMA_SUBMIT_BATCH_SIZE     (1024)    // cnt
#define RSMA_FETCH_DELAY_MAX       (120000)  // ms
#define RSMA_FETCH_ACTIVE_MAX      (1000)    // ms
#define RSMA_FETCH_INTERVAL        (5000)    // ms
C
Cary Xu 已提交
23

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

C
Cary Xu 已提交
29 30
#define TD_QTASKINFO_FNAME_PREFIX "qinf.v"

31
typedef struct SRSmaQTaskInfoItem SRSmaQTaskInfoItem;
C
Cary Xu 已提交
32
typedef struct SRSmaQTaskInfoIter SRSmaQTaskInfoIter;
33

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

53 54 55 56 57 58 59
struct SRSmaQTaskInfoItem {
  int32_t len;
  int8_t  type;
  int64_t suid;
  void   *qTaskInfo;
};

C
Cary Xu 已提交
60
struct SRSmaQTaskInfoIter {
61 62 63 64 65
  STFile *pTFile;
  int64_t offset;
  int64_t fsize;
  int32_t nBytes;
  int32_t nAlloc;
C
Cary Xu 已提交
66
  char   *pBuf;
67
  // ------------
C
Cary Xu 已提交
68
  char   *qBuf;  // for iterator
69 70 71
  int32_t nBufPos;
};

C
Cary Xu 已提交
72
void tdRSmaQTaskInfoGetFileName(int32_t vgId, int64_t version, char *outputName) {
C
Cary Xu 已提交
73
  tdGetVndFileName(vgId, NULL, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
74 75
}

76
void tdRSmaQTaskInfoGetFullName(int32_t vgId, int64_t version, const char *path, char *outputName) {
C
Cary Xu 已提交
77 78 79
  tdGetVndFileName(vgId, path, VNODE_RSMA_DIR, TD_QTASKINFO_FNAME_PREFIX, version, outputName);
}

80 81 82 83 84 85 86 87 88 89 90 91
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);
}

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

C
Cary Xu 已提交
105 106 107 108 109 110 111 112 113
/**
 * @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) {
114
  if (pInfo) {
C
Cary Xu 已提交
115
    for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
116
      SRSmaInfoItem *pItem = &pInfo->items[i];
C
Cary Xu 已提交
117

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

124 125 126 127
      if (isDeepFree && pItem->pStreamState) {
        streamStateClose(pItem->pStreamState);
      }

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

      if (pInfo->iTaskInfo[i]) {
C
Cary Xu 已提交
136
        tdRSmaQTaskInfoFree(&pInfo->iTaskInfo[i], SMA_VID(pSma), i + 1);
C
Cary Xu 已提交
137
      } else {
C
Cary Xu 已提交
138 139
        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 已提交
140
      }
141
    }
C
Cary Xu 已提交
142
    if (isDeepFree) {
C
Cary Xu 已提交
143
      taosMemoryFreeClear(pInfo->pTSchema);
C
Cary Xu 已提交
144
    }
C
Cary Xu 已提交
145 146 147 148

    if (isDeepFree) {
      if (pInfo->queue) taosCloseQueue(pInfo->queue);
      if (pInfo->qall) taosFreeQall(pInfo->qall);
C
Cary Xu 已提交
149 150
      if (pInfo->iQueue) taosCloseQueue(pInfo->iQueue);
      if (pInfo->iQall) taosFreeQall(pInfo->iQall);
C
Cary Xu 已提交
151 152
      pInfo->queue = NULL;
      pInfo->qall = NULL;
C
Cary Xu 已提交
153 154
      pInfo->iQueue = NULL;
      pInfo->iQall = NULL;
C
Cary Xu 已提交
155 156
    }

C
Cary Xu 已提交
157 158
    taosMemoryFree(pInfo);
  }
159

160 161 162 163 164 165 166 167 168 169 170 171 172
  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;
}

173
static int32_t tdUpdateTbUidListImpl(SSma *pSma, tb_uid_t *suid, SArray *tbUids, bool isAdd) {
174 175 176 177
  SRSmaInfo *pRSmaInfo = NULL;

  if (!suid || !tbUids) {
    terrno = TSDB_CODE_INVALID_PTR;
C
Cary Xu 已提交
178 179
    smaError("vgId:%d, failed to get rsma info for uid:%" PRIi64 " since %s", SMA_VID(pSma), suid ? *suid : -1,
             terrstr());
180 181 182
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
183 184 185 186 187
  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 已提交
188
  pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, *suid);
189 190

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

C
Cary Xu 已提交
196 197
  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pRSmaInfo->taskInfo[i]) {
198
      if (((terrno = qUpdateQualifiedTableId(pRSmaInfo->taskInfo[i], tbUids, isAdd)) < 0)) {
C
Cary Xu 已提交
199
        tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
200 201 202 203 204 205 206
        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 已提交
207
    }
208 209
  }

C
Cary Xu 已提交
210
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
211 212 213
  return TSDB_CODE_SUCCESS;
}

214
int32_t tdUpdateTbUidList(SSma *pSma, STbUidStore *pStore, bool isAdd) {
215 216 217 218
  if (!pStore || (taosArrayGetSize(pStore->tbUids) == 0)) {
    return TSDB_CODE_SUCCESS;
  }

219
  if (tdUpdateTbUidListImpl(pSma, &pStore->suid, pStore->tbUids, isAdd) != TSDB_CODE_SUCCESS) {
220 221 222 223 224 225 226 227
    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;

228
    if (tdUpdateTbUidListImpl(pSma, pTbSuid, pTbUids, isAdd) != TSDB_CODE_SUCCESS) {
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
      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 已提交
255 256 257
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  if (!pStat || !(infoHash = RSMA_INFO_HASH(pStat))) {
C
Cary Xu 已提交
258
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
259 260 261 262 263 264 265 266 267 268 269
    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)) {
270
    if (tdUidStoreInit(ppStore) < 0) {
271 272 273 274
      return TSDB_CODE_FAILED;
    }
  }

275
  if (tdUidStorePut(*ppStore, suid, &uid) < 0) {
276 277 278 279 280 281 282
    *ppStore = tdUidStoreFree(*ppStore);
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

283
static int32_t tdSetRSmaInfoItemParams(SSma *pSma, SRSmaParam *param, SRSmaStat *pStat, SRSmaInfo *pRSmaInfo,
L
Liu Jicong 已提交
284
                                       int8_t idx) {
C
Cary Xu 已提交
285 286 287
  if ((param->qmsgLen > 0) && param->qmsg[idx]) {
    SRetention *pRetention = SMA_RETENTION(pSma);
    STsdbCfg   *pTsdbCfg = SMA_TSDB_CFG(pSma);
C
Cary Xu 已提交
288
    SVnode     *pVnode = pSma->pVnode;
289 290 291 292 293 294 295 296 297 298 299 300 301 302
    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);
    }
303
    pStreamState = streamStateOpen(taskInfDir, NULL, true, -1, -1);
304 305 306 307 308
    if (!pStreamState) {
      terrno = TSDB_CODE_RSMA_STREAM_STATE_OPEN;
      return TSDB_CODE_FAILED;
    }

C
Cary Xu 已提交
309
    SReadHandle handle = {
C
Cary Xu 已提交
310 311
        .meta = pVnode->pMeta,
        .vnode = pVnode,
C
Cary Xu 已提交
312
        .initTqReader = 1,
313
        .pStateBackend = pStreamState,
C
Cary Xu 已提交
314
    };
C
Cary Xu 已提交
315 316
    pRSmaInfo->taskInfo[idx] = qCreateStreamExecTaskInfo(param->qmsg[idx], &handle);
    if (!pRSmaInfo->taskInfo[idx]) {
C
Cary Xu 已提交
317
      terrno = TSDB_CODE_RSMA_QTASKINFO_CREATE;
C
Cary Xu 已提交
318
      return TSDB_CODE_FAILED;
C
Cary Xu 已提交
319
    }
C
Cary Xu 已提交
320
    SRSmaInfoItem *pItem = &(pRSmaInfo->items[idx]);
321
    pItem->triggerStat = TASK_TRIGGER_STAT_ACTIVE;  // fetch the data when reboot
322
    pItem->pStreamState = pStreamState;
C
Cary Xu 已提交
323 324 325
    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 已提交
326
      pItem->maxDelay = (int32_t)msInterval;
C
Cary Xu 已提交
327
    } else {
C
Cary Xu 已提交
328
      pItem->maxDelay = (int32_t)param->maxdelay[idx];
C
Cary Xu 已提交
329
    }
C
Cary Xu 已提交
330 331
    if (pItem->maxDelay > TSDB_MAX_ROLLUP_MAX_DELAY) {
      pItem->maxDelay = TSDB_MAX_ROLLUP_MAX_DELAY;
C
Cary Xu 已提交
332
    }
C
Cary Xu 已提交
333

334
    pItem->level = idx == 0 ? TSDB_RETENTION_L1 : TSDB_RETENTION_L2;
335 336 337 338 339
    ASSERT(pItem->level > 0);

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

340 341
    pItem->fetchLevel = pItem->level;
    taosTmrReset(tdRSmaFetchTrigger, RSMA_FETCH_INTERVAL, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
342 343

    smaInfo("vgId:%d, item:%p table:%" PRIi64 " level:%" PRIi8 " maxdelay:%" PRIi64 " watermark:%" PRIi64
344
            ", finally maxdelay:%" PRIi32,
345
            TD_VID(pVnode), pItem, pRSmaInfo->suid, (int8_t)(idx + 1), param->maxdelay[idx], param->watermark[idx],
346
            pItem->maxDelay);
C
Cary Xu 已提交
347 348 349 350
  }
  return TSDB_CODE_SUCCESS;
}

351
/**
352
 * @brief for rsam create or restore
353
 *
354 355 356 357
 * @param pSma
 * @param param
 * @param suid
 * @param tbName
358 359
 * @return int32_t
 */
360
int32_t tdRSmaProcessCreateImpl(SSma *pSma, SRSmaParam *param, int64_t suid, const char *tbName) {
361
  if ((param->qmsgLen[0] == 0) && (param->qmsgLen[1] == 0)) {
362
    smaDebug("vgId:%d, no qmsg1/qmsg2 for rollup table %s %" PRIi64, SMA_VID(pSma), tbName, suid);
363 364 365
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
366
  if (tdCheckAndInitSmaEnv(pSma, TSDB_SMA_TYPE_ROLLUP) != TSDB_CODE_SUCCESS) {
367 368 369 370 371
    terrno = TSDB_CODE_TDB_INIT_FAILED;
    return TSDB_CODE_FAILED;
  }

  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
C
Cary Xu 已提交
372
  SRSmaStat *pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
373 374
  SRSmaInfo *pRSmaInfo = NULL;

375
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
376
  if (pRSmaInfo) {
377 378 379 380 381 382 383
    // 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);
384 385
  }

386
  // from write queue: single thead
387 388 389 390 391 392
  pRSmaInfo = (SRSmaInfo *)taosMemoryCalloc(1, sizeof(SRSmaInfo));
  if (!pRSmaInfo) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }

393
  STSchema *pTSchema = metaGetTbTSchema(SMA_META(pSma), suid, -1, 1);
394 395 396 397
  if (!pTSchema) {
    terrno = TSDB_CODE_TDB_IVD_TB_SCHEMA_VERSION;
    goto _err;
  }
C
Cary Xu 已提交
398
  pRSmaInfo->pSma = pSma;
399
  pRSmaInfo->pTSchema = pTSchema;
C
Cary Xu 已提交
400 401
  pRSmaInfo->suid = suid;
  T_REF_INIT_VAL(pRSmaInfo, 1);
C
Cary Xu 已提交
402 403 404
  if (!(pRSmaInfo->queue = taosOpenQueue())) {
    goto _err;
  }
C
Cary Xu 已提交
405

C
Cary Xu 已提交
406 407 408
  if (!(pRSmaInfo->qall = taosAllocateQall())) {
    goto _err;
  }
C
Cary Xu 已提交
409 410 411 412 413 414
  if (!(pRSmaInfo->iQueue = taosOpenQueue())) {
    goto _err;
  }
  if (!(pRSmaInfo->iQall = taosAllocateQall())) {
    goto _err;
  }
415

L
Liu Jicong 已提交
416
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 0) < 0) {
C
Cary Xu 已提交
417 418
    goto _err;
  }
C
Cary Xu 已提交
419

L
Liu Jicong 已提交
420
  if (tdSetRSmaInfoItemParams(pSma, param, pStat, pRSmaInfo, 1) < 0) {
C
Cary Xu 已提交
421 422
    goto _err;
  }
423

424
  if (taosHashPut(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t), &pRSmaInfo, sizeof(pRSmaInfo)) < 0) {
425
    goto _err;
426 427
  }

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

430
  return TSDB_CODE_SUCCESS;
431
_err:
C
Cary Xu 已提交
432
  tdFreeRSmaInfo(pSma, pRSmaInfo, true);
433
  return TSDB_CODE_FAILED;
434 435
}

436
/**
C
Cary Xu 已提交
437
 * @brief Check and init qTaskInfo_t, only applicable to stable with SRSmaParam currently
438
 *
439
 * @param pSma
440 441 442
 * @param pReq
 * @return int32_t
 */
443 444
int32_t tdProcessRSmaCreate(SSma *pSma, SVCreateStbReq *pReq) {
  SVnode *pVnode = pSma->pVnode;
445
  if (!pReq->rollup) {
446 447 448 449 450 451 452 453
    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);
454 455 456
    return TSDB_CODE_SUCCESS;
  }

457
  return tdRSmaProcessCreateImpl(pSma, &pReq->rsmaParam, pReq->suid, pReq->name);
458 459
}

460 461 462 463 464 465 466
/**
 * @brief drop cache for stb
 *
 * @param pSma
 * @param pReq
 * @return int32_t
 */
L
Liu Jicong 已提交
467
int32_t tdProcessRSmaDrop(SSma *pSma, SVDropStbReq *pReq) {
468 469
  SVnode *pVnode = pSma->pVnode;
  if (!VND_IS_RSMA(pVnode)) {
C
Cary Xu 已提交
470
    smaTrace("vgId:%d, not drop rsma for stable %s %" PRIi64 " since vnd is not rsma", TD_VID(pVnode), pReq->name,
471 472 473 474
             pReq->suid);
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
475 476 477 478 479
  SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
  if (!pSmaEnv) {
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
480
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pSmaEnv);
C
Cary Xu 已提交
481

C
Cary Xu 已提交
482
  SRSmaInfo *pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pReq->suid);
C
Cary Xu 已提交
483 484 485 486 487 488 489 490

  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
491
  atomic_store_8(&pRSmaStat->delFlag, 1);
C
Cary Xu 已提交
492 493 494
  RSMA_INFO_SET_DEL(pRSmaInfo);
  tdUnRefRSmaInfo(pSma, pRSmaInfo);

C
Cary Xu 已提交
495
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
C
Cary Xu 已提交
496

C
Cary Xu 已提交
497 498
  // save to file
  // TODO
499 500
  smaDebug("vgId:%d, drop rsma for table %" PRIi64 " succeed", TD_VID(pVnode), pReq->suid);
  return TSDB_CODE_SUCCESS;
L
Liu Jicong 已提交
501
}
502

503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
/**
 * @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;
C
Cary Xu 已提交
548
          taosArrayDestroy(pUidArray);
549 550
          return TSDB_CODE_FAILED;
        }
551
        if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), &pUidArray, sizeof(pUidArray)) < 0) {
552 553 554 555
          return TSDB_CODE_FAILED;
        }
      }
    } else {
556
      if (taosHashPut(pStore->uidHash, &suid, sizeof(suid), NULL, 0) < 0) {
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
        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 已提交
590 591 592 593 594 595 596 597
/**
 * @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
 */
598 599 600 601 602 603
static int32_t tdProcessSubmitReq(STsdb *pTsdb, int64_t version, void *pReq) {
  if (!pReq) {
    terrno = TSDB_CODE_INVALID_PTR;
    return TSDB_CODE_FAILED;
  }

604 605
  SSubmitReq2 *pSubmitReq = (SSubmitReq2 *)pReq;
  // spin lock for race condition during insert data
606 607 608 609 610 611 612
  if (tsdbInsertData(pTsdb, version, pSubmitReq, NULL) < 0) {
    return TSDB_CODE_FAILED;
  }

  return TSDB_CODE_SUCCESS;
}

613 614 615
static int32_t tdFetchSubmitReqSuids(SSubmitReq2 *pMsg, STbUidStore *pStore) {
  SArray *pSubmitTbData = pMsg ? pMsg->aSubmitTbData : NULL;
  int32_t size = taosArrayGetSize(pSubmitTbData);
616 617 618

  terrno = TSDB_CODE_SUCCESS;

619 620 621
  for (int32_t i = 0; i < size; ++i) {
    SSubmitTbData *pData = TARRAY_GET_ELEM(pSubmitTbData, i);
    if (terrno = tdUidStorePut(pStore, pData->suid, NULL) < 0) {
C
Cary Xu 已提交
622 623
      return -1;
    }
624 625 626 627 628
  }

  return 0;
}

C
Cary Xu 已提交
629 630
/**
 * @brief retention of rsma1/rsma2
C
Cary Xu 已提交
631 632 633 634
 *
 * @param pSma
 * @param now
 * @return int32_t
C
Cary Xu 已提交
635
 */
636
int32_t smaDoRetention(SSma *pSma, int64_t now) {
C
Cary Xu 已提交
637
  int32_t code = TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
638
  if (!VND_IS_RSMA(pSma->pVnode)) {
C
Cary Xu 已提交
639 640 641 642 643
    return code;
  }

  for (int32_t i = 0; i < TSDB_RETENTION_L2; ++i) {
    if (pSma->pRSmaTsdb[i]) {
644
      code = tsdbDoRetention(pSma->pRSmaTsdb[i], now);
C
Cary Xu 已提交
645 646 647 648 649 650 651 652
      if (code) goto _end;
    }
  }

_end:
  return code;
}

K
kailixu 已提交
653 654 655 656 657 658 659
static void tdBlockDataDestroy(SArray *pBlockArr) {
  for (int32_t i = 0; i < taosArrayGetSize(pBlockArr); ++i) {
    blockDataDestroy(taosArrayGetP(pBlockArr, i));
  }
  taosArrayDestroy(pBlockArr);
}

C
Cary Xu 已提交
660 661
static int32_t tdRSmaExecAndSubmitResult(SSma *pSma, qTaskInfo_t taskInfo, SRSmaInfoItem *pItem, STSchema *pTSchema,
                                         int64_t suid) {
H
Haojun Liao 已提交
662 663 664 665 666
  SArray *pResList = taosArrayInit(1, POINTER_BYTES);
  if (pResList == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }
667

H
Haojun Liao 已提交
668 669
  while (1) {
    uint64_t ts;
670
    bool     hasMore = false;
671
    int32_t  code = qExecTaskOpt(taskInfo, pResList, &ts, &hasMore, NULL);
C
Cary Xu 已提交
672
    if (code < 0) {
C
Cary Xu 已提交
673 674 675 676 677 678 679
      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;
      }
680
    }
C
Cary Xu 已提交
681

H
Haojun Liao 已提交
682 683
    if (taosArrayGetSize(pResList) == 0) {
      if (terrno == 0) {
684
        // smaDebug("vgId:%d, no rsma level %" PRIi8 " data fetched yet", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
685
      } else {
686
        smaDebug("vgId:%d, no rsma level %" PRIi8 " data fetched since %s", SMA_VID(pSma), pItem->level, terrstr());
H
Haojun Liao 已提交
687 688 689 690
        goto _err;
      }

      break;
C
Cary Xu 已提交
691
    } else {
692
      smaDebug("vgId:%d, rsma level %" PRIi8 " data fetched", SMA_VID(pSma), pItem->level);
H
Haojun Liao 已提交
693
    }
C
Cary Xu 已提交
694
#if 0
C
Cary Xu 已提交
695 696 697
    char flag[10] = {0};
    snprintf(flag, 10, "level %" PRIi8, pItem->level);
    blockDebugShowDataBlocks(pResList, flag);
C
Cary Xu 已提交
698
#endif
C
Cary Xu 已提交
699 700
    for (int32_t i = 0; i < taosArrayGetSize(pResList); ++i) {
      SSDataBlock *output = taosArrayGetP(pResList, i);
H
Haojun Liao 已提交
701
      smaDebug("result block, uid:%" PRIu64 ", groupid:%" PRIu64 ", rows:%d", output->info.id.uid, output->info.id.groupId,
K
kailixu 已提交
702
               output->info.rows);
H
Haojun Liao 已提交
703

K
kailixu 已提交
704
      STsdb      *sinkTsdb = (pItem->level == TSDB_RETENTION_L1 ? pSma->pRSmaTsdb[0] : pSma->pRSmaTsdb[1]);
705
      SSubmitReq2 *pReq = NULL;
C
Cary Xu 已提交
706 707 708

      // TODO: the schema update should be handled later(TD-17965)
      if (buildSubmitReqFromDataBlock(&pReq, output, pTSchema, SMA_VID(pSma), suid) < 0) {
K
kailixu 已提交
709 710
        smaError("vgId:%d, build submit req for rsma table suid:%" PRIu64 ", uid:%" PRIu64 ", level %" PRIi8
                 " failed since %s",
H
Haojun Liao 已提交
711
                 SMA_VID(pSma), suid, output->info.id.groupId, pItem->level, terrstr());
C
Cary Xu 已提交
712 713
        goto _err;
      }
714

C
Cary Xu 已提交
715
      if (pReq && tdProcessSubmitReq(sinkTsdb, output->info.version, pReq) < 0) {
716
        tDestroySSubmitReq2(pReq, TSDB_MSG_FLG_ENCODE);
K
kailixu 已提交
717 718
        smaError("vgId:%d, process submit req for rsma suid:%" PRIu64 ", uid:%" PRIu64 " level %" PRIi8
                 " failed since %s",
H
Haojun Liao 已提交
719
                 SMA_VID(pSma), suid, output->info.id.groupId, pItem->level, terrstr());
C
Cary Xu 已提交
720 721
        goto _err;
      }
C
Cary Xu 已提交
722

723 724
      smaDebug("vgId:%d, process submit req for rsma suid:%" PRIu64 ",uid:%" PRIu64 ", level %" PRIi8 " ver %" PRIi64,
               SMA_VID(pSma), suid, output->info.id.groupId, pItem->level, output->info.version);
725

726
      if(pReq) tDestroySSubmitReq2(pReq, TSDB_MSG_FLG_ENCODE);
C
Cary Xu 已提交
727
    }
728 729
  }

H
Haojun Liao 已提交
730 731
  taosArrayDestroy(pResList);
  qCleanExecTaskBlockBuf(taskInfo);
C
Cary Xu 已提交
732
  return TSDB_CODE_SUCCESS;
H
Haojun Liao 已提交
733

C
Cary Xu 已提交
734
_err:
H
Haojun Liao 已提交
735 736
  taosArrayDestroy(pResList);
  qCleanExecTaskBlockBuf(taskInfo);
C
Cary Xu 已提交
737
  return TSDB_CODE_FAILED;
738 739
}

C
Cary Xu 已提交
740
/**
C
Cary Xu 已提交
741
 * @brief Copy msg to rsmaQueueBuffer for batch process
C
Cary Xu 已提交
742 743 744
 *
 * @param pSma
 * @param pMsg
745
 * @param len
C
Cary Xu 已提交
746 747 748 749 750
 * @param inputType
 * @param pInfo
 * @param suid
 * @return int32_t
 */
751
static int32_t tdExecuteRSmaImplAsync(SSma *pSma, const void *pMsg, int32_t len, int32_t inputType, SRSmaInfo *pInfo,
C
Cary Xu 已提交
752
                                      tb_uid_t suid) {
753
  void *qItem = taosAllocateQitem(len, DEF_QITEM);
C
Cary Xu 已提交
754 755 756 757
  if (!qItem) {
    return TSDB_CODE_FAILED;
  }

758
  memcpy(qItem, pMsg, len);
C
Cary Xu 已提交
759 760 761

  taosWriteQitem(pInfo->queue, qItem);

C
Cary Xu 已提交
762 763
  pInfo->lastRecv = taosGetTimestampMs();

C
Cary Xu 已提交
764
  SRSmaStat *pRSmaStat = SMA_RSMA_STAT(pSma);
C
Cary Xu 已提交
765 766

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

768 769 770 771
  if (atomic_load_8(&pInfo->assigned) == 0) {
    tsem_post(&(pRSmaStat->notEmpty));
  }

C
Cary Xu 已提交
772
  // smoothing consume
C
Cary Xu 已提交
773
  int32_t n = nItems / RSMA_QTASKEXEC_SMOOTH_SIZE;
C
Cary Xu 已提交
774 775 776 777
  if (n > 1) {
    if (n > 10) {
      n = 10;
    }
C
Cary Xu 已提交
778 779
    taosMsleep(n << 3);
    if (n > 5) {
C
Cary Xu 已提交
780
      smaWarn("vgId:%d, pInfo->queue itemSize:%d, memSize:%" PRIi64 ", sleep %d ms", SMA_VID(pSma),
C
Cary Xu 已提交
781
              taosQueueItemSize(pInfo->queue), taosQueueMemorySize(pInfo->queue), n << 3);
C
Cary Xu 已提交
782 783
    }
  }
C
Cary Xu 已提交
784

C
Cary Xu 已提交
785 786 787
  return TSDB_CODE_SUCCESS;
}

788
#if 0
C
Cary Xu 已提交
789 790 791 792 793 794 795 796 797 798 799
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 已提交
800
      smaDebug("vgId:%d, numOfRows:%d, suid:%" PRIi64 ", uid:%" PRIi64 ", version:%" PRIi64 ", ts:%" PRIi64,
C
Cary Xu 已提交
801 802 803 804 805
               SMA_VID(pSma), msgIter.numOfRows, msgIter.suid, msgIter.uid, pReq->version, row->ts);
    }
  }
  return 0;
}
806
#endif
C
Cary Xu 已提交
807

C
Cary Xu 已提交
808 809 810 811 812 813 814 815
/**
 * @brief sync mode
 *
 * @param pSma
 * @param pMsg
 * @param msgSize
 * @param inputType
 * @param pInfo
C
Cary Xu 已提交
816
 * @param type
C
Cary Xu 已提交
817 818 819 820
 * @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 已提交
821
                                 ERsmaExecType type, int8_t level) {
C
Cary Xu 已提交
822
  int32_t idx = level - 1;
K
kailixu 已提交
823
  void   *qTaskInfo = (type == RSMA_EXEC_COMMIT) ? RSMA_INFO_IQTASK(pInfo, idx) : RSMA_INFO_QTASK(pInfo, idx);
C
Cary Xu 已提交
824 825 826
  if (!qTaskInfo) {
    smaDebug("vgId:%d, no qTaskInfo to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level,
             pInfo->suid);
827 828
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
829
  if (!pInfo->pTSchema) {
C
Cary Xu 已提交
830
    smaWarn("vgId:%d, no schema to execute rsma %" PRIi8 " task for suid:%" PRIu64, SMA_VID(pSma), level, pInfo->suid);
831 832
    return TSDB_CODE_FAILED;
  }
833 834

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

C
Cary Xu 已提交
837 838 839
#if 0
  for (int32_t i = 0; i < msgSize; ++i) {
    SSubmitReq *pReq = *(SSubmitReq **)((char *)pMsg + i * sizeof(void *));
C
Cary Xu 已提交
840
    smaDebug("vgId:%d, [%d][%d] version %" PRIi64, SMA_VID(pSma), msgSize, i, pReq->version);
C
Cary Xu 已提交
841 842 843
    tdRsmaPrintSubmitReq(pSma, pReq);
  }
#endif
L
Liu Jicong 已提交
844
  if (qSetSMAInput(qTaskInfo, pMsg, msgSize, inputType) < 0) {
845
    smaError("vgId:%d, rsma %" PRIi8 " qSetStreamInput failed since %s", SMA_VID(pSma), level, tstrerror(terrno));
846 847 848
    return TSDB_CODE_FAILED;
  }

C
Cary Xu 已提交
849
  SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, idx);
C
Cary Xu 已提交
850
  tdRSmaExecAndSubmitResult(pSma, qTaskInfo, pItem, pInfo->pTSchema, pInfo->suid);
851 852 853 854

  return TSDB_CODE_SUCCESS;
}

855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 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
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);
H
Haojun Liao 已提交
913
  if (metaGetTableEntryByUidCache(&mr, pInfo->suid) < 0) {
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
    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 已提交
944 945
/**
 * @brief During async commit, the SRSmaInfo object would be COW from iRSmaInfoHash and write lock should be applied.
C
Cary Xu 已提交
946 947 948 949
 *
 * @param pSma
 * @param suid
 * @return SRSmaInfo*
C
Cary Xu 已提交
950
 */
C
Cary Xu 已提交
951
static SRSmaInfo *tdAcquireRSmaInfoBySuid(SSma *pSma, int64_t suid) {
952 953
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pStat = NULL;
C
Cary Xu 已提交
954 955
  SRSmaInfo *pRSmaInfo = NULL;

956
  if (!pEnv) {
C
Cary Xu 已提交
957
    terrno = TSDB_CODE_RSMA_INVALID_ENV;
958
    return NULL;
959 960
  }

961 962
  pStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  if (!pStat || !RSMA_INFO_HASH(pStat)) {
C
Cary Xu 已提交
963
    terrno = TSDB_CODE_RSMA_INVALID_STAT;
964 965
    return NULL;
  }
966

967
  taosRLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
968 969
  pRSmaInfo = taosHashGet(RSMA_INFO_HASH(pStat), &suid, sizeof(tb_uid_t));
  if (pRSmaInfo && (pRSmaInfo = *(SRSmaInfo **)pRSmaInfo)) {
C
Cary Xu 已提交
970
    if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
971
      taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
972 973
      return NULL;
    }
C
Cary Xu 已提交
974
    if (!pRSmaInfo->taskInfo[0]) {
975
      if (tdRSmaInfoClone(pSma, pRSmaInfo) < 0) {
976
        taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
977 978 979
        return NULL;
      }
    }
C
Cary Xu 已提交
980
    tdRefRSmaInfo(pSma, pRSmaInfo);
981
    taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
982
    ASSERT(pRSmaInfo->suid == suid);
C
Cary Xu 已提交
983 984
    return pRSmaInfo;
  }
985
  taosRUnLockLatch(SMA_ENV_LOCK(pEnv));
C
Cary Xu 已提交
986

C
Cary Xu 已提交
987
  return NULL;
988 989
}

C
Cary Xu 已提交
990 991 992
static FORCE_INLINE void tdReleaseRSmaInfo(SSma *pSma, SRSmaInfo *pInfo) {
  if (pInfo) {
    tdUnRefRSmaInfo(pSma, pInfo);
C
Cary Xu 已提交
993 994 995
  }
}

C
Cary Xu 已提交
996 997 998 999 1000 1001 1002 1003 1004
/**
 * @brief async mode
 *
 * @param pSma
 * @param pMsg
 * @param inputType
 * @param suid
 * @return int32_t
 */
1005
static int32_t tdExecuteRSmaAsync(SSma *pSma, const void *pMsg, int32_t len, int32_t inputType, tb_uid_t suid) {
C
Cary Xu 已提交
1006 1007 1008 1009 1010 1011 1012
  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) {
1013
    if (tdExecuteRSmaImplAsync(pSma, pMsg, len, inputType, pRSmaInfo, suid) < 0) {
C
Cary Xu 已提交
1014 1015 1016
      tdReleaseRSmaInfo(pSma, pRSmaInfo);
      return TSDB_CODE_FAILED;
    }
C
Cary Xu 已提交
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
    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 已提交
1027 1028
  } else {
    ASSERT(0);
C
Cary Xu 已提交
1029 1030 1031 1032 1033 1034
  }

  tdReleaseRSmaInfo(pSma, pRSmaInfo);
  return TSDB_CODE_SUCCESS;
}

K
kailixu 已提交
1035
int32_t tdProcessRSmaSubmit(SSma *pSma, void *pReq, void* pMsg, int32_t len, int32_t inputType) {
1036 1037 1038 1039 1040
  SSmaEnv *pEnv = SMA_RSMA_ENV(pSma);
  if (!pEnv) {
    // only applicable when rsma env exists
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
1041
  STbUidStore uidStore = {0};
1042 1043 1044 1045 1046 1047
  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 已提交
1048
  if (inputType == STREAM_INPUT__DATA_SUBMIT) {
K
kailixu 已提交
1049
    if (tdFetchSubmitReqSuids(pReq, &uidStore) < 0) {
1050
      smaError("vgId:%d, failed to process rsma submit fetch suid since: %s", SMA_VID(pSma), terrstr());
C
Cary Xu 已提交
1051 1052
      goto _err;
    }
1053 1054

    if (uidStore.suid != 0) {
1055 1056
      if (tdExecuteRSmaAsync(pSma, pMsg, len, inputType, uidStore.suid) < 0) {
        smaError("vgId:%d, failed to process rsma submit exec 1 since: %s", SMA_VID(pSma), terrstr());
C
Cary Xu 已提交
1057 1058
        goto _err;
      }
1059

C
Cary Xu 已提交
1060 1061
      void *pIter = NULL;
      while ((pIter = taosHashIterate(uidStore.uidHash, pIter))) {
1062
        tb_uid_t *pTbSuid = (tb_uid_t *)taosHashGetKey(pIter, NULL);
1063 1064
        if (tdExecuteRSmaAsync(pSma, pMsg, len, inputType, *pTbSuid) < 0) {
          smaError("vgId:%d, failed to process rsma submit exec 2 since: %s", SMA_VID(pSma), terrstr());
C
Cary Xu 已提交
1065 1066
          goto _err;
        }
1067 1068 1069
      }
    }
  }
C
Cary Xu 已提交
1070
  tdUidStoreDestory(&uidStore);
1071
  return TSDB_CODE_SUCCESS;
C
Cary Xu 已提交
1072 1073 1074
_err:
  tdUidStoreDestory(&uidStore);
  return TSDB_CODE_FAILED;
1075
}
C
Cary Xu 已提交
1076

C
Cary Xu 已提交
1077 1078 1079 1080 1081 1082 1083
/**
 * @brief retrieve rsma meta and init
 *
 * @param pSma
 * @param nTables number of tables of rsma
 * @return int32_t
 */
C
Cary Xu 已提交
1084
static int32_t tdRSmaRestoreQTaskInfoInit(SSma *pSma, int64_t *nTables) {
C
Cary Xu 已提交
1085 1086 1087 1088
  SVnode     *pVnode = pSma->pVnode;
  SArray     *suidList = NULL;
  STbUidStore uidStore = {0};
  SMetaReader mr = {0};
1089

C
Cary Xu 已提交
1090 1091 1092 1093 1094 1095
  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 已提交
1096
    smaError("vgId:%d, failed to restore rsma env since get stb id list error: %s", TD_VID(pVnode), terrstr());
C
Cary Xu 已提交
1097
    goto _err;
1098 1099
  }

C
Cary Xu 已提交
1100 1101
  int64_t arrSize = taosArrayGetSize(suidList);

C
Cary Xu 已提交
1102
  if (arrSize == 0) {
C
Cary Xu 已提交
1103 1104 1105
    if (nTables) {
      *nTables = 0;
    }
C
Cary Xu 已提交
1106 1107
    taosArrayDestroy(suidList);
    smaDebug("vgId:%d, no need to restore rsma env since empty stb id list", TD_VID(pVnode));
1108 1109 1110
    return TSDB_CODE_SUCCESS;
  }

C
Cary Xu 已提交
1111
  int64_t nRsmaTables = 0;
1112
  metaReaderInit(&mr, SMA_META(pSma), 0);
C
Cary Xu 已提交
1113 1114 1115
  if (!(uidStore.tbUids = taosArrayInit(1024, sizeof(tb_uid_t)))) {
    goto _err;
  }
C
Cary Xu 已提交
1116
  for (int64_t i = 0; i < arrSize; ++i) {
1117
    tb_uid_t suid = *(tb_uid_t *)taosArrayGet(suidList, i);
C
Cary Xu 已提交
1118
    smaDebug("vgId:%d, rsma restore, suid is %" PRIi64, TD_VID(pVnode), suid);
H
Haojun Liao 已提交
1119
    if (metaGetTableEntryByUidCache(&mr, suid) < 0) {
C
Cary Xu 已提交
1120 1121
      smaError("vgId:%d, rsma restore, failed to get table meta for %" PRIi64 " since %s", TD_VID(pVnode), suid,
               terrstr());
1122 1123
      goto _err;
    }
1124
    tDecoderClear(&mr.coder);
1125 1126 1127
    ASSERT(mr.me.type == TSDB_SUPER_TABLE);
    ASSERT(mr.me.uid == suid);
    if (TABLE_IS_ROLLUP(mr.me.flags)) {
C
Cary Xu 已提交
1128
      ++nRsmaTables;
1129
      SRSmaParam *param = &mr.me.stbEntry.rsmaParam;
C
Cary Xu 已提交
1130 1131 1132 1133
      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]);
1134
      }
1135
      if (tdRSmaProcessCreateImpl(pSma, &mr.me.stbEntry.rsmaParam, suid, mr.me.name) < 0) {
C
Cary Xu 已提交
1136
        smaError("vgId:%d, rsma restore env failed for %" PRIi64 " since %s", TD_VID(pVnode), suid, terrstr());
1137 1138
        goto _err;
      }
C
Cary Xu 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147

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

1148
      if (tdUpdateTbUidList(pVnode->pSma, &uidStore, true) < 0) {
C
Cary Xu 已提交
1149 1150 1151 1152 1153 1154 1155
        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 已提交
1156
      smaDebug("vgId:%d, rsma restore env success for %" PRIi64, TD_VID(pVnode), suid);
1157 1158 1159
    }
  }

C
Cary Xu 已提交
1160 1161
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);
C
Cary Xu 已提交
1162 1163 1164 1165 1166
  tdUidStoreDestory(&uidStore);

  if (nTables) {
    *nTables = nRsmaTables;
  }
C
Cary Xu 已提交
1167 1168 1169 1170 1171

  return TSDB_CODE_SUCCESS;
_err:
  metaReaderClear(&mr);
  taosArrayDestroy(suidList);
C
Cary Xu 已提交
1172
  tdUidStoreDestory(&uidStore);
C
Cary Xu 已提交
1173 1174 1175 1176 1177 1178

  return TSDB_CODE_FAILED;
}

/**
 * @brief reload ts data from checkpoint
C
Cary Xu 已提交
1179 1180 1181
 *
 * @param pSma
 * @return int32_t
C
Cary Xu 已提交
1182
 */
1183
static int32_t tdRSmaRestoreTSDataReload(SSma *pSma) {
C
Cary Xu 已提交
1184
  // NOTHING TODO: the data would be restored from the unified WAL replay procedure
C
Cary Xu 已提交
1185 1186 1187
  return TSDB_CODE_SUCCESS;
}

1188
int32_t tdRSmaProcessRestoreImpl(SSma *pSma, int8_t type, int64_t qtaskFileVer) {
C
Cary Xu 已提交
1189
  // step 1: iterate all stables to restore the rsma env
C
Cary Xu 已提交
1190
  int64_t nTables = 0;
C
Cary Xu 已提交
1191
  if (tdRSmaRestoreQTaskInfoInit(pSma, &nTables) < 0) {
C
Cary Xu 已提交
1192 1193
    goto _err;
  }
C
Cary Xu 已提交
1194
  if (nTables <= 0) {
1195
    smaDebug("vgId:%d, no need to restore rsma task %" PRIi8 " since no tables", SMA_VID(pSma), type);
C
Cary Xu 已提交
1196 1197
    return TSDB_CODE_SUCCESS;
  }
C
Cary Xu 已提交
1198

1199
  // step 2: reload ts data from checkpoint
1200
  if (tdRSmaRestoreTSDataReload(pSma) < 0) {
C
Cary Xu 已提交
1201 1202
    goto _err;
  }
1203

1204
  // step 3: open SRSmaFS for qTaskFiles
1205 1206 1207 1208
  if (tdRSmaFSOpen(pSma, qtaskFileVer) < 0) {
    goto _err;
  }

1209
  smaInfo("vgId:%d, restore rsma task %" PRIi8 " from qtaskf %" PRIi64 " succeed", SMA_VID(pSma), type, qtaskFileVer);
1210 1211
  return TSDB_CODE_SUCCESS;
_err:
1212 1213
  smaError("vgId:%d, restore rsma task %" PRIi8 "from qtaskf %" PRIi64 " failed since %s", SMA_VID(pSma), type,
           qtaskFileVer, terrstr());
1214 1215 1216
  return TSDB_CODE_FAILED;
}

1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
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;
}

C
Cary Xu 已提交
1260
/**
C
Cary Xu 已提交
1261
 * @brief trigger to get rsma result in async mode
C
Cary Xu 已提交
1262 1263 1264 1265
 *
 * @param param
 * @param tmrId
 */
C
Cary Xu 已提交
1266
static void tdRSmaFetchTrigger(void *param, void *tmrId) {
1267
  SRSmaRef      *pRSmaRef = NULL;
C
Cary Xu 已提交
1268
  SSma          *pSma = NULL;
1269 1270 1271
  SRSmaStat     *pStat = NULL;
  SRSmaInfo     *pRSmaInfo = NULL;
  SRSmaInfoItem *pItem = NULL;
C
Cary Xu 已提交
1272

1273
  if (!(pRSmaRef = taosHashGet(smaMgmt.refHash, &param, POINTER_BYTES))) {
C
Cary Xu 已提交
1274 1275
    smaDebug("rsma fetch task not start since rsma info item:%p not exist in refHash:%p, rsetId:%d", param,
             smaMgmt.refHash, smaMgmt.rsetId);
C
Cary Xu 已提交
1276 1277 1278
    return;
  }

1279
  if (!(pStat = (SRSmaStat *)tdAcquireSmaRef(smaMgmt.rsetId, pRSmaRef->refId))) {
C
Cary Xu 已提交
1280
    smaDebug("rsma fetch task not start since rsma stat already destroyed, rsetId:%d refId:%" PRIi64 ")",
C
Cary Xu 已提交
1281 1282
             smaMgmt.rsetId, pRSmaRef->refId);  // pRSmaRef freed in taosHashRemove
    taosHashRemove(smaMgmt.refHash, &param, POINTER_BYTES);
C
Cary Xu 已提交
1283
    return;
C
Cary Xu 已提交
1284 1285
  }

C
Cary Xu 已提交
1286 1287
  pSma = pStat->pSma;

1288
  if (!(pRSmaInfo = tdAcquireRSmaInfoBySuid(pSma, pRSmaRef->suid))) {
C
Cary Xu 已提交
1289
    smaDebug("rsma fetch task not start since rsma info not exist, rsetId:%d refId:%" PRIi64 ")", smaMgmt.rsetId,
1290 1291 1292 1293 1294 1295 1296
             pRSmaRef->refId);  // pRSmaRef freed in taosHashRemove
    tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
    taosHashRemove(smaMgmt.refHash, &param, POINTER_BYTES);
    return;
  }

  if (RSMA_INFO_IS_DEL(pRSmaInfo)) {
C
Cary Xu 已提交
1297
    smaDebug("rsma fetch task not start since rsma info already deleted, rsetId:%d refId:%" PRIi64 ")", smaMgmt.rsetId,
1298 1299 1300 1301 1302 1303 1304 1305 1306
             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 已提交
1307 1308 1309 1310 1311
  // 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 已提交
1312
      smaDebug("vgId:%d, rsma fetch task not start for level %" PRIi8 " since stat is %" PRIi8
C
Cary Xu 已提交
1313
               ", rsetId:%d refId:%" PRIi64,
1314
               SMA_VID(pSma), pItem->level, rsmaTriggerStat, smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1315
      if (rsmaTriggerStat == TASK_TRIGGER_STAT_PAUSED) {
1316
        taosTmrReset(tdRSmaFetchTrigger, RSMA_FETCH_INTERVAL, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
C
Cary Xu 已提交
1317
      }
1318 1319
      tdReleaseRSmaInfo(pSma, pRSmaInfo);
      tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1320
      return;
C
Cary Xu 已提交
1321
    }
C
Cary Xu 已提交
1322 1323 1324 1325 1326 1327 1328 1329
    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: {
1330
      smaDebug("vgId:%d, rsma fetch task planned for level:%" PRIi8 " suid:%" PRIi64 " since stat is active",
C
Cary Xu 已提交
1331
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
C
Cary Xu 已提交
1332
      // async process
C
Cary Xu 已提交
1333
      pItem->fetchLevel = pItem->level;
C
Cary Xu 已提交
1334
#if 0
C
Cary Xu 已提交
1335 1336 1337 1338
      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 已提交
1339
#endif
1340 1341 1342
      if (atomic_load_8(&pRSmaInfo->assigned) == 0) {
        tsem_post(&(pStat->notEmpty));
      }
C
Cary Xu 已提交
1343 1344
    } break;
    case TASK_TRIGGER_STAT_PAUSED: {
C
Cary Xu 已提交
1345
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is paused",
C
Cary Xu 已提交
1346 1347 1348
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INACTIVE: {
C
Cary Xu 已提交
1349
      smaDebug("vgId:%d, rsma fetch task not start for level:%" PRIi8 " suid:%" PRIi64 " since stat is inactive",
C
Cary Xu 已提交
1350 1351 1352
               SMA_VID(pSma), pItem->level, pRSmaInfo->suid);
    } break;
    case TASK_TRIGGER_STAT_INIT: {
C
Cary Xu 已提交
1353 1354
      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 已提交
1355 1356
    } break;
    default: {
C
Cary Xu 已提交
1357 1358
      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 已提交
1359
    } break;
C
Cary Xu 已提交
1360 1361 1362
  }

_end:
C
Cary Xu 已提交
1363
  taosTmrReset(tdRSmaFetchTrigger, pItem->maxDelay, pItem, smaMgmt.tmrHandle, &pItem->tmrId);
1364 1365
  tdReleaseRSmaInfo(pSma, pRSmaInfo);
  tdReleaseSmaRef(smaMgmt.rsetId, pRSmaRef->refId);
C
Cary Xu 已提交
1366
}
C
Cary Xu 已提交
1367

C
Cary Xu 已提交
1368 1369 1370 1371
static void tdFreeRSmaSubmitItems(SArray *pItems) {
  for (int32_t i = 0; i < taosArrayGetSize(pItems); ++i) {
    taosFreeQitem(*(void **)taosArrayGet(pItems, i));
  }
C
Cary Xu 已提交
1372
  taosArrayClear(pItems);
C
Cary Xu 已提交
1373 1374
}

C
Cary Xu 已提交
1375 1376 1377 1378 1379 1380 1381
/**
 * @brief fetch rsma result(consider the efficiency and functionality)
 *
 * @param pSma
 * @param pInfo
 * @return int32_t
 */
1382
static int32_t tdRSmaFetchAllResult(SSma *pSma, SRSmaInfo *pInfo) {
C
Cary Xu 已提交
1383 1384
  SSDataBlock dataBlock = {.info.type = STREAM_GET_ALL};
  for (int8_t i = 1; i <= TSDB_RETENTION_L2; ++i) {
C
Cary Xu 已提交
1385 1386 1387
    SRSmaInfoItem *pItem = RSMA_INFO_ITEM(pInfo, i - 1);
    if (pItem->fetchLevel) {
      pItem->fetchLevel = 0;
C
Cary Xu 已提交
1388 1389 1390 1391
      qTaskInfo_t taskInfo = RSMA_INFO_QTASK(pInfo, i - 1);
      if (!taskInfo) {
        continue;
      }
C
Cary Xu 已提交
1392

C
Cary Xu 已提交
1393
      if ((++pItem->nScanned * pItem->maxDelay) > RSMA_FETCH_DELAY_MAX) {
1394
        smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi16 " maxDelay:%d, fetch executed",
C
Cary Xu 已提交
1395
                 SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay);
C
Cary Xu 已提交
1396
      } else {
C
Cary Xu 已提交
1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
        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 已提交
1407 1408
      }

C
Cary Xu 已提交
1409
      pItem->nScanned = 0;
C
Cary Xu 已提交
1410

L
Liu Jicong 已提交
1411
      if ((terrno = qSetSMAInput(taskInfo, &dataBlock, 1, STREAM_INPUT__DATA_BLOCK)) < 0) {
C
Cary Xu 已提交
1412 1413
        goto _err;
      }
C
Cary Xu 已提交
1414
      if (tdRSmaExecAndSubmitResult(pSma, taskInfo, pItem, pInfo->pTSchema, pInfo->suid) < 0) {
C
Cary Xu 已提交
1415 1416 1417
        goto _err;
      }

1418
      smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi16 " maxDelay:%d, fetch finished",
C
Cary Xu 已提交
1419
               SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay);
C
Cary Xu 已提交
1420
    } else {
1421
      smaDebug("vgId:%d, suid:%" PRIi64 " level:%" PRIi8 " nScanned:%" PRIi16
C
Cary Xu 已提交
1422
               " maxDelay:%d, fetch not executed as fetch level is %" PRIi8,
C
Cary Xu 已提交
1423
               SMA_VID(pSma), pInfo->suid, i, pItem->nScanned, pItem->maxDelay, pItem->fetchLevel);
C
Cary Xu 已提交
1424 1425 1426 1427 1428 1429 1430 1431 1432
    }
  }

_end:
  return TSDB_CODE_SUCCESS;
_err:
  return TSDB_CODE_FAILED;
}

C
Cary Xu 已提交
1433 1434 1435 1436 1437 1438
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) {
C
Cary Xu 已提交
1439
      if (!taosArrayPush(pSubmitArr, &msg)) {
C
Cary Xu 已提交
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
        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 已提交
1472 1473 1474 1475
/**
 * @brief
 *
 * @param pSma
C
Cary Xu 已提交
1476
 * @param type
C
Cary Xu 已提交
1477 1478
 * @return int32_t
 */
C
Cary Xu 已提交
1479

C
Cary Xu 已提交
1480
int32_t tdRSmaProcessExecImpl(SSma *pSma, ERsmaExecType type) {
C
Cary Xu 已提交
1481
  SVnode    *pVnode = pSma->pVnode;
C
Cary Xu 已提交
1482 1483 1484 1485
  SSmaEnv   *pEnv = SMA_RSMA_ENV(pSma);
  SRSmaStat *pRSmaStat = (SRSmaStat *)SMA_ENV_STAT(pEnv);
  SHashObj  *infoHash = NULL;
  SArray    *pSubmitArr = NULL;
C
Cary Xu 已提交
1486
  bool       isFetchAll = false;
C
Cary Xu 已提交
1487 1488 1489 1490 1491 1492

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

C
Cary Xu 已提交
1493 1494
  if (!(pSubmitArr =
            taosArrayInit(TMIN(RSMA_SUBMIT_BATCH_SIZE, atomic_load_64(&pRSmaStat->nBufItems)), POINTER_BYTES))) {
C
Cary Xu 已提交
1495 1496 1497 1498
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }

C
Cary Xu 已提交
1499 1500
  while (true) {
    // step 1: rsma exec - consume data in buffer queue for all suids
C
Cary Xu 已提交
1501
    if (type == RSMA_EXEC_OVERFLOW) {
1502 1503
      void *pIter = NULL;
      while ((pIter = taosHashIterate(infoHash, pIter))) {
C
Cary Xu 已提交
1504
        SRSmaInfo *pInfo = *(SRSmaInfo **)pIter;
1505 1506 1507 1508 1509 1510 1511 1512
        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 已提交
1513
              batchMax = TMAX(batchMax, 4);
C
Cary Xu 已提交
1514
            }
C
Cary Xu 已提交
1515
            while (occupied || (++batchCnt < batchMax)) {    // greedy mode
1516 1517 1518 1519
              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);
1520
                smaDebug("vgId:%d, batchSize:%d, execType:%" PRIi32, SMA_VID(pSma), qallItemSize, type);
1521 1522
              }

1523 1524 1525 1526
              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)) {
C
Cary Xu 已提交
1527 1528
                  int32_t oldVal = atomic_fetch_add_32(&pRSmaStat->nFetchAll, 1);
                  ASSERT(oldVal >= 0);
1529 1530 1531 1532
                  tdRSmaFetchAllResult(pSma, pInfo);
                  if (0 == atomic_sub_fetch_32(&pRSmaStat->nFetchAll, 1)) {
                    atomic_store_8(RSMA_COMMIT_STAT(pRSmaStat), 0);
                  }
C
Cary Xu 已提交
1533
                }
1534 1535 1536 1537 1538 1539
              }

              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) {
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
                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);
                  }
                }
1550 1551 1552
              }

              break;
C
Cary Xu 已提交
1553 1554
            }
          }
1555
          atomic_val_compare_exchange_8(&pInfo->assigned, 1, 0);
C
Cary Xu 已提交
1556
        }
C
Cary Xu 已提交
1557
      }
C
Cary Xu 已提交
1558
    } else {
C
Cary Xu 已提交
1559
      ASSERT(0);
C
Cary Xu 已提交
1560 1561
    }

C
Cary Xu 已提交
1562
    if (atomic_load_64(&pRSmaStat->nBufItems) <= 0) {
C
Cary Xu 已提交
1563
      if (pEnv->flag & SMA_ENV_FLG_CLOSE) {
C
Cary Xu 已提交
1564 1565
        break;
      }
1566

1567
      tsem_wait(&pRSmaStat->notEmpty);
C
Cary Xu 已提交
1568

1569
      if ((pEnv->flag & SMA_ENV_FLG_CLOSE) && (atomic_load_64(&pRSmaStat->nBufItems) <= 0)) {
1570
        smaDebug("vgId:%d, exec task end, flag:%" PRIi8 ", nBufItems:%" PRIi64, SMA_VID(pSma), pEnv->flag,
1571
                 atomic_load_64(&pRSmaStat->nBufItems));
1572 1573
        break;
      }
C
Cary Xu 已提交
1574
    }
1575

C
Cary Xu 已提交
1576
  }  // end of while(true)
C
Cary Xu 已提交
1577 1578

_end:
C
Cary Xu 已提交
1579 1580 1581 1582 1583 1584
  taosArrayDestroy(pSubmitArr);
  return TSDB_CODE_SUCCESS;
_err:
  taosArrayDestroy(pSubmitArr);
  return TSDB_CODE_FAILED;
}