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 "streamBackendRocksdb.h"
5
54liuyao 已提交
19
#include "taos.h"
dengyihao's avatar
dengyihao 已提交
20
#include "tcommon.h"
5
54liuyao 已提交
21 22 23
#include "thash.h"
#include "tsimplehash.h"

L
add ini  
liuyao 已提交
24
#define FLUSH_RATIO                    0.5
dengyihao's avatar
dengyihao 已提交
25
#define FLUSH_NUM                      4
5
54liuyao 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38
#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 已提交
39
  TSKEY      flushMark;
5
54liuyao 已提交
40 41
  uint64_t   maxRowCount;
  uint64_t   curRowCount;
5
54liuyao 已提交
42
  GetTsFun   getTs;
5
54liuyao 已提交
43 44 45 46
};

typedef SRowBuffPos SRowBuffInfo;

dengyihao's avatar
dengyihao 已提交
47 48
SStreamFileState* streamFileStateInit(int64_t memSize, uint32_t keySize, uint32_t rowSize, GetTsFun fp, void* pFile,
                                      TSKEY delMark) {
5
54liuyao 已提交
49 50 51 52 53 54 55 56 57 58 59
  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 已提交
60
  pFileState->maxRowCount = TMAX((uint64_t)memSize / rowSize, FLUSH_NUM * 2);
5
54liuyao 已提交
61 62 63
  pFileState->usedBuffs = tdListNew(POINTER_BYTES);
  pFileState->freeBuffs = tdListNew(POINTER_BYTES);
  _hash_fn_t hashFn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY);
dengyihao's avatar
dengyihao 已提交
64
  int32_t    cap = TMIN(10240, pFileState->maxRowCount);
L
liuyao 已提交
65
  pFileState->rowBuffMap = tSimpleHashInit(cap, hashFn);
5
54liuyao 已提交
66 67 68
  if (!pFileState->usedBuffs || !pFileState->freeBuffs || !pFileState->rowBuffMap) {
    goto _error;
  }
L
liuyao 已提交
69
  pFileState->keyLen = keySize;
5
54liuyao 已提交
70 71 72 73
  pFileState->rowSize = rowSize;
  pFileState->preCheckPointVersion = 0;
  pFileState->checkPointVersion = 1;
  pFileState->pFileStore = pFile;
5
54liuyao 已提交
74
  pFileState->getTs = fp;
dengyihao's avatar
dengyihao 已提交
75
  pFileState->maxRowCount = TMAX((uint64_t)memSize / rowSize, FLUSH_NUM * 2);
5
54liuyao 已提交
76
  pFileState->curRowCount = 0;
5
54liuyao 已提交
77
  pFileState->deleteMark = delMark;
L
add ini  
liuyao 已提交
78 79
  pFileState->flushMark = INT64_MIN;
  pFileState->maxTs = INT64_MIN;
L
liuyao 已提交
80
  recoverSnapshot(pFileState);
5
54liuyao 已提交
81 82 83
  return pFileState;

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

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

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

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

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

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

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

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

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

L
liuyao 已提交
157 158 159 160
bool needClearDiskBuff(SStreamFileState* pFileState) {
  return pFileState->flushMark > 0;
}

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

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

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 已提交
192
  flushSnapshot(pFileState, pFlushList, false);
L
liuyao 已提交
193 194 195 196 197 198 199 200 201 202
  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 已提交
203 204 205 206
  return TSDB_CODE_SUCCESS;
}

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

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

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

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

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

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

int32_t getRowBuff(SStreamFileState* pFileState, void* pKey, int32_t keyLen, void** pVal, int32_t* pVLen) {
5
54liuyao 已提交
254
  pFileState->maxTs = TMAX(pFileState->maxTs, pFileState->getTs(pKey));
5
54liuyao 已提交
255 256
  SRowBuffPos** pos = tSimpleHashGet(pFileState->rowBuffMap, pKey, keyLen);
  if (pos) {
L
liuyao 已提交
257 258 259
    *pVLen = pFileState->rowSize;
    *pVal = *pos;
    (*pos)->beUsed = true;
5
54liuyao 已提交
260 261 262
    return TSDB_CODE_SUCCESS;
  }
  SRowBuffPos* pNewPos = getNewRowPos(pFileState);
L
liuyao 已提交
263 264
  pNewPos->beUsed = true;
  ASSERT(pNewPos->pRowBuff);
5
54liuyao 已提交
265 266 267 268 269
  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 已提交
270
    void*   pVal = NULL;
L
liuyao 已提交
271
    int32_t code = streamStateGet_rocksdb(pFileState->pFileStore, pKey, &pVal, &len);
L
add ini  
liuyao 已提交
272
    qDebug("===stream===get %" PRId64 " from disc, res %d", ts, code);
L
liuyao 已提交
273 274 275
    if (code == TSDB_CODE_SUCCESS) {
      memcpy(pNewPos->pRowBuff, pVal, len);
    }
5
54liuyao 已提交
276 277 278
    taosMemoryFree(pVal);
  }

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

5
54liuyao 已提交
287 288 289 290 291 292 293
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 已提交
294
  if (pPos->pRowBuff) {
5
54liuyao 已提交
295 296
    (*pVal) = pPos->pRowBuff;
    return TSDB_CODE_SUCCESS;
5
54liuyao 已提交
297 298
  }

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

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

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

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

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

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

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

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

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

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

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

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

dengyihao's avatar
dengyihao 已提交
393 394 395 396 397 398
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 已提交
399

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

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

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

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

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

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