tsdbMergeTree.c 27.7 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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 "tsdb.h"
17
#include "tsdbFSet2.h"
18
#include "tsdbMerge.h"
H
Haojun Liao 已提交
19
#include "tsdbReadUtil.h"
20
#include "tsdbSttFileRW.h"
H
Hongze Cheng 已提交
21

H
Haojun Liao 已提交
22 23
static void tLDataIterClose2(SLDataIter *pIter);

24
// SLDataIter =================================================
25 26
SSttBlockLoadInfo *tCreateLastBlockLoadInfo(STSchema *pSchema, int16_t *colList, int32_t numOfCols,
                                            int32_t numOfSttTrigger) {
27
  SSttBlockLoadInfo *pLoadInfo = taosMemoryCalloc(numOfSttTrigger, sizeof(SSttBlockLoadInfo));
28
  if (pLoadInfo == NULL) {
H
Hongze Cheng 已提交
29
    terrno = TSDB_CODE_OUT_OF_MEMORY;
30 31 32
    return NULL;
  }

33
  for (int32_t i = 0; i < numOfSttTrigger; ++i) {
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    pLoadInfo[i].blockIndex[0] = -1;
    pLoadInfo[i].blockIndex[1] = -1;
    pLoadInfo[i].currentLoadBlockIndex = 1;

    int32_t code = tBlockDataCreate(&pLoadInfo[i].blockData[0]);
    if (code) {
      terrno = code;
    }

    code = tBlockDataCreate(&pLoadInfo[i].blockData[1]);
    if (code) {
      terrno = code;
    }

    pLoadInfo[i].aSttBlk = taosArrayInit(4, sizeof(SSttBlk));
H
Haojun Liao 已提交
49 50 51
    pLoadInfo[i].pSchema = pSchema;
    pLoadInfo[i].colIds = colList;
    pLoadInfo[i].numOfCols = numOfCols;
52 53 54 55 56
  }

  return pLoadInfo;
}

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
SSttBlockLoadInfo *tCreateOneLastBlockLoadInfo(STSchema *pSchema, int16_t *colList, int32_t numOfCols) {
  SSttBlockLoadInfo *pLoadInfo = taosMemoryCalloc(1, sizeof(SSttBlockLoadInfo));
  if (pLoadInfo == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return NULL;
  }

  pLoadInfo->blockIndex[0] = -1;
  pLoadInfo->blockIndex[1] = -1;
  pLoadInfo->currentLoadBlockIndex = 1;

  int32_t code = tBlockDataCreate(&pLoadInfo->blockData[0]);
  if (code) {
    terrno = code;
  }

  code = tBlockDataCreate(&pLoadInfo->blockData[1]);
  if (code) {
    terrno = code;
  }

  pLoadInfo->aSttBlk = taosArrayInit(4, sizeof(SSttBlk));
  pLoadInfo->pSchema = pSchema;
  pLoadInfo->colIds = colList;
  pLoadInfo->numOfCols = numOfCols;

  return pLoadInfo;
}

H
Hongze Cheng 已提交
86
void resetLastBlockLoadInfo(SSttBlockLoadInfo *pLoadInfo) {
87
  for (int32_t i = 0; i < 1; ++i) {
88 89 90
    pLoadInfo[i].currentLoadBlockIndex = 1;
    pLoadInfo[i].blockIndex[0] = -1;
    pLoadInfo[i].blockIndex[1] = -1;
91

92
    taosArrayClear(pLoadInfo[i].aSttBlk);
H
Haojun Liao 已提交
93 94 95

    pLoadInfo[i].elapsedTime = 0;
    pLoadInfo[i].loadBlocks = 0;
96
    pLoadInfo[i].sttBlockLoaded = false;
H
Haojun Liao 已提交
97 98 99
  }
}

H
Hongze Cheng 已提交
100
void getLastBlockLoadInfo(SSttBlockLoadInfo *pLoadInfo, int64_t *blocks, double *el) {
101
  for (int32_t i = 0; i < 1; ++i) {
H
Haojun Liao 已提交
102 103
    *el += pLoadInfo[i].elapsedTime;
    *blocks += pLoadInfo[i].loadBlocks;
104 105 106
  }
}

107 108
static void freeTombBlock(void *param) {
  STombBlock **pTombBlock = (STombBlock **)param;
H
Haojun Liao 已提交
109 110 111 112
  tTombBlockDestroy(*pTombBlock);
  taosMemoryFree(*pTombBlock);
}

H
Hongze Cheng 已提交
113
void *destroyLastBlockLoadInfo(SSttBlockLoadInfo *pLoadInfo) {
H
Haojun Liao 已提交
114 115 116 117
  if (pLoadInfo == NULL) {
    return NULL;
  }

118
  for (int32_t i = 0; i < 1; ++i) {
119 120 121 122
    pLoadInfo[i].currentLoadBlockIndex = 1;
    pLoadInfo[i].blockIndex[0] = -1;
    pLoadInfo[i].blockIndex[1] = -1;

H
Hongze Cheng 已提交
123 124
    tBlockDataDestroy(&pLoadInfo[i].blockData[0]);
    tBlockDataDestroy(&pLoadInfo[i].blockData[1]);
125 126 127 128 129 130 131 132

    taosArrayDestroy(pLoadInfo[i].aSttBlk);
  }

  taosMemoryFree(pLoadInfo);
  return NULL;
}

