tstreamFileState.c 15.1 KB
Newer Older
5
54liuyao 已提交
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 "tstreamFileState.h"

dengyihao's avatar
dengyihao 已提交
18
#include "query.h"
dengyihao's avatar
dengyihao 已提交
19
#include "streamBackendRocksdb.h"
5
54liuyao 已提交
20
#include "taos.h"
dengyihao's avatar
dengyihao 已提交
21
#include "tcommon.h"
5
54liuyao 已提交
22 23 24
#include "thash.h"
#include "tsimplehash.h"

L
add ini  
liuyao 已提交
25
#define FLUSH_RATIO                    0.5
dengyihao's avatar
dengyihao 已提交
26
#define FLUSH_NUM                      4
5
54liuyao 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
#define DEFAULT_MAX_STREAM_BUFFER_SIZE (128 * 1024 * 1024);

struct SStreamFileState {
  SList*     usedBuffs;
  SList*     freeBuffs;
  SSHashObj* rowBuffMap;
  void*      pFileStore;
  int32_t    rowSize;
  int32_t    keyLen;
  uint64_t   preCheckPointVersion;
  uint64_t   checkPointVersion;
  TSKEY      maxTs;
  TSKEY      deleteMark;
5
54liuyao 已提交
40
  TSKEY      flushMark;
5
54liuyao 已提交
41 42
  uint64_t   maxRowCount;
  uint64_t   curRowCount;
5
54liuyao 已提交
43
  GetTsFun   getTs;
5
54liuyao 已提交
44 45 46 47
};

typedef SRowBuffPos SRowBuffInfo;

dengyihao's avatar
dengyihao 已提交
48 49
SStreamFileState* streamFileStateInit(int64_t memSize, uint32_t keySize, uint32_t rowSize, GetTsFun fp, void* pFile,
                                      TSKEY delMark) {
5
54liuyao 已提交
50 51 52 53 54 55 56 57 58 59 60
  if (memSize <= 0) {
    memSize = DEFAULT_MAX_STREAM_BUFFER_SIZE;
  }
  if (rowSize == 0) {
    goto _error;
  }

  SStreamFileState* pFileState = taosMemoryCalloc(1, sizeof(SStreamFileState));
  if (!pFileState) {
    goto _error;
  }
dengyihao's avatar
dengyihao 已提交
61
  pFileState->maxRowCount = TMAX((uint64_t)memSize / rowSize, FLUSH_NUM * 2);
5
54liuyao 已提交
62 63 64
  pFileState->usedBuffs = tdListNew(POINTER_BYTES);
  pFileState->freeBuffs = tdListNew(POINTER_BYTES);
  _hash_fn_t hashFn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY);
dengyihao's avatar
dengyihao 已提交
65
  int32_t    cap = TMIN(10240, pFileState->maxRowCount);
L
liuyao 已提交
66
  pFileState->rowBuffMap = tSimpleHashInit(cap, hashFn);
5
54liuyao 已提交
67 68 69
  if (!pFileState->usedBuffs || !pFileState->freeBuffs || !pFileState->rowBuffMap) {
    goto _error;
  }
L
liuyao 已提交
70
  pFileState->keyLen = keySize;
5
54liuyao 已提交
71 72 73 74
  pFileState->rowSize = rowSize;
  pFileState->preCheckPointVersion = 0;
  pFileState->checkPointVersion = 1;
  pFileState->pFileStore = pFile;
5
54liuyao 已提交
75
  pFileState->getTs = fp;
dengyihao's avatar
dengyihao 已提交
76
  pFileState->maxRowCount = TMAX((uint64_t)memSize / rowSize, FLUSH_NUM * 2);
5
54liuyao 已提交
77
  pFileState->curRowCount = 0;
5
54liuyao 已提交
78
  pFileState->deleteMark = delMark;
L
add ini  
liuyao 已提交
79 80
  pFileState->flushMark = INT64_MIN;
  pFileState->maxTs = INT64_MIN;
L
liuyao 已提交
81
  recoverSnapshot(pFileState);
5
54liuyao 已提交
82 83 84
  return pFileState;

_error:
5
54liuyao 已提交
85
  streamFileStateDestroy(pFileState);