133
static void destroyLDataIter(SLDataIter *pIter) {
134 135 136
  tLDataIterClose2(pIter);
  destroyLastBlockLoadInfo(pIter->pBlockLoadInfo);
  taosMemoryFree(pIter);
137 138
}

139
void *destroySttBlockReader(SArray *pLDataIterArray, int64_t *blocks, double *el) {
140 141
  if (pLDataIterArray == NULL) {
    return NULL;
H
Haojun Liao 已提交
142 143
  }

144
  int32_t numOfLevel = taosArrayGetSize(pLDataIterArray);
145 146 147 148
  for (int32_t i = 0; i < numOfLevel; ++i) {
    SArray *pList = taosArrayGetP(pLDataIterArray, i);
    for (int32_t j = 0; j < taosArrayGetSize(pList); ++j) {
      SLDataIter *pIter = taosArrayGetP(pList, j);
S
shenglian zhou 已提交
149 150 151 152
      if (pIter->bInit) {
          *el += pIter->pBlockLoadInfo->elapsedTime;
          *blocks += pIter->pBlockLoadInfo->loadBlocks;
      }
153 154 155
      destroyLDataIter(pIter);
    }
    taosArrayDestroy(pList);
H
Haojun Liao 已提交
156
  }
157 158 159

  taosArrayDestroy(pLDataIterArray);
  return NULL;
H
Haojun Liao 已提交
160 161
}

H
Hongze Cheng 已提交
162
static SBlockData *loadLastBlock(SLDataIter *pIter, const char *idStr) {
163 164
  int32_t code = 0;

H
Hongze Cheng 已提交
165 166
  SSttBlockLoadInfo *pInfo = pIter->pBlockLoadInfo;
  if (pInfo->blockIndex[0] == pIter->iSttBlk) {
167 168 169 170 171
    if (pInfo->currentLoadBlockIndex != 0) {
      tsdbDebug("current load index is set to 0, block index:%d, file index:%d, due to uid:%" PRIu64 ", load data, %s",
                pIter->iSttBlk, pIter->iStt, pIter->uid, idStr);
      pInfo->currentLoadBlockIndex = 0;
    }
172 173 174
    return &pInfo->blockData[0];
  }

175
  if (pInfo->blockIndex[1] == pIter->iSttBlk) {
176
    if (pInfo->currentLoadBlockIndex != 1) {
H
Hongze Cheng 已提交
177
      tsdbDebug("current load index is set to 1, block index:%d, file index:%d, due to uid:%" PRIu64 ", load data, %s",
178 179 180
                pIter->iSttBlk, pIter->iStt, pIter->uid, idStr);
      pInfo->currentLoadBlockIndex = 1;
    }
181 182 183
    return &pInfo->blockData[1];
  }

184
  if (pIter->pSttBlk == NULL || pInfo->pSchema == NULL) {
H
Haojun Liao 已提交
185 186 187 188
    return NULL;
  }

  // current block not loaded yet
189
  pInfo->currentLoadBlockIndex ^= 1;
H
Haojun Liao 已提交
190
  int64_t st = taosGetTimestampUs();
191

H
Haojun Liao 已提交
192
  SBlockData *pBlock = &pInfo->blockData[pInfo->currentLoadBlockIndex];
193 194
  code = tsdbSttFileReadBlockDataByColumn(pIter->pReader, pIter->pSttBlk, pBlock, pInfo->pSchema, &pInfo->colIds[1],
                                          pInfo->numOfCols - 1);
H
Haojun Liao 已提交
195 196 197
  if (code != TSDB_CODE_SUCCESS) {
    goto _exit;
  }
H
Haojun Liao 已提交
198

H
Haojun Liao 已提交
199 200 201
  double el = (taosGetTimestampUs() - st) / 1000.0;
  pInfo->elapsedTime += el;
  pInfo->loadBlocks += 1;
202

H
Haojun Liao 已提交
203
  tsdbDebug("read last block, total load:%d, trigger by uid:%" PRIu64
204
            ", last file index:%d, last block index:%d, entry:%d, rows:%d, %p, elapsed time:%.2f ms, %s",
dengyihao's avatar
dengyihao 已提交
205 206
            pInfo->loadBlocks, pIter->uid, pIter->iStt, pIter->iSttBlk, pInfo->currentLoadBlockIndex, pBlock->nRow,
            pBlock, el, idStr);
207

H
Haojun Liao 已提交
208 209
  pInfo->blockIndex[pInfo->currentLoadBlockIndex] = pIter->iSttBlk;
  pIter->iRow = (pIter->backward) ? pInfo->blockData[pInfo->currentLoadBlockIndex].nRow : -1;
H
Haojun Liao 已提交
210

211 212
  tsdbDebug("last block index list:%d, %d, rowIndex:%d %s", pInfo->blockIndex[0], pInfo->blockIndex[1], pIter->iRow,
            idStr);
213 214
  return &pInfo->blockData[pInfo->currentLoadBlockIndex];

H
Hongze Cheng 已提交
215
_exit:
216 217 218 219 220
  if (code != TSDB_CODE_SUCCESS) {
    terrno = code;
  }

  return NULL;
221 222
}

223
// find the earliest block that contains the required records
H
Hongze Cheng 已提交
224 225
static FORCE_INLINE int32_t findEarliestIndex(int32_t index, uint64_t uid, const SSttBlk *pBlockList, int32_t num,
                                              int32_t backward) {
226
  int32_t i = index;
H
Hongze Cheng 已提交
227
  int32_t step = backward ? 1 : -1;
H
Haojun Liao 已提交
228
  while (i >= 0 && i < num && uid >= pBlockList[i].minUid && uid <= pBlockList[i].maxUid) {
229 230 231 232 233
    i += step;
  }
  return i - step;
}