5
54liuyao 已提交
86 87 88 89
  return NULL;
}

void destroyRowBuffPos(SRowBuffPos* pPos) {
5
54liuyao 已提交
90
  taosMemoryFreeClear(pPos->pKey);
5
54liuyao 已提交
91 92 93 94 95 96 97 98
  taosMemoryFreeClear(pPos->pRowBuff);
  taosMemoryFree(pPos);
}

void destroyRowBuffPosPtr(void* ptr) {
  if (!ptr) {
    return;
  }
5
54liuyao 已提交
99
  SRowBuffPos* pPos = *(SRowBuffPos**)ptr;
L
liuyao 已提交
100 101 102
  if (!pPos->beUsed) {
    destroyRowBuffPos(pPos);
  }
5
54liuyao 已提交
103 104
}

L
liuyao 已提交
105 106 107 108 109 110 111 112
void destroyRowBuffAllPosPtr(void* ptr) {
  if (!ptr) {
    return;
  }
  SRowBuffPos* pPos = *(SRowBuffPos**)ptr;
  destroyRowBuffPos(pPos);
}

5
54liuyao 已提交
113 114 115 116 117 118 119 120 121 122 123
void destroyRowBuff(void* ptr) {
  if (!ptr) {
    return;
  }
  taosMemoryFree(*(void**)ptr);
}

void streamFileStateDestroy(SStreamFileState* pFileState) {
  if (!pFileState) {
    return;
  }
L
liuyao 已提交
124
  tdListFreeP(pFileState->usedBuffs, destroyRowBuffAllPosPtr);
5
54liuyao 已提交
125
  tdListFreeP(pFileState->freeBuffs, destroyRowBuff);
5
54liuyao 已提交
126
  tSimpleHashCleanup(pFileState->rowBuffMap);
5
54liuyao 已提交
127
  taosMemoryFree(pFileState);
5
54liuyao 已提交
128 129
}

5
54liuyao 已提交
130
void clearExpiredRowBuff(SStreamFileState* pFileState, TSKEY ts, bool all) {
5
54liuyao 已提交
131 132 133 134 135
  SListIter iter = {0};
  tdListInitIter(pFileState->usedBuffs, &iter, TD_LIST_FORWARD);

  SListNode* pNode = NULL;
  while ((pNode = tdListNext(&iter)) != NULL) {
5
54liuyao 已提交
136
    SRowBuffPos* pPos = *(SRowBuffPos**)(pNode->data);
dengyihao's avatar
dengyihao 已提交
137
    if (all || (pFileState->getTs(pPos->pKey) < ts)) {
L
liuyao 已提交
138
      ASSERT(pPos->pRowBuff != NULL);
5
54liuyao 已提交
139
      tdListAppend(pFileState->freeBuffs, &(pPos->pRowBuff));
5
54liuyao 已提交
140
      pPos->pRowBuff = NULL;
L
liuyao 已提交
141 142 143
      if (!all) {
        tSimpleHashRemove(pFileState->rowBuffMap, pPos->pKey, pFileState->keyLen);
      }
5
54liuyao 已提交
144
      destroyRowBuffPos(pPos);
L
liuyao 已提交
145 146
      tdListPopNode(pFileState->usedBuffs, pNode);
      taosMemoryFreeClear(pNode);
5
54liuyao 已提交
147 148 149 150
    }
  }
}

5
54liuyao 已提交
151
void streamFileStateClear(SStreamFileState* pFileState) {
L
add ini  
liuyao 已提交
152 153
  pFileState->flushMark = INT64_MIN;
  pFileState->maxTs = INT64_MIN;
5
54liuyao 已提交
154 155 156 157
  tSimpleHashClear(pFileState->rowBuffMap);
  clearExpiredRowBuff(pFileState, 0, true);
}

dengyihao's avatar
dengyihao 已提交
158
bool needClearDiskBuff(SStreamFileState* pFileState) { return pFileState->flushMark > 0; }
L
liuyao 已提交
159

L
liuyao 已提交
160
void popUsedBuffs(SStreamFileState* pFileState, SStreamSnapshot* pFlushList, uint64_t max, bool used) {
dengyihao's avatar
dengyihao 已提交
161
  uint64_t  i = 0;
5
54liuyao 已提交
162 163 164 165
  SListIter iter = {0};
  tdListInitIter(pFileState->usedBuffs, &iter, TD_LIST_FORWARD);

  SListNode* pNode = NULL;
L
liuyao 已提交
166
  while ((pNode = tdListNext(&iter)) != NULL && i < max) {
5
54liuyao 已提交
167
    SRowBuffPos* pPos = *(SRowBuffPos**)pNode->data;
L
liuyao 已提交
168
    if (pPos->beUsed == used) {
5
54liuyao 已提交
169
      tdListAppend(pFlushList, &pPos);
5
54liuyao 已提交
170 171
      pFileState->flushMark = TMAX(pFileState->flushMark, pFileState->getTs(pPos->pKey));
      tSimpleHashRemove(pFileState->rowBuffMap, pPos->pKey, pFileState->keyLen);
L
liuyao 已提交
172 173
      tdListPopNode(pFileState->usedBuffs, pNode);
      taosMemoryFreeClear(pNode);
5
54liuyao 已提交
174 175 176
      i++;
    }
  }
L
liuyao 已提交
177
  qInfo("do stream state flush %d rows to disck. is used: %d", listNEles(pFlushList), used);
L
liuyao 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190
}

int32_t flushRowBuff(SStreamFileState* pFileState) {
  SStreamSnapshot* pFlushList = tdListNew(POINTER_BYTES);
  if (!pFlushList) {
    return TSDB_CODE_OUT_OF_MEMORY;
  }
  uint64_t num = (uint64_t)(pFileState->curRowCount * FLUSH_RATIO);
  num = TMAX(num, FLUSH_NUM);
  popUsedBuffs(pFileState, pFlushList, num, false);
  if (isListEmpty(pFlushList)) {
    popUsedBuffs(pFileState, pFlushList, num, true);
  }
L
liuyao 已提交
191
  flushSnapshot(pFileState, pFlushList, false);
L
liuyao 已提交
192 193 194 195 196 197 198 199 200 201
  SListIter fIter = {0};
  tdListInitIter(pFlushList, &fIter, TD_LIST_FORWARD);
  SListNode* pNode = NULL;
  while ((pNode = tdListNext(&fIter)) != NULL) {
    SRowBuffPos* pPos = *(SRowBuffPos**)pNode->data;
    ASSERT(pPos->pRowBuff != NULL);
    tdListAppend(pFileState->freeBuffs, &pPos->pRowBuff);
    pPos->pRowBuff = NULL;
  }
  tdListFreeP(pFlushList, destroyRowBuffPosPtr);
5
54liuyao 已提交
202 203 204 205
  return TSDB_CODE_SUCCESS;
}

int32_t clearRowBuff(SStreamFileState* pFileState) {
5
54liuyao 已提交
206
  clearExpiredRowBuff(pFileState, pFileState->maxTs - pFileState->deleteMark, false);
5
54liuyao 已提交
207 208 209 210 211 212
  if (isListEmpty(pFileState->freeBuffs)) {
    return flushRowBuff(pFileState);
  }
  return TSDB_CODE_SUCCESS;
}

5
54liuyao 已提交
213
void* getFreeBuff(SList* lists, int32_t buffSize) {
5
54liuyao 已提交
214 215 216 217 218
  SListNode* pNode = tdListPopHead(lists);
  if (!pNode) {
    return NULL;
  }
  void* ptr = *(void**)pNode->data;
5
54liuyao 已提交
219
  memset(ptr, 0, buffSize);
5
54liuyao 已提交
220 221 222 223 224 225
  taosMemoryFree(pNode);
  return ptr;
}