H
Hongze Cheng 已提交
234
static int32_t binarySearchForStartBlock(SSttBlk *pBlockList, int32_t num, uint64_t uid, int32_t backward) {
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
  int32_t midPos = -1;
  if (num <= 0) {
    return -1;
  }

  int32_t firstPos = 0;
  int32_t lastPos = num - 1;

  // find the first position which is bigger than the key
  if ((uid > pBlockList[lastPos].maxUid) || (uid < pBlockList[firstPos].minUid)) {
    return -1;
  }

  while (1) {
    if (uid >= pBlockList[firstPos].minUid && uid <= pBlockList[firstPos].maxUid) {
250
      return findEarliestIndex(firstPos, uid, pBlockList, num, backward);
251 252 253 254 255 256 257 258 259 260 261 262 263 264
    }

    if (uid > pBlockList[lastPos].maxUid || uid < pBlockList[firstPos].minUid) {
      return -1;
    }

    int32_t numOfRows = lastPos - firstPos + 1;
    midPos = (numOfRows >> 1u) + firstPos;

    if (uid < pBlockList[midPos].minUid) {
      lastPos = midPos - 1;
    } else if (uid > pBlockList[midPos].maxUid) {
      firstPos = midPos + 1;
    } else {
265
      return findEarliestIndex(midPos, uid, pBlockList, num, backward);
266 267 268 269
    }
  }
}

H
Hongze Cheng 已提交
270 271
static FORCE_INLINE int32_t findEarliestRow(int32_t index, uint64_t uid, const uint64_t *uidList, int32_t num,
                                            int32_t backward) {
272
  int32_t i = index;
H
Hongze Cheng 已提交
273
  int32_t step = backward ? 1 : -1;
H
Haojun Liao 已提交
274
  while (i >= 0 && i < num && uid == uidList[i]) {
275 276 277 278 279
    i += step;
  }
  return i - step;
}

H
Hongze Cheng 已提交
280
static int32_t binarySearchForStartRowIndex(uint64_t *uidList, int32_t num, uint64_t uid, int32_t backward) {
281 282 283 284 285 286 287 288 289 290
  int32_t firstPos = 0;
  int32_t lastPos = num - 1;

  // find the first position which is bigger than the key
  if ((uid > uidList[lastPos]) || (uid < uidList[firstPos])) {
    return -1;
  }

  while (1) {
    if (uid == uidList[firstPos]) {
291
      return findEarliestRow(firstPos, uid, uidList, num, backward);
292 293 294 295 296 297 298 299 300 301 302 303 304 305
    }

    if (uid > uidList[lastPos] || uid < uidList[firstPos]) {
      return -1;
    }

    int32_t numOfRows = lastPos - firstPos + 1;
    int32_t midPos = (numOfRows >> 1u) + firstPos;

    if (uid < uidList[midPos]) {
      lastPos = midPos - 1;
    } else if (uid > uidList[midPos]) {
      firstPos = midPos + 1;
    } else {
306
      return findEarliestRow(midPos, uid, uidList, num, backward);
307 308 309 310
    }
  }
}

311
int32_t tLDataIterOpen(struct SLDataIter *pIter, SDataFReader *pReader, int32_t iStt, int8_t backward, uint64_t suid,
312 313
                       uint64_t uid, STimeWindow *pTimeWindow, SVersionRange *pRange, SSttBlockLoadInfo *pBlockLoadInfo,
                       const char *idStr, bool strictTimeRange) {
314 315 316
  return 0;
}

317 318
static int32_t extractSttBlockInfo(SLDataIter *pIter, const TSttBlkArray *pArray, SSttBlockLoadInfo *pBlockLoadInfo,
                                   uint64_t suid) {
319 320 321 322 323 324 325 326 327
  if (TARRAY2_SIZE(pArray) <= 0) {
    return TSDB_CODE_SUCCESS;
  }

  SSttBlk *pStart = &pArray->data[0];
  SSttBlk *pEnd = &pArray->data[TARRAY2_SIZE(pArray) - 1];

  // all identical
  if (pStart->suid == pEnd->suid) {
328
    if (pStart->suid != suid) {  // no qualified stt block existed
329 330 331 332 333 334 335 336 337 338
      taosArrayClear(pBlockLoadInfo->aSttBlk);
      pIter->iSttBlk = -1;
      return TSDB_CODE_SUCCESS;
    } else {  // all blocks are qualified
      taosArrayClear(pBlockLoadInfo->aSttBlk);
      taosArrayAddBatch(pBlockLoadInfo->aSttBlk, pArray->data, pArray->size);
    }
  } else {
    SArray *pTmp = taosArrayInit(TARRAY2_SIZE(pArray), sizeof(SSttBlk));
    for (int32_t i = 0; i < TARRAY2_SIZE(pArray); ++i) {
339
      SSttBlk *p = &pArray->data[i];
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
      if (p->suid < suid) {
        continue;
      }

      if (p->suid == suid) {
        taosArrayPush(pTmp, p);
      } else if (p->suid > suid) {
        break;
      }
    }

    taosArrayDestroy(pBlockLoadInfo->aSttBlk);
    pBlockLoadInfo->aSttBlk = pTmp;
  }

  return TSDB_CODE_SUCCESS;
}