SRowBuffPos* getNewRowPos(SStreamFileState* pFileState) {
  SRowBuffPos* pPos = taosMemoryCalloc(1, sizeof(SRowBuffPos));
L
liuyao 已提交
226
  pPos->pKey = taosMemoryCalloc(1, pFileState->keyLen);
5
54liuyao 已提交
227
  void* pBuff = getFreeBuff(pFileState->freeBuffs, pFileState->rowSize);
5
54liuyao 已提交
228 229
  if (pBuff) {
    pPos->pRowBuff = pBuff;
L
liuyao 已提交
230
    goto _end;
5
54liuyao 已提交
231 232 233 234 235 236 237
  }

  if (pFileState->curRowCount < pFileState->maxRowCount) {
    pBuff = taosMemoryCalloc(1, pFileState->rowSize);
    if (pBuff) {
      pPos->pRowBuff = pBuff;
      pFileState->curRowCount++;
L
liuyao 已提交
238
      goto _end;
5
54liuyao 已提交
239 240 241 242 243
    }
  }

  int32_t code = clearRowBuff(pFileState);
  ASSERT(code == 0);
5
54liuyao 已提交
244
  pPos->pRowBuff = getFreeBuff(pFileState->freeBuffs, pFileState->rowSize);
L
liuyao 已提交
245 246 247 248

_end:
  tdListAppend(pFileState->usedBuffs, &pPos);
  ASSERT(pPos->pRowBuff != NULL);
5
54liuyao 已提交
249 250 251 252
  return pPos;
}

int32_t getRowBuff(SStreamFileState* pFileState, void* pKey, int32_t keyLen, void** pVal, int32_t* pVLen) {
5
54liuyao 已提交
253
  pFileState->maxTs = TMAX(pFileState->maxTs, pFileState->getTs(pKey));
5
54liuyao 已提交
254 255
  SRowBuffPos** pos = tSimpleHashGet(pFileState->rowBuffMap, pKey, keyLen);
  if (pos) {
L
liuyao 已提交
256 257 258
    *pVLen = pFileState->rowSize;
    *pVal = *pos;
    (*pos)->beUsed = true;
5
54liuyao 已提交
259 260 261
    return TSDB_CODE_SUCCESS;
  }
  SRowBuffPos* pNewPos = getNewRowPos(pFileState);
L
liuyao 已提交
262 263
  pNewPos->beUsed = true;
  ASSERT(pNewPos->pRowBuff);
5
54liuyao 已提交
264 265 266 267 268
  memcpy(pNewPos->pKey, pKey, keyLen);

  TSKEY ts = pFileState->getTs(pKey);
  if (ts > pFileState->maxTs - pFileState->deleteMark && ts < pFileState->flushMark) {
    int32_t len = 0;
dengyihao's avatar
dengyihao 已提交
269
    void*   pVal = NULL;
L
liuyao 已提交
270
    int32_t code = streamStateGet_rocksdb(pFileState->pFileStore, pKey, &pVal, &len);
L
add ini  
liuyao 已提交
271
    qDebug("===stream===get %" PRId64 " from disc, res %d", ts, code);
L
liuyao 已提交
272 273 274
    if (code == TSDB_CODE_SUCCESS) {
      memcpy(pNewPos->pRowBuff, pVal, len);
    }
5
54liuyao 已提交
275 276 277
    taosMemoryFree(pVal);
  }

5
54liuyao 已提交
278
  tSimpleHashPut(pFileState->rowBuffMap, pKey, keyLen, &pNewPos, POINTER_BYTES);
5
54liuyao 已提交
279 280 281 282
  if (pVal) {
    *pVLen = pFileState->rowSize;
    *pVal = pNewPos;
  }
5
54liuyao 已提交
283 284 285
  return TSDB_CODE_SUCCESS;
}

5
54liuyao 已提交
286 287 288 289 290 291 292
int32_t deleteRowBuff(SStreamFileState* pFileState, const void* pKey, int32_t keyLen) {
  int32_t code_buff = tSimpleHashRemove(pFileState->rowBuffMap, pKey, keyLen);
  int32_t code_rocks = streamStateDel_rocksdb(pFileState->pFileStore, pKey);
  return code_buff == TSDB_CODE_SUCCESS ? code_buff : code_rocks;
}