358 359
static int32_t suidComparFn(const void *target, const void *p2) {
  const uint64_t *targetUid = target;
360
  const uint64_t *uid2 = p2;
361 362 363
  if (*uid2 == (*targetUid)) {
    return 0;
  } else {
H
Hongze Cheng 已提交
364
    return (*targetUid) < (*uid2) ? -1 : 1;
365
  }
366
}
367

368 369 370 371
static bool existsFromSttBlkStatis(const TStatisBlkArray *pStatisBlkArray, uint64_t suid, uint64_t uid,
                                   SSttFileReader *pReader) {
  if (TARRAY2_SIZE(pStatisBlkArray) <= 0) {
    return true;
372 373
  }

374 375 376
  int32_t i = 0;
  for (i = 0; i < TARRAY2_SIZE(pStatisBlkArray); ++i) {
    SStatisBlk *p = &pStatisBlkArray->data[i];
H
Haojun Liao 已提交
377
    if (p->minTbid.suid <= suid && p->maxTbid.suid >= suid) {
378
      break;
379
    }
380
  }
381

382 383
  if (i >= TARRAY2_SIZE(pStatisBlkArray)) {
    return false;
384 385
  }

H
Hongze Cheng 已提交
386
  while (i < TARRAY2_SIZE(pStatisBlkArray)) {
387 388 389 390
    SStatisBlk *p = &pStatisBlkArray->data[i];
    if (p->minTbid.suid > suid) {
      return false;
    }
391

392 393 394 395 396 397 398
    STbStatisBlock block = {0};
    tsdbSttFileReadStatisBlock(pReader, p, &block);

    int32_t index = tarray2SearchIdx(block.suid, &suid, sizeof(int64_t), suidComparFn, TD_EQ);
    if (index == -1) {
      tStatisBlockDestroy(&block);
      return false;
399
    }
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422

    int32_t j = index;
    if (block.uid->data[j] == uid) {
      tStatisBlockDestroy(&block);
      return true;
    } else if (block.uid->data[j] > uid) {
      while (j >= 0 && block.suid->data[j] == suid) {
        if (block.uid->data[j] == uid) {
          tStatisBlockDestroy(&block);
          return true;
        } else {
          j -= 1;
        }
      }
    } else {
      j = index + 1;
      while (j < block.suid->size && block.suid->data[j] == suid) {
        if (block.uid->data[j] == uid) {
          tStatisBlockDestroy(&block);
          return true;
        } else {
          j += 1;
        }
423 424
      }
    }
425 426 427

    tStatisBlockDestroy(&block);
    i += 1;
428
  }
429

430
  return false;
431 432
}

433 434 435 436
int32_t tLDataIterOpen2(struct SLDataIter *pIter, SSttFileReader *pSttFileReader, int32_t iStt, int8_t backward,
                        uint64_t suid, uint64_t uid, STimeWindow *pTimeWindow, SVersionRange *pRange,
                        SSttBlockLoadInfo *pBlockLoadInfo, const char *idStr, bool strictTimeRange,
                        _load_tomb_fn loadTombFn, void *pReader1) {
H
Haojun Liao 已提交
437 438
  int32_t code = TSDB_CODE_SUCCESS;

439 440 441
  pIter->uid = uid;
  pIter->iStt = iStt;
  pIter->backward = backward;
442 443 444 445
  pIter->verRange.minVer = pRange->minVer;
  pIter->verRange.maxVer = pRange->maxVer;
  pIter->timeWindow.skey = pTimeWindow->skey;
  pIter->timeWindow.ekey = pTimeWindow->ekey;
H
Haojun Liao 已提交
446
  pIter->pReader = pSttFileReader;
447
  pIter->pBlockLoadInfo = pBlockLoadInfo;
448

449
  if (!pBlockLoadInfo->sttBlockLoaded) {
450
    int64_t st = taosGetTimestampUs();
451

452
    const TSttBlkArray *pSttBlkArray = NULL;
453
    pBlockLoadInfo->sttBlockLoaded = true;
454

455 456
    // load the stt block info for each stt-block
    code = tsdbSttFileReadSttBlk(pIter->pReader, &pSttBlkArray);
457
    if (code != TSDB_CODE_SUCCESS) {
458
      tsdbError("load stt blk failed, code:%s, %s", tstrerror(code), idStr);
459
      return code;
460 461
    }

462
    code = extractSttBlockInfo(pIter, pSttBlkArray, pBlockLoadInfo, suid);
463
    if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
464
      tsdbError("load stt block info failed, code:%s, %s", tstrerror(code), idStr);
465
      return code;
466
    }
467

468 469 470 471 472 473 474 475
    // load stt blocks statis for all stt-blocks, to decide if the data of queried table exists in current stt file
    code = tsdbSttFileReadStatisBlk(pIter->pReader, (const TStatisBlkArray **)&pBlockLoadInfo->pSttStatisBlkArray);
    if (code != TSDB_CODE_SUCCESS) {
      tsdbError("failed to load stt block statistics, code:%s, %s", tstrerror(code), idStr);
      return code;
    }

    code = loadTombFn(pReader1, pIter->pReader, pIter->pBlockLoadInfo);
H
Haojun Liao 已提交
476

H
Hongze Cheng 已提交
477
    double el = (taosGetTimestampUs() - st) / 1000.0;
478 479 480
    tsdbDebug("load the stt file info completed, elapsed time:%.2fms, %s", el, idStr);
  }