int32_t getRowBuffByPos(SStreamFileState* pFileState, SRowBuffPos* pPos, void** pVal) {
5
54liuyao 已提交
293
  if (pPos->pRowBuff) {
5
54liuyao 已提交
294 295
    (*pVal) = pPos->pRowBuff;
    return TSDB_CODE_SUCCESS;
5
54liuyao 已提交
296 297
  }

5
54liuyao 已提交
298
  pPos->pRowBuff = getFreeBuff(pFileState->freeBuffs, pFileState->rowSize);
L
liuyao 已提交
299 300 301 302 303 304
  if (!pPos->pRowBuff) {
    int32_t code = clearRowBuff(pFileState);
    ASSERT(code == 0);
    pPos->pRowBuff = getFreeBuff(pFileState->freeBuffs, pFileState->rowSize);
    ASSERT(pPos->pRowBuff);
  }
5
54liuyao 已提交
305 306

  int32_t len = 0;
dengyihao's avatar
dengyihao 已提交
307
  void*   pBuff = NULL;
L
liuyao 已提交
308 309 310
  streamStateGet_rocksdb(pFileState->pFileStore, pPos->pKey, &pBuff, &len);
  memcpy(pPos->pRowBuff, pBuff, len);
  taosMemoryFree(pBuff);
5
54liuyao 已提交
311
  (*pVal) = pPos->pRowBuff;
L
liuyao 已提交
312
  tdListPrepend(pFileState->usedBuffs, &pPos);
5
54liuyao 已提交
313 314 315 316 317 318 319 320 321
  return TSDB_CODE_SUCCESS;
}

bool hasRowBuff(SStreamFileState* pFileState, void* pKey, int32_t keyLen) {
  SRowBuffPos** pos = tSimpleHashGet(pFileState->rowBuffMap, pKey, keyLen);
  if (pos) {
    return true;
  }
  return false;
5
54liuyao 已提交
322 323
}

dengyihao's avatar
dengyihao 已提交
324
void releaseRowBuffPos(SRowBuffPos* pBuff) { pBuff->beUsed = false; }
5
54liuyao 已提交
325 326

SStreamSnapshot* getSnapshot(SStreamFileState* pFileState) {
5
54liuyao 已提交
327
  clearExpiredRowBuff(pFileState, pFileState->maxTs - pFileState->deleteMark, false);
5
54liuyao 已提交
328 329 330
  return pFileState->usedBuffs;
}

dengyihao's avatar
dengyihao 已提交
331 332 333
void streamFileStateDecode(TSKEY* key, void* pBuff, int32_t len) { pBuff = taosDecodeFixedI64(pBuff, key); }

void streamFileStateEncode(TSKEY* key, void** pVal, int32_t* pLen) {
L
liuyao 已提交
334
  *pLen = sizeof(TSKEY);
L
liuyao 已提交
335
  (*pVal) = taosMemoryCalloc(1, *pLen);
dengyihao's avatar
dengyihao 已提交
336
  void* buff = *pVal;
dengyihao's avatar
dengyihao 已提交
337
  taosEncodeFixedI64(&buff, *key);
L
liuyao 已提交
338 339 340
}