H
Hongze Cheng 已提交
481 482 483 484 485 486
  // bool exists = existsFromSttBlkStatis(pBlockLoadInfo->pSttStatisBlkArray, suid, uid, pIter->pReader);
  // if (!exists) {
  //   pIter->iSttBlk = -1;
  //   pIter->pSttBlk = NULL;
  //   return TSDB_CODE_SUCCESS;
  // }
H
Hongze Cheng 已提交
487

488 489
  // find the start block, actually we could load the position to avoid repeatly searching for the start position when
  // the skey is updated.
H
Haojun Liao 已提交
490 491
  size_t size = taosArrayGetSize(pBlockLoadInfo->aSttBlk);
  pIter->iSttBlk = binarySearchForStartBlock(pBlockLoadInfo->aSttBlk->pData, size, uid, backward);
492
  if (pIter->iSttBlk != -1) {
H
Haojun Liao 已提交
493
    pIter->pSttBlk = taosArrayGet(pBlockLoadInfo->aSttBlk, pIter->iSttBlk);
494 495 496 497 498
    pIter->iRow = (pIter->backward) ? pIter->pSttBlk->nRow : -1;

    if ((!backward) && ((strictTimeRange && pIter->pSttBlk->minKey >= pIter->timeWindow.ekey) ||
                        (!strictTimeRange && pIter->pSttBlk->minKey > pIter->timeWindow.ekey))) {
      pIter->pSttBlk = NULL;
499 500
    }

501 502 503 504
    if (backward && ((strictTimeRange && pIter->pSttBlk->maxKey <= pIter->timeWindow.skey) ||
                     (!strictTimeRange && pIter->pSttBlk->maxKey < pIter->timeWindow.skey))) {
      pIter->pSttBlk = NULL;
      pIter->ignoreEarlierTs = true;
505
    }
H
Hongze Cheng 已提交
506 507
  }

H
Haojun Liao 已提交
508
  return code;
H
Hongze Cheng 已提交
509 510
}

H
Haojun Liao 已提交
511 512
void tLDataIterClose2(SLDataIter *pIter) {
  tsdbSttFileReaderClose(&pIter->pReader);
H
Haojun Liao 已提交
513
  pIter->pReader = NULL;
H
Haojun Liao 已提交
514
}
H
Hongze Cheng 已提交
515

H
Hongze Cheng 已提交
516
void tLDataIterNextBlock(SLDataIter *pIter, const char *idStr) {
H
Hongze Cheng 已提交
517
  int32_t step = pIter->backward ? -1 : 1;
518 519
  int32_t oldIndex = pIter->iSttBlk;

H
Hongze Cheng 已提交
520
  pIter->iSttBlk += step;
H
Hongze Cheng 已提交
521

522
  int32_t index = -1;
H
Haojun Liao 已提交
523
  size_t  size = pIter->pBlockLoadInfo->aSttBlk->size;
H
Hongze Cheng 已提交
524
  for (int32_t i = pIter->iSttBlk; i < size && i >= 0; i += step) {
525
    SSttBlk *p = taosArrayGet(pIter->pBlockLoadInfo->aSttBlk, i);
526 527 528 529 530
    if ((!pIter->backward) && p->minUid > pIter->uid) {
      break;
    }

    if (pIter->backward && p->maxUid < pIter->uid) {
531 532 533
      break;
    }

534
    // check uid firstly
535
    if (p->minUid <= pIter->uid && p->maxUid >= pIter->uid) {
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
      if ((!pIter->backward) && p->minKey > pIter->timeWindow.ekey) {
        break;
      }

      if (pIter->backward && p->maxKey < pIter->timeWindow.skey) {
        break;
      }

      // check time range secondly
      if (p->minKey <= pIter->timeWindow.ekey && p->maxKey >= pIter->timeWindow.skey) {
        if ((!pIter->backward) && p->minVer > pIter->verRange.maxVer) {
          break;
        }

        if (pIter->backward && p->maxVer < pIter->verRange.minVer) {
          break;
        }

        if (p->minVer <= pIter->verRange.maxVer && p->maxVer >= pIter->verRange.minVer) {
          index = i;
          break;
        }
      }
559 560 561
    }
  }

562 563
  pIter->pSttBlk = NULL;
  if (index != -1) {
H
Haojun Liao 已提交
564
    pIter->iSttBlk = index;
565
    pIter->pSttBlk = (SSttBlk *)taosArrayGet(pIter->pBlockLoadInfo->aSttBlk, pIter->iSttBlk);
566 567
    tsdbDebug("try next last file block:%d from stt fileIdx:%d, trigger by uid:%" PRIu64 ", file index:%d, %s",
              pIter->iSttBlk, oldIndex, pIter->uid, pIter->iStt, idStr);
568
  } else {
569
    tsdbDebug("no more last block qualified, uid:%" PRIu64 ", file index:%d, %s", pIter->uid, oldIndex, idStr);
570 571 572
  }
}

H
Hongze Cheng 已提交
573 574
static void findNextValidRow(SLDataIter *pIter, const char *idStr) {
  bool    hasVal = false;
575
  int32_t step = pIter->backward ? -1 : 1;
H
Hongze Cheng 已提交
576
  int32_t i = pIter->iRow;
577

578
  SBlockData *pData = loadLastBlock(pIter, idStr);
579

580
  // mostly we only need to find the start position for a given table
581 582
  if ((((i == 0) && (!pIter->backward)) || (i == pData->nRow - 1 && pIter->backward)) && pData->aUid != NULL) {
    i = binarySearchForStartRowIndex((uint64_t *)pData->aUid, pData->nRow, pIter->uid, pIter->backward);
H
Haojun Liao 已提交
583
    if (i == -1) {
584
      tsdbDebug("failed to find the data in pBlockData, uid:%" PRIu64 " , %s", pIter->uid, idStr);
H
Haojun Liao 已提交
585 586 587
      pIter->iRow = -1;
      return;
    }
588 589
  }

590 591
  for (; i < pData->nRow && i >= 0; i += step) {
    if (pData->aUid != NULL) {
592
      if (!pIter->backward) {
593
        if (pData->aUid[i] > pIter->uid) {
594 595 596
          break;
        }
      } else {
597
        if (pData->aUid[i] < pIter->uid) {
598 599 600 601 602
          break;
        }
      }
    }

603
    int64_t ts = pData->aTSKEY[i];
H
Hongze Cheng 已提交
604
    if (!pIter->backward) {               // asc
605 606 607 608 609 610 611 612 613 614 615
      if (ts > pIter->timeWindow.ekey) {  // no more data
        break;
      } else if (ts < pIter->timeWindow.skey) {
        continue;
      }
    } else {
      if (ts < pIter->timeWindow.skey) {
        break;
      } else if (ts > pIter->timeWindow.ekey) {
        continue;
      }
616 617
    }

618
    int64_t ver = pData->aVersion[i];
619 620 621 622 623 624 625 626 627 628 629
    if (ver < pIter->verRange.minVer) {
      continue;
    }

    // todo opt handle desc case
    if (ver > pIter->verRange.maxVer) {
      continue;
    }

    hasVal = true;
    break;
H
Hongze Cheng 已提交
630
  }
631

H
Hongze Cheng 已提交
632
  pIter->iRow = (hasVal) ? i : -1;
H
Hongze Cheng 已提交
633 634
}

H
Hongze Cheng 已提交
635
bool tLDataIterNextRow(SLDataIter *pIter, const char *idStr) {
H
Hongze Cheng 已提交
636
  int32_t step = pIter->backward ? -1 : 1;
H
Haojun Liao 已提交
637
  terrno = TSDB_CODE_SUCCESS;
638 639

  // no qualified last file block in current file, no need to fetch row
H
Hongze Cheng 已提交
640
  if (pIter->pSttBlk == NULL) {
641 642
    return false;
  }
H
Hongze Cheng 已提交
643

H
Hongze Cheng 已提交
644
  int32_t     iBlockL = pIter->iSttBlk;
H
Haojun Liao 已提交
645
  SBlockData *pBlockData = loadLastBlock(pIter, idStr);
H
Haojun Liao 已提交
646
  if (pBlockData == NULL || terrno != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
647 648 649
    goto _exit;
  }

650 651
  pIter->iRow += step;

H
Hongze Cheng 已提交
652
  while (1) {
653
    bool skipBlock = false;
H
Haojun Liao 已提交
654
    findNextValidRow(pIter, idStr);
655

656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
    if (pIter->pBlockLoadInfo->checkRemainingRow) {
      skipBlock = true;
      int16_t *aCols = pIter->pBlockLoadInfo->colIds;
      int      nCols = pIter->pBlockLoadInfo->numOfCols;
      bool     isLast = pIter->pBlockLoadInfo->isLast;
      for (int inputColIndex = 0; inputColIndex < nCols; ++inputColIndex) {
        for (int colIndex = 0; colIndex < pBlockData->nColData; ++colIndex) {
          SColData *pColData = &pBlockData->aColData[colIndex];
          int16_t   cid = pColData->cid;

          if (cid == aCols[inputColIndex]) {
            if (isLast && (pColData->flag & HAS_VALUE)) {
              skipBlock = false;
              break;
            } else if (pColData->flag & (HAS_VALUE | HAS_NULL)) {
              skipBlock = false;
              break;
            }
          }
        }
      }
    }

    if (skipBlock || pIter->iRow >= pBlockData->nRow || pIter->iRow < 0) {
680
      tLDataIterNextBlock(pIter, idStr);
H
Hongze Cheng 已提交
681
      if (pIter->pSttBlk == NULL) {  // no more data
682 683 684 685
        goto _exit;
      }
    } else {
      break;
H
Hongze Cheng 已提交
686 687
    }

H
Hongze Cheng 已提交
688
    if (iBlockL != pIter->iSttBlk) {
H
Haojun Liao 已提交
689
      pBlockData = loadLastBlock(pIter, idStr);
690 691 692
      if (pBlockData == NULL) {
        goto _exit;
      }
H
Haojun Liao 已提交
693 694

      // set start row index
695
      pIter->iRow = pIter->backward ? pBlockData->nRow - 1 : 0;
H
Hongze Cheng 已提交
696 697 698
    }
  }

699 700 701
  pIter->rInfo.suid = pBlockData->suid;
  pIter->rInfo.uid = pBlockData->uid;
  pIter->rInfo.row = tsdbRowFromBlockData(pBlockData, pIter->iRow);
H
Hongze Cheng 已提交
702 703

_exit:
704
  return (terrno == TSDB_CODE_SUCCESS) && (pIter->pSttBlk != NULL) && (pBlockData != NULL);
H
Hongze Cheng 已提交
705 706
}

H
Hongze Cheng 已提交
707
SRowInfo *tLDataIterGet(SLDataIter *pIter) { return &pIter->rInfo; }
H
Hongze Cheng 已提交
708 709