int32_t flushSnapshot(SStreamFileState* pFileState, SStreamSnapshot* pSnapshot, bool flushState) {
dengyihao's avatar
dengyihao 已提交
341
  int32_t   code = TSDB_CODE_SUCCESS;
5
54liuyao 已提交
342 343 344
  SListIter iter = {0};
  tdListInitIter(pSnapshot, &iter, TD_LIST_FORWARD);

dengyihao's avatar
dengyihao 已提交
345
  const int32_t BATCH_LIMIT = 256;
dengyihao's avatar
dengyihao 已提交
346 347 348
  SListNode*    pNode = NULL;

  void* batch = streamStateCreateBatch();
5
54liuyao 已提交
349 350
  while ((pNode = tdListNext(&iter)) != NULL && code == TSDB_CODE_SUCCESS) {
    SRowBuffPos* pPos = *(SRowBuffPos**)pNode->data;
L
liuyao 已提交
351
    ASSERT(pPos->pRowBuff && pFileState->rowSize > 0);
dengyihao's avatar
dengyihao 已提交
352 353 354 355
    if (streamStateGetBatchSize(batch) >= BATCH_LIMIT) {
      code = streamStatePutBatch_rocksdb(pFileState->pFileStore, batch);
      streamStateClearBatch(batch);
    }
dengyihao's avatar
dengyihao 已提交
356 357

    SStateKey sKey = {.key = *((SWinKey*)pPos->pKey), .opNum = ((SStreamState*)pFileState->pFileStore)->number};
dengyihao's avatar
dengyihao 已提交
358
    code = streamStatePutBatch(pFileState->pFileStore, "state", batch, &sKey, pPos->pRowBuff, pFileState->rowSize);
L
add ini  
liuyao 已提交
359
    qDebug("===stream===put %" PRId64 " to disc, res %d", sKey.key.ts, code);
L
liuyao 已提交
360
  }
dengyihao's avatar
dengyihao 已提交
361 362 363
  if (streamStateGetBatchSize(batch) > 0) {
    code = streamStatePutBatch_rocksdb(pFileState->pFileStore, batch);
  }
dengyihao's avatar
dengyihao 已提交
364
  streamStateClearBatch(batch);
dengyihao's avatar
dengyihao 已提交
365

L
liuyao 已提交
366
  if (flushState) {
dengyihao's avatar
dengyihao 已提交
367 368 369 370 371 372 373
    const char* taskKey = "streamFileState";
    {
      char    keyBuf[128] = {0};
      void*   valBuf = NULL;
      int32_t len = 0;
      sprintf(keyBuf, "%s:%" PRId64 "", taskKey, ((SStreamState*)pFileState->pFileStore)->checkPointId);
      streamFileStateEncode(&pFileState->flushMark, &valBuf, &len);
dengyihao's avatar
dengyihao 已提交
374
      code = streamStatePutBatch(pFileState->pFileStore, "default", batch, keyBuf, valBuf, len);
dengyihao's avatar
dengyihao 已提交
375 376 377 378 379 380
      taosMemoryFree(valBuf);
    }
    {
      char    keyBuf[128] = {0};
      char    valBuf[64] = {0};
      int32_t len = 0;
dengyihao's avatar
dengyihao 已提交
381
      memcpy(keyBuf, taskKey, strlen(taskKey));
dengyihao's avatar
dengyihao 已提交
382 383
      len = sprintf(valBuf, "%" PRId64 "", ((SStreamState*)pFileState->pFileStore)->checkPointId);
      code = streamStatePutBatch(pFileState->pFileStore, "default", batch, keyBuf, valBuf, len);
dengyihao's avatar
dengyihao 已提交
384 385
    }
    streamStatePutBatch_rocksdb(pFileState->pFileStore, batch);
5
54liuyao 已提交
386
  }
dengyihao's avatar
dengyihao 已提交
387
  streamStateDestroyBatch(batch);
dengyihao's avatar
dengyihao 已提交
388

5
54liuyao 已提交
389 390
  return code;
}
L
liuyao 已提交
391

dengyihao's avatar
dengyihao 已提交
392 393 394 395 396 397
int32_t forceRemoveCheckpoint(SStreamFileState* pFileState, int64_t checkpointId) {
  const char* taskKey = "streamFileState";
  char        keyBuf[128] = {0};
  sprintf(keyBuf, "%s:%" PRId64 "", taskKey, checkpointId);
  return streamDefaultDel_rocksdb(pFileState->pFileStore, keyBuf);
}
L
liuyao 已提交
398

dengyihao's avatar
dengyihao 已提交
399 400
int32_t getSnapshotIdList(SStreamFileState* pFileState, SArray* list) {
  const char* taskKey = "streamFileState";
dengyihao's avatar
dengyihao 已提交
401
  return streamDefaultIterGet_rocksdb(pFileState->pFileStore, taskKey, NULL, list);
dengyihao's avatar
dengyihao 已提交
402
}
L
liuyao 已提交
403 404

int32_t deleteExpiredCheckPoint(SStreamFileState* pFileState, TSKEY mark) {
dengyihao's avatar
dengyihao 已提交
405 406 407 408 409 410 411
  int32_t     code = TSDB_CODE_SUCCESS;
  const char* taskKey = "streamFileState";
  int64_t     maxCheckPointId = 0;
  {
    char    buf[128] = {0};
    void*   val = NULL;
    int32_t len = 0;
dengyihao's avatar
dengyihao 已提交
412
    memcpy(buf, taskKey, strlen(taskKey));
dengyihao's avatar
dengyihao 已提交
413 414 415 416 417 418
    code = streamDefaultGet_rocksdb(pFileState->pFileStore, buf, &val, &len);
    if (code != 0) {
      return TSDB_CODE_FAILED;
    }
    sscanf(val, "%" PRId64 "", &maxCheckPointId);
  }
dengyihao's avatar
dengyihao 已提交
419
  for (int64_t i = maxCheckPointId; i > 0; i--) {
dengyihao's avatar
dengyihao 已提交
420 421 422 423 424 425 426 427 428 429
    char    buf[128] = {0};
    void*   val = 0;
    int32_t len = 0;
    sprintf(buf, "%s:%" PRId64 "", taskKey, i);
    code = streamDefaultGet_rocksdb(pFileState->pFileStore, buf, &val, &len);
    if (code != 0) {
      return TSDB_CODE_FAILED;
    }
    TSKEY ts;
    sscanf(val, "%" PRId64 "", &ts);
L
liuyao 已提交
430
    if (ts < mark) {
dengyihao's avatar
dengyihao 已提交
431
      // statekey winkey.ts < mark
dengyihao's avatar
dengyihao 已提交
432
      forceRemoveCheckpoint(pFileState, i);
dengyihao's avatar
dengyihao 已提交
433
      break;
dengyihao's avatar
dengyihao 已提交
434
    } else {
dengyihao's avatar
dengyihao 已提交
435 436
    }
  }
L
liuyao 已提交
437 438
  return code;
}
dengyihao's avatar
dengyihao 已提交
439

L
liuyao 已提交
440 441 442
int32_t recoverSnapshot(SStreamFileState* pFileState) {
  int32_t code = TSDB_CODE_SUCCESS;
  deleteExpiredCheckPoint(pFileState, pFileState->maxTs - pFileState->deleteMark);
dengyihao's avatar
dengyihao 已提交
443
  void*   pStVal = NULL;
L
liuyao 已提交
444 445
  int32_t len = 0;

dengyihao's avatar
dengyihao 已提交
446 447
  SWinKey          key = {.groupId = 0, .ts = 0};
  SStreamStateCur* pCur = streamStateSeekToLast_rocksdb(pFileState->pFileStore, &key);
dengyihao's avatar
dengyihao 已提交
448 449
  if (pCur == NULL) {
    return -1;
L
liuyao 已提交
450
  }
dengyihao's avatar
dengyihao 已提交
451

L
liuyao 已提交
452 453 454 455
  while (code == TSDB_CODE_SUCCESS) {
    if (pFileState->curRowCount == pFileState->maxRowCount) {
      break;
    }
dengyihao's avatar
dengyihao 已提交
456 457
    void*        pVal = NULL;
    int32_t      pVLen = 0;
L
liuyao 已提交
458
    SRowBuffPos* pNewPos = getNewRowPos(pFileState);
dengyihao's avatar
dengyihao 已提交
459
    code = streamStateGetKVByCur_rocksdb(pCur, pNewPos->pKey, (const void**)&pVal, &pVLen);
L
liuyao 已提交
460 461
    if (code != TSDB_CODE_SUCCESS || pFileState->getTs(pNewPos->pKey) < pFileState->flushMark) {
      destroyRowBuffPos(pNewPos);
L
liuyao 已提交
462 463
      SListNode* pNode = tdListPopTail(pFileState->usedBuffs);
      taosMemoryFreeClear(pNode);
L
liuyao 已提交
464 465 466 467 468 469 470 471 472 473
      break;
    }
    memcpy(pNewPos->pRowBuff, pVal, pVLen);
    code = tSimpleHashPut(pFileState->rowBuffMap, pNewPos->pKey, pFileState->rowSize, &pNewPos, POINTER_BYTES);
    if (code != TSDB_CODE_SUCCESS) {
      destroyRowBuffPos(pNewPos);
      break;
    }
    code = streamStateCurPrev_rocksdb(pFileState->pFileStore, pCur);
  }
dengyihao's avatar
dengyihao 已提交
474
  streamStateFreeCur(pCur);
L
liuyao 已提交
475

5
54liuyao 已提交
476 477
  return TSDB_CODE_SUCCESS;
}