// SMergeTree =================================================
H
Hongze Cheng 已提交
710 711 712
static FORCE_INLINE int32_t tLDataIterCmprFn(const SRBTreeNode *p1, const SRBTreeNode *p2) {
  SLDataIter *pIter1 = (SLDataIter *)(((uint8_t *)p1) - offsetof(SLDataIter, node));
  SLDataIter *pIter2 = (SLDataIter *)(((uint8_t *)p2) - offsetof(SLDataIter, node));
H
Hongze Cheng 已提交
713

714 715
  TSDBKEY key1 = TSDBROW_KEY(&pIter1->rInfo.row);
  TSDBKEY key2 = TSDBROW_KEY(&pIter2->rInfo.row);
H
Hongze Cheng 已提交
716

717 718 719 720 721 722 723 724 725 726 727 728 729
  if (key1.ts < key2.ts) {
    return -1;
  } else if (key1.ts > key2.ts) {
    return 1;
  } else {
    if (key1.version < key2.version) {
      return -1;
    } else if (key1.version > key2.version) {
      return 1;
    } else {
      return 0;
    }
  }
H
Hongze Cheng 已提交
730 731
}

732 733 734 735
static FORCE_INLINE int32_t tLDataIterDescCmprFn(const SRBTreeNode *p1, const SRBTreeNode *p2) {
  return -1 * tLDataIterCmprFn(p1, p2);
}

736
int32_t tMergeTreeOpen(SMergeTree *pMTree, int8_t backward, SDataFReader *pFReader, uint64_t suid, uint64_t uid,
737
                       STimeWindow *pTimeWindow, SVersionRange *pVerRange, SSttBlockLoadInfo *pBlockLoadInfo,
738
                       bool destroyLoadInfo, const char *idStr, bool strictTimeRange, SLDataIter *pLDataIter) {
739 740
  int32_t code = TSDB_CODE_SUCCESS;

H
Hongze Cheng 已提交
741
  pMTree->backward = backward;
742
  pMTree->pIter = NULL;
H
Haojun Liao 已提交
743
  pMTree->idStr = idStr;
744

dengyihao's avatar
dengyihao 已提交
745
  if (!pMTree->backward) {  // asc
746
    tRBTreeCreate(&pMTree->rbt, tLDataIterCmprFn);
dengyihao's avatar
dengyihao 已提交
747
  } else {  // desc
748 749
    tRBTreeCreate(&pMTree->rbt, tLDataIterDescCmprFn);
  }
750

751 752
  pMTree->pLoadInfo = pBlockLoadInfo;
  pMTree->destroyLoadInfo = destroyLoadInfo;
753
  pMTree->ignoreEarlierTs = false;
754

H
Hongze Cheng 已提交
755
  for (int32_t i = 0; i < pFReader->pSet->nSttF; ++i) {  // open all last file
756 757
    memset(&pLDataIter[i], 0, sizeof(SLDataIter));
    code = tLDataIterOpen(&pLDataIter[i], pFReader, i, pMTree->backward, suid, uid, pTimeWindow, pVerRange,
758
                          &pMTree->pLoadInfo[i], pMTree->idStr, strictTimeRange);
759 760 761 762
    if (code != TSDB_CODE_SUCCESS) {
      goto _end;
    }

763
    bool hasVal = tLDataIterNextRow(&pLDataIter[i], pMTree->idStr);
764
    if (hasVal) {
765
      tMergeTreeAddIter(pMTree, &pLDataIter[i]);
766
    } else {
767
      if (!pMTree->ignoreEarlierTs) {
768
        pMTree->ignoreEarlierTs = pLDataIter[i].ignoreEarlierTs;
769
      }
770 771
    }
  }
772 773 774

  return code;

H
Hongze Cheng 已提交
775
_end:
776 777
  tMergeTreeClose(pMTree);
  return code;
H
Hongze Cheng 已提交
778
}
H
Hongze Cheng 已提交
779

780
int32_t tMergeTreeOpen2(SMergeTree *pMTree, SMergeTreeConf *pConf) {
H
Haojun Liao 已提交
781
  int32_t code = TSDB_CODE_SUCCESS;
782

H
Haojun Liao 已提交
783
  pMTree->pIter = NULL;
784 785
  pMTree->backward = pConf->backward;
  pMTree->idStr = pConf->idstr;
786

H
Haojun Liao 已提交
787 788 789 790 791
  if (!pMTree->backward) {  // asc
    tRBTreeCreate(&pMTree->rbt, tLDataIterCmprFn);
  } else {  // desc
    tRBTreeCreate(&pMTree->rbt, tLDataIterDescCmprFn);
  }
792

H
Haojun Liao 已提交
793
  pMTree->ignoreEarlierTs = false;
794

795
  int32_t size = ((STFileSet *)pConf->pCurrentFileset)->lvlArr->size;
H
Haojun Liao 已提交
796 797 798
  if (size == 0) {
    goto _end;
  }
799

800
  // add the list/iter placeholder
801
  while (taosArrayGetSize(pConf->pSttFileBlockIterArray) < size) {
802
    SArray *pList = taosArrayInit(4, POINTER_BYTES);
803
    taosArrayPush(pConf->pSttFileBlockIterArray, &pList);
804
  }
805

806
  for (int32_t j = 0; j < size; ++j) {
807
    SSttLvl *pSttLevel = ((STFileSet *)pConf->pCurrentFileset)->lvlArr->data[j];
808
    ASSERT(pSttLevel->level == j);
809

810
    SArray *pList = taosArrayGetP(pConf->pSttFileBlockIterArray, j);
811
    int32_t numOfIter = taosArrayGetSize(pList);
H
Haojun Liao 已提交
812

813 814
    if (numOfIter < TARRAY2_SIZE(pSttLevel->fobjArr)) {
      int32_t inc = TARRAY2_SIZE(pSttLevel->fobjArr) - numOfIter;
815
      for (int32_t k = 0; k < inc; ++k) {
816 817
        SLDataIter *pIter = taosMemoryCalloc(1, sizeof(SLDataIter));
        taosArrayPush(pList, &pIter);
H
Haojun Liao 已提交
818
      }
819 820 821 822 823 824
    } else if (numOfIter > TARRAY2_SIZE(pSttLevel->fobjArr)){
        int32_t inc = numOfIter - TARRAY2_SIZE(pSttLevel->fobjArr);
        for (int i = 0; i < inc; ++i) {
            SLDataIter *pIter = taosArrayPop(pList);
            destroyLDataIter(pIter);
        }
H
Haojun Liao 已提交
825
    }
H
Haojun Liao 已提交
826

827
    for (int32_t i = 0; i < TARRAY2_SIZE(pSttLevel->fobjArr); ++i) {  // open all last file
828
      SLDataIter *pIter = taosArrayGetP(pList, i);
H
Haojun Liao 已提交
829

830 831
      SSttFileReader    *pSttFileReader = pIter->pReader;
      SSttBlockLoadInfo *pLoadInfo = pIter->pBlockLoadInfo;
832 833 834

      // open stt file reader if not
      if (pSttFileReader == NULL) {
835
        SSttFileReaderConfig conf = {.tsdb = pConf->pTsdb, .szPage = pConf->pTsdb->pVnode->config.tsdbPageSize};
836 837 838 839 840 841 842 843 844
        conf.file[0] = *pSttLevel->fobjArr->data[i]->f;

        code = tsdbSttFileReaderOpen(pSttLevel->fobjArr->data[i]->fname, &conf, &pSttFileReader);
        if (code != TSDB_CODE_SUCCESS) {
          return code;
        }
      }

      if (pLoadInfo == NULL) {
845
        pLoadInfo = tCreateOneLastBlockLoadInfo(pConf->pSchema, pConf->pCols, pConf->numOfCols);
846 847 848
      }

      memset(pIter, 0, sizeof(SLDataIter));
849
      code = tLDataIterOpen2(pIter, pSttFileReader, i, pMTree->backward, pConf->suid, pConf->uid, &pConf->timewindow,
850 851
                             &pConf->verRange, pLoadInfo, pMTree->idStr, pConf->strictTimeRange, pConf->loadTombFn,
                             pConf->pReader);
852 853 854
      if (code != TSDB_CODE_SUCCESS) {
        goto _end;
      }
S
shenglian zhou 已提交
855
      pIter->bInit = true;
856 857 858 859 860 861 862
      bool hasVal = tLDataIterNextRow(pIter, pMTree->idStr);
      if (hasVal) {
        tMergeTreeAddIter(pMTree, pIter);
      } else {
        if (!pMTree->ignoreEarlierTs) {
          pMTree->ignoreEarlierTs = pIter->ignoreEarlierTs;
        }
H
Haojun Liao 已提交
863
      }
864
    }
H
Haojun Liao 已提交
865
  }
866

H
Haojun Liao 已提交
867
  return code;
868

H
Haojun Liao 已提交
869 870 871
_end:
  tMergeTreeClose(pMTree);
  return code;
872 873
}

874 875
void tMergeTreeAddIter(SMergeTree *pMTree, SLDataIter *pIter) { tRBTreePut(&pMTree->rbt, (SRBTreeNode *)pIter); }

876 877
bool tMergeTreeIgnoreEarlierTs(SMergeTree *pMTree) { return pMTree->ignoreEarlierTs; }

H
Hongze Cheng 已提交
878
bool tMergeTreeNext(SMergeTree *pMTree) {
879 880 881 882
  int32_t code = TSDB_CODE_SUCCESS;
  if (pMTree->pIter) {
    SLDataIter *pIter = pMTree->pIter;

H
Haojun Liao 已提交
883
    bool hasVal = tLDataIterNextRow(pIter, pMTree->idStr);
884 885 886 887 888 889 890
    if (!hasVal) {
      pMTree->pIter = NULL;
    }

    // compare with min in RB Tree
    pIter = (SLDataIter *)tRBTreeMin(&pMTree->rbt);
    if (pMTree->pIter && pIter) {
H
Hongze Cheng 已提交
891
      int32_t c = pMTree->rbt.cmprFn(&pMTree->pIter->node, &pIter->node);
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
      if (c > 0) {
        tRBTreePut(&pMTree->rbt, (SRBTreeNode *)pMTree->pIter);
        pMTree->pIter = NULL;
      } else {
        ASSERT(c);
      }
    }
  }

  if (pMTree->pIter == NULL) {
    pMTree->pIter = (SLDataIter *)tRBTreeMin(&pMTree->rbt);
    if (pMTree->pIter) {
      tRBTreeDrop(&pMTree->rbt, (SRBTreeNode *)pMTree->pIter);
    }
  }

  return pMTree->pIter != NULL;
}

H
Hongze Cheng 已提交
911
void tMergeTreeClose(SMergeTree *pMTree) {
912
  pMTree->pIter = NULL;
913 914 915 916
  if (pMTree->destroyLoadInfo) {
    pMTree->pLoadInfo = destroyLastBlockLoadInfo(pMTree->pLoadInfo);
    pMTree->destroyLoadInfo = false;
  }
917
}