tsort.c 24.7 KB
Newer Older
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 "query.h"
H
Hongze Cheng 已提交
17
#include "tcommon.h"
18

H
Hongze Cheng 已提交
19
#include "tcompare.h"
H
Haojun Liao 已提交
20
#include "tdatablock.h"
S
Shengliang Guan 已提交
21
#include "tdef.h"
22 23
#include "tlosertree.h"
#include "tpagedbuf.h"
H
Haojun Liao 已提交
24
#include "tsort.h"
25 26
#include "tutil.h"

27 28 29 30 31
struct STupleHandle {
  SSDataBlock* pBlock;
  int32_t      rowIndex;
};

H
Haojun Liao 已提交
32
struct SSortHandle {
H
Hongze Cheng 已提交
33 34 35 36
  int32_t        type;
  int32_t        pageSize;
  int32_t        numOfPages;
  SDiskbasedBuf* pBuf;
37

H
Hongze Cheng 已提交
38 39
  SArray* pSortInfo;
  SArray* pOrderedSource;
40

H
Hongze Cheng 已提交
41 42 43 44
  int32_t  loops;
  uint64_t sortElapsed;
  int64_t  startTs;
  uint64_t totalElapsed;
45 46

  int32_t           sourceId;
H
Hongze Cheng 已提交
47
  SSDataBlock*      pDataBlock;
48 49 50
  SMsortComparParam cmpParam;
  int32_t           numOfCompletedSources;
  bool              opened;
H
Hongze Cheng 已提交
51
  const char*       idStr;
52 53 54
  bool              inMemSort;
  bool              needAdjust;
  STupleHandle      tupleHandle;
H
Hongze Cheng 已提交
55
  void*             param;
56
  void (*beforeFp)(SSDataBlock* pBlock, void* param);
57 58 59

  _sort_fetch_block_fn_t  fetchfp;
  _sort_merge_compar_fn_t comparFn;
H
Hongze Cheng 已提交
60
  SMultiwayMergeTreeInfo* pMergeTree;
H
Haojun Liao 已提交
61
};
62

H
Hongze Cheng 已提交
63
static int32_t msortComparFn(const void* pLeft, const void* pRight, void* param);
64

65 66
SSDataBlock* tsortGetSortedDataBlock(const SSortHandle* pSortHandle) {
  return createOneDataBlock(pSortHandle->pDataBlock, false);
67 68 69 70 71 72 73
}

/**
 *
 * @param type
 * @return
 */
H
Hongze Cheng 已提交
74 75
SSortHandle* tsortCreateSortHandle(SArray* pSortInfo, int32_t type, int32_t pageSize, int32_t numOfPages,
                                   SSDataBlock* pBlock, const char* idstr) {
wafwerar's avatar
wafwerar 已提交
76
  SSortHandle* pSortHandle = taosMemoryCalloc(1, sizeof(SSortHandle));
77

H
Hongze Cheng 已提交
78 79
  pSortHandle->type = type;
  pSortHandle->pageSize = pageSize;
80
  pSortHandle->numOfPages = numOfPages;
H
Hongze Cheng 已提交
81 82
  pSortHandle->pSortInfo = pSortInfo;
  pSortHandle->loops = 0;
83 84 85 86

  if (pBlock != NULL) {
    pSortHandle->pDataBlock = createOneDataBlock(pBlock, false);
  }
H
Haojun Liao 已提交
87

H
Hongze Cheng 已提交
88
  pSortHandle->pOrderedSource = taosArrayInit(4, POINTER_BYTES);
H
Haojun Liao 已提交
89
  pSortHandle->cmpParam.orderInfo = pSortInfo;
90
  pSortHandle->cmpParam.cmpGroupId = false;
91

H
Haojun Liao 已提交
92
  tsortSetComparFp(pSortHandle, msortComparFn);
93 94

  if (idstr != NULL) {
95
    pSortHandle->idStr = strdup(idstr);
96 97 98 99 100
  }

  return pSortHandle;
}

101
static int32_t sortComparCleanup(SMsortComparParam* cmpParam) {
H
Hongze Cheng 已提交
102 103 104
  for (int32_t i = 0; i < cmpParam->numOfSources; ++i) {
    SSortSource* pSource =
        cmpParam->pSources[i];  // NOTICE: pSource may be SGenericSource *, if it is SORT_MULTISOURCE_MERGE
wmmhello's avatar
wmmhello 已提交
105 106 107 108 109 110 111 112
    blockDataDestroy(pSource->src.pBlock);
    taosMemoryFreeClear(pSource);
  }

  cmpParam->numOfSources = 0;
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
113
void tsortDestroySortHandle(SSortHandle* pSortHandle) {
114 115 116 117
  if (pSortHandle == NULL) {
    return;
  }

H
Haojun Liao 已提交
118
  tsortClose(pSortHandle);
119 120 121 122
  if (pSortHandle->pMergeTree != NULL) {
    tMergeTreeDestroy(pSortHandle->pMergeTree);
  }

H
Haojun Liao 已提交
123
  destroyDiskbasedBuf(pSortHandle->pBuf);
wafwerar's avatar
wafwerar 已提交
124
  taosMemoryFreeClear(pSortHandle->idStr);
wmmhello's avatar
wmmhello 已提交
125
  blockDataDestroy(pSortHandle->pDataBlock);
H
Hongze Cheng 已提交
126
  for (size_t i = 0; i < taosArrayGetSize(pSortHandle->pOrderedSource); i++) {
wmmhello's avatar
wmmhello 已提交
127
    SSortSource** pSource = taosArrayGet(pSortHandle->pOrderedSource, i);
wmmhello's avatar
wmmhello 已提交
128
    taosMemoryFreeClear(*pSource);
wmmhello's avatar
wmmhello 已提交
129 130
  }
  taosArrayDestroy(pSortHandle->pOrderedSource);
wafwerar's avatar
wafwerar 已提交
131
  taosMemoryFreeClear(pSortHandle);
132 133
}

H
Haojun Liao 已提交
134
int32_t tsortAddSource(SSortHandle* pSortHandle, void* pSource) {
H
Haojun Liao 已提交
135
  taosArrayPush(pSortHandle->pOrderedSource, &pSource);
136
  return TSDB_CODE_SUCCESS;
137 138
}

H
Hongze Cheng 已提交
139 140
static int32_t doAddNewExternalMemSource(SDiskbasedBuf* pBuf, SArray* pAllSources, SSDataBlock* pBlock,
                                         int32_t* sourceId, SArray* pPageIdList) {
wmmhello's avatar
wmmhello 已提交
141
  SSortSource* pSource = taosMemoryCalloc(1, sizeof(SSortSource));
142 143 144 145 146
  if (pSource == NULL) {
    return TSDB_CODE_QRY_OUT_OF_MEMORY;
  }

  pSource->src.pBlock = pBlock;
147
  pSource->pageIdList = pPageIdList;
148 149 150 151 152
  taosArrayPush(pAllSources, &pSource);

  (*sourceId) += 1;

  int32_t rowSize = blockDataGetSerialRowSize(pSource->src.pBlock);
153 154

  // The value of numOfRows must be greater than 0, which is guaranteed by the previous memory allocation
H
Hongze Cheng 已提交
155 156
  int32_t numOfRows =
      (getBufPageSize(pBuf) - blockDataGetSerialMetaSize(taosArrayGetSize(pBlock->pDataBlock))) / rowSize;
wmmhello's avatar
wmmhello 已提交
157
  ASSERT(numOfRows > 0);
158 159 160 161 162 163 164
  return blockDataEnsureCapacity(pSource->src.pBlock, numOfRows);
}

static int32_t doAddToBuf(SSDataBlock* pDataBlock, SSortHandle* pHandle) {
  int32_t start = 0;

  if (pHandle->pBuf == NULL) {
wafwerar's avatar
wafwerar 已提交
165 166 167 168 169
    if (!osTempSpaceAvailable()) {
      terrno = TSDB_CODE_NO_AVAIL_DISK;
      qError("Add to buf failed since %s", terrstr(terrno));
      return terrno;
    }
H
Hongze Cheng 已提交
170 171
    int32_t code = createDiskbasedBuf(&pHandle->pBuf, pHandle->pageSize, pHandle->numOfPages * pHandle->pageSize,
                                      "doAddToBuf", tsTempDir);
H
Haojun Liao 已提交
172
    dBufSetPrintInfo(pHandle->pBuf);
173 174 175 176 177
    if (code != TSDB_CODE_SUCCESS) {
      return code;
    }
  }

178
  SArray* pPageIdList = taosArrayInit(4, sizeof(int32_t));
H
Hongze Cheng 已提交
179
  while (start < pDataBlock->info.rows) {
180
    int32_t stop = 0;
181
    blockDataSplitRows(pDataBlock, pDataBlock->info.hasVarCol, start, &stop, pHandle->pageSize);
182 183 184 185 186 187
    SSDataBlock* p = blockDataExtractBlock(pDataBlock, start, stop - start + 1);
    if (p == NULL) {
      return terrno;
    }

    int32_t pageId = -1;
H
Hongze Cheng 已提交
188
    void*   pPage = getNewBufPage(pHandle->pBuf, &pageId);
189
    if (pPage == NULL) {
wmmhello's avatar
wmmhello 已提交
190
      blockDataDestroy(p);
191 192 193
      return terrno;
    }

194 195
    taosArrayPush(pPageIdList, &pageId);

H
Hongze Cheng 已提交
196
    int32_t size = blockDataGetSize(p) + sizeof(int32_t) + taosArrayGetSize(p->pDataBlock) * sizeof(int32_t);
197 198
    assert(size <= getBufPageSize(pHandle->pBuf));

199
    blockDataToBuf(pPage, p);
200 201 202 203 204 205 206 207

    setBufPageDirty(pPage, true);
    releaseBufPage(pHandle->pBuf, pPage);

    blockDataDestroy(p);
    start = stop + 1;
  }

208
  blockDataCleanup(pDataBlock);
209

210
  SSDataBlock* pBlock = createOneDataBlock(pDataBlock, false);
211
  return doAddNewExternalMemSource(pHandle->pBuf, pHandle->pOrderedSource, pBlock, &pHandle->sourceId, pPageIdList);
212 213
}

214 215 216 217 218
static void setCurrentSourceIsDone(SSortSource* pSource, SSortHandle* pHandle) {
  pSource->src.rowIndex = -1;
  ++pHandle->numOfCompletedSources;
}

H
Hongze Cheng 已提交
219 220 221
static int32_t sortComparInit(SMsortComparParam* cmpParam, SArray* pSources, int32_t startIndex, int32_t endIndex,
                              SSortHandle* pHandle) {
  cmpParam->pSources = taosArrayGet(pSources, startIndex);
222 223 224 225
  cmpParam->numOfSources = (endIndex - startIndex + 1);

  int32_t code = 0;

H
Haojun Liao 已提交
226
  if (pHandle->type == SORT_SINGLESOURCE_SORT) {
227
    for (int32_t i = 0; i < cmpParam->numOfSources; ++i) {
wmmhello's avatar
wmmhello 已提交
228
      SSortSource* pSource = cmpParam->pSources[i];
229

230
      // set current source is done
231
      if (taosArrayGetSize(pSource->pageIdList) == 0) {
232 233
        setCurrentSourceIsDone(pSource, pHandle);
        continue;
234 235
      }

D
dapan1121 已提交
236
      int32_t* pPgId = taosArrayGet(pSource->pageIdList, pSource->pageIndex);
237

D
dapan1121 已提交
238
      void* pPage = getBufPage(pHandle->pBuf, *pPgId);
239
      code = blockDataFromBuf(pSource->src.pBlock, pPage);
240 241 242 243 244 245 246 247 248
      if (code != TSDB_CODE_SUCCESS) {
        return code;
      }

      releaseBufPage(pHandle->pBuf, pPage);
    }
  } else {
    // multi-pass internal merge sort is required
    if (pHandle->pBuf == NULL) {
wafwerar's avatar
wafwerar 已提交
249 250 251 252 253 254
      if (!osTempSpaceAvailable()) {
        terrno = TSDB_CODE_NO_AVAIL_DISK;
        code = terrno;
        qError("Sort compare init failed since %s", terrstr(terrno));
        return code;
      }
H
Hongze Cheng 已提交
255 256
      code = createDiskbasedBuf(&pHandle->pBuf, pHandle->pageSize, pHandle->numOfPages * pHandle->pageSize,
                                "sortComparInit", tsTempDir);
H
Haojun Liao 已提交
257
      dBufSetPrintInfo(pHandle->pBuf);
258 259 260 261 262 263
      if (code != TSDB_CODE_SUCCESS) {
        return code;
      }
    }

    for (int32_t i = 0; i < cmpParam->numOfSources; ++i) {
wmmhello's avatar
wmmhello 已提交
264
      SSortSource* pSource = cmpParam->pSources[i];
265
      pSource->src.pBlock = pHandle->fetchfp(pSource->param);
266

267
      // set current source is done
268
      if (pSource->src.pBlock == NULL) {
269
        setCurrentSourceIsDone(pSource, pHandle);
270
      }
271 272 273 274 275 276
    }
  }

  return code;
}

H
Hongze Cheng 已提交
277
static void appendOneRowToDataBlock(SSDataBlock* pBlock, const SSDataBlock* pSource, int32_t* rowIndex) {
278
  for (int32_t i = 0; i < taosArrayGetSize(pBlock->pDataBlock); ++i) {
279 280 281
    SColumnInfoData* pColInfo = taosArrayGet(pBlock->pDataBlock, i);

    SColumnInfoData* pSrcColInfo = taosArrayGet(pSource->pDataBlock, i);
H
Hongze Cheng 已提交
282
    bool             isNull = colDataIsNull(pSrcColInfo, pSource->info.rows, *rowIndex, NULL);
283 284 285 286

    if (isNull) {
      colDataAppend(pColInfo, pBlock->info.rows, NULL, true);
    } else {
287
      char* pData = colDataGetData(pSrcColInfo, *rowIndex);
288 289 290 291 292 293 294 295
      colDataAppend(pColInfo, pBlock->info.rows, pData, false);
    }
  }

  pBlock->info.rows += 1;
  *rowIndex += 1;
}

H
Hongze Cheng 已提交
296 297
static int32_t adjustMergeTreeForNextTuple(SSortSource* pSource, SMultiwayMergeTreeInfo* pTree, SSortHandle* pHandle,
                                           int32_t* numOfCompleted) {
298 299 300 301 302 303 304
  /*
   * load a new SDataBlock into memory of a given intermediate data-set source,
   * since it's last record in buffer has been chosen to be processed, as the winner of loser-tree
   */
  if (pSource->src.rowIndex >= pSource->src.pBlock->info.rows) {
    pSource->src.rowIndex = 0;

305
    if (pHandle->type == SORT_SINGLESOURCE_SORT) {
H
Hongze Cheng 已提交
306
      pSource->pageIndex++;
307 308 309 310 311 312
      if (pSource->pageIndex >= taosArrayGetSize(pSource->pageIdList)) {
        (*numOfCompleted) += 1;
        pSource->src.rowIndex = -1;
        pSource->pageIndex = -1;
        pSource->src.pBlock = blockDataDestroy(pSource->src.pBlock);
      } else {
D
dapan1121 已提交
313
        int32_t* pPgId = taosArrayGet(pSource->pageIdList, pSource->pageIndex);
314

H
Hongze Cheng 已提交
315 316
        void*   pPage = getBufPage(pHandle->pBuf, *pPgId);
        int32_t code = blockDataFromBuf(pSource->src.pBlock, pPage);
317 318 319 320 321
        if (code != TSDB_CODE_SUCCESS) {
          return code;
        }

        releaseBufPage(pHandle->pBuf, pPage);
322 323
      }
    } else {
wmmhello's avatar
wmmhello 已提交
324
      pSource->src.pBlock = pHandle->fetchfp(((SSortSource*)pSource)->param);
325 326 327
      if (pSource->src.pBlock == NULL) {
        (*numOfCompleted) += 1;
        pSource->src.rowIndex = -1;
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
      }
    }
  }

  /*
   * Adjust loser tree otherwise, according to new candidate data
   * if the loser tree is rebuild completed, we do not need to adjust
   */
  int32_t leafNodeIndex = tMergeTreeGetAdjustIndex(pTree);

#ifdef _DEBUG_VIEW
  printf("before adjust:\t");
  tMergeTreePrint(pTree);
#endif

  tMergeTreeAdjust(pTree, leafNodeIndex);

#ifdef _DEBUG_VIEW
  printf("\nafter adjust:\t");
  tMergeTreePrint(pTree);
#endif
349
  return TSDB_CODE_SUCCESS;
350 351
}

wmmhello's avatar
wmmhello 已提交
352
static SSDataBlock* getSortedBlockDataInner(SSortHandle* pHandle, SMsortComparParam* cmpParam, int32_t capacity) {
353
  blockDataCleanup(pHandle->pDataBlock);
354

H
Hongze Cheng 已提交
355
  while (1) {
356 357 358 359 360 361
    if (cmpParam->numOfSources == pHandle->numOfCompletedSources) {
      break;
    }

    int32_t index = tMergeTreeGetChosenIndex(pHandle->pMergeTree);

H
Hongze Cheng 已提交
362
    SSortSource* pSource = (*cmpParam).pSources[index];
363 364 365 366 367 368 369 370 371 372 373 374 375
    appendOneRowToDataBlock(pHandle->pDataBlock, pSource->src.pBlock, &pSource->src.rowIndex);

    int32_t code = adjustMergeTreeForNextTuple(pSource, pHandle->pMergeTree, pHandle, &pHandle->numOfCompletedSources);
    if (code != TSDB_CODE_SUCCESS) {
      terrno = code;
      return NULL;
    }

    if (pHandle->pDataBlock->info.rows >= capacity) {
      return pHandle->pDataBlock;
    }
  }

H
Hongze Cheng 已提交
376
  return (pHandle->pDataBlock->info.rows > 0) ? pHandle->pDataBlock : NULL;
377 378
}

H
Hongze Cheng 已提交
379 380 381
int32_t msortComparFn(const void* pLeft, const void* pRight, void* param) {
  int32_t pLeftIdx = *(int32_t*)pLeft;
  int32_t pRightIdx = *(int32_t*)pRight;
382

H
Hongze Cheng 已提交
383
  SMsortComparParam* pParam = (SMsortComparParam*)param;
384

H
Hongze Cheng 已提交
385
  SArray* pInfo = pParam->orderInfo;
386

H
Hongze Cheng 已提交
387
  SSortSource* pLeftSource = pParam->pSources[pLeftIdx];
wmmhello's avatar
wmmhello 已提交
388
  SSortSource* pRightSource = pParam->pSources[pRightIdx];
389 390 391 392 393 394 395 396 397 398 399 400 401

  // this input is exhausted, set the special value to denote this
  if (pLeftSource->src.rowIndex == -1) {
    return 1;
  }

  if (pRightSource->src.rowIndex == -1) {
    return -1;
  }

  SSDataBlock* pLeftBlock = pLeftSource->src.pBlock;
  SSDataBlock* pRightBlock = pRightSource->src.pBlock;

402 403 404 405
  if (pParam->cmpGroupId) {
    if (pLeftBlock->info.groupId != pRightBlock->info.groupId) {
      return pLeftBlock->info.groupId < pRightBlock->info.groupId ? -1 : 1;
    }
406 407
  }

H
Hongze Cheng 已提交
408
  for (int32_t i = 0; i < pInfo->size; ++i) {
409
    SBlockOrderInfo* pOrder = TARRAY_GET_ELEM(pInfo, i);
H
Haojun Liao 已提交
410
    SColumnInfoData* pLeftColInfoData = TARRAY_GET_ELEM(pLeftBlock->pDataBlock, pOrder->slotId);
411

H
Hongze Cheng 已提交
412
    bool leftNull = false;
413
    if (pLeftColInfoData->hasNull) {
414 415 416
      if (pLeftBlock->pBlockAgg == NULL) {
        leftNull = colDataIsNull_s(pLeftColInfoData, pLeftSource->src.rowIndex);
      } else {
H
Hongze Cheng 已提交
417 418
        leftNull =
            colDataIsNull(pLeftColInfoData, pLeftBlock->info.rows, pLeftSource->src.rowIndex, pLeftBlock->pBlockAgg[i]);
419
      }
420 421
    }

H
Haojun Liao 已提交
422
    SColumnInfoData* pRightColInfoData = TARRAY_GET_ELEM(pRightBlock->pDataBlock, pOrder->slotId);
H
Hongze Cheng 已提交
423
    bool             rightNull = false;
424
    if (pRightColInfoData->hasNull) {
425 426 427
      if (pLeftBlock->pBlockAgg == NULL) {
        rightNull = colDataIsNull_s(pRightColInfoData, pRightSource->src.rowIndex);
      } else {
H
Hongze Cheng 已提交
428 429
        rightNull = colDataIsNull(pRightColInfoData, pRightBlock->info.rows, pRightSource->src.rowIndex,
                                  pRightBlock->pBlockAgg[i]);
430
      }
431 432 433
    }

    if (leftNull && rightNull) {
H
Hongze Cheng 已提交
434
      continue;  // continue to next slot
435 436 437
    }

    if (rightNull) {
H
Hongze Cheng 已提交
438
      return pOrder->nullFirst ? 1 : -1;
439 440 441
    }

    if (leftNull) {
H
Hongze Cheng 已提交
442
      return pOrder->nullFirst ? -1 : 1;
443 444
    }

H
Hongze Cheng 已提交
445
    void* left1 = colDataGetData(pLeftColInfoData, pLeftSource->src.rowIndex);
446
    void* right1 = colDataGetData(pRightColInfoData, pRightSource->src.rowIndex);
447

448
    __compar_fn_t fn = getKeyComparFunc(pLeftColInfoData->info.type, pOrder->order);
449

450 451 452 453 454
    int ret = fn(left1, right1);
    if (ret == 0) {
      continue;
    } else {
      return ret;
455 456
    }
  }
457
  return 0;
458 459 460 461
}

static int32_t doInternalMergeSort(SSortHandle* pHandle) {
  size_t numOfSources = taosArrayGetSize(pHandle->pOrderedSource);
H
Haojun Liao 已提交
462 463 464
  if (numOfSources == 0) {
    return 0;
  }
465 466 467 468 469

  // Calculate the I/O counts to complete the data sort.
  double sortPass = floorl(log2(numOfSources) / log2(pHandle->numOfPages));

  pHandle->totalElapsed = taosGetTimestampUs() - pHandle->startTs;
470 471 472 473 474 475 476

  if (sortPass > 0) {
    size_t s = pHandle->pBuf ? getTotalBufSize(pHandle->pBuf) : 0;
    qDebug("%s %d rounds mergesort required to complete the sort, first-round sorted data size:%" PRIzu
           ", sort elapsed:%" PRId64 ", total elapsed:%" PRId64,
           pHandle->idStr, (int32_t)(sortPass + 1), s, pHandle->sortElapsed, pHandle->totalElapsed);
  } else {
H
Hongze Cheng 已提交
477 478
    qDebug("%s ordered source:%" PRIzu ", available buf:%d, no need internal sort", pHandle->idStr, numOfSources,
           pHandle->numOfPages);
479
  }
480

H
Haojun Liao 已提交
481
  int32_t numOfRows = blockDataGetCapacityInRow(pHandle->pDataBlock, pHandle->pageSize);
wmmhello's avatar
wmmhello 已提交
482
  blockDataEnsureCapacity(pHandle->pDataBlock, numOfRows);
483

484 485 486
  // the initial pass + sortPass + final mergePass
  pHandle->loops = sortPass + 2;

487
  size_t numOfSorted = taosArrayGetSize(pHandle->pOrderedSource);
H
Hongze Cheng 已提交
488
  for (int32_t t = 0; t < sortPass; ++t) {
489 490 491 492 493 494 495 496
    int64_t st = taosGetTimestampUs();

    SArray* pResList = taosArrayInit(4, POINTER_BYTES);

    int32_t numOfInputSources = pHandle->numOfPages;
    int32_t sortGroup = (numOfSorted + numOfInputSources - 1) / numOfInputSources;

    // Only *numOfInputSources* can be loaded into buffer to perform the external sort.
H
Hongze Cheng 已提交
497
    for (int32_t i = 0; i < sortGroup; ++i) {
498 499 500 501 502 503 504 505 506 507 508 509 510 511
      pHandle->sourceId += 1;

      int32_t end = (i + 1) * numOfInputSources - 1;
      if (end > numOfSorted - 1) {
        end = numOfSorted - 1;
      }

      pHandle->cmpParam.numOfSources = end - i * numOfInputSources + 1;

      int32_t code = sortComparInit(&pHandle->cmpParam, pHandle->pOrderedSource, i * numOfInputSources, end, pHandle);
      if (code != TSDB_CODE_SUCCESS) {
        return code;
      }

H
Hongze Cheng 已提交
512 513
      code =
          tMergeTreeCreate(&pHandle->pMergeTree, pHandle->cmpParam.numOfSources, &pHandle->cmpParam, pHandle->comparFn);
514 515 516 517
      if (code != TSDB_CODE_SUCCESS) {
        return code;
      }

518
      SArray* pPageIdList = taosArrayInit(4, sizeof(int32_t));
519
      while (1) {
wmmhello's avatar
wmmhello 已提交
520
        SSDataBlock* pDataBlock = getSortedBlockDataInner(pHandle, &pHandle->cmpParam, numOfRows);
521 522 523 524 525
        if (pDataBlock == NULL) {
          break;
        }

        int32_t pageId = -1;
H
Hongze Cheng 已提交
526
        void*   pPage = getNewBufPage(pHandle->pBuf, &pageId);
527 528 529 530
        if (pPage == NULL) {
          return terrno;
        }

531 532
        taosArrayPush(pPageIdList, &pageId);

H
Hongze Cheng 已提交
533 534
        int32_t size =
            blockDataGetSize(pDataBlock) + sizeof(int32_t) + taosArrayGetSize(pDataBlock->pDataBlock) * sizeof(int32_t);
535 536
        assert(size <= getBufPageSize(pHandle->pBuf));

537
        blockDataToBuf(pPage, pDataBlock);
538 539 540 541

        setBufPageDirty(pPage, true);
        releaseBufPage(pHandle->pBuf, pPage);

542
        blockDataCleanup(pDataBlock);
543 544
      }

545
      sortComparCleanup(&pHandle->cmpParam);
546 547 548
      tMergeTreeDestroy(pHandle->pMergeTree);
      pHandle->numOfCompletedSources = 0;

549
      SSDataBlock* pBlock = createOneDataBlock(pHandle->pDataBlock, false);
550
      code = doAddNewExternalMemSource(pHandle->pBuf, pResList, pBlock, &pHandle->sourceId, pPageIdList);
H
Haojun Liao 已提交
551 552
      if (code != TSDB_CODE_SUCCESS) {
        taosArrayDestroy(pResList);
553 554 555 556 557 558 559 560 561 562 563 564 565 566
        return code;
      }
    }

    taosArrayClear(pHandle->pOrderedSource);
    taosArrayAddAll(pHandle->pOrderedSource, pResList);
    taosArrayDestroy(pResList);

    numOfSorted = taosArrayGetSize(pHandle->pOrderedSource);

    int64_t el = taosGetTimestampUs() - st;
    pHandle->totalElapsed += el;

    SDiskbasedBufStatis statis = getDBufStatis(pHandle->pBuf);
H
Hongze Cheng 已提交
567 568
    qDebug("%s %d round mergesort, elapsed:%" PRId64 " readDisk:%.2f Kb, flushDisk:%.2f Kb", pHandle->idStr, t + 1, el,
           statis.loadBytes / 1024.0, statis.flushBytes / 1024.0);
569

H
Haojun Liao 已提交
570 571
    if (pHandle->type == SORT_MULTISOURCE_MERGE) {
      pHandle->type = SORT_SINGLESOURCE_SORT;
572 573 574 575 576 577 578 579
      pHandle->comparFn = msortComparFn;
    }
  }

  pHandle->cmpParam.numOfSources = taosArrayGetSize(pHandle->pOrderedSource);
  return 0;
}

580
// TODO consider the page meta size
581 582 583 584 585 586 587 588 589 590 591 592 593
int32_t getProperSortPageSize(size_t rowSize) {
  uint32_t defaultPageSize = 4096;

  uint32_t pgSize = 0;
  if (rowSize * 4 > defaultPageSize) {
    pgSize = rowSize * 4;
  } else {
    pgSize = defaultPageSize;
  }

  return pgSize;
}

594
static int32_t createInitialSources(SSortHandle* pHandle) {
595
  size_t sortBufSize = pHandle->numOfPages * pHandle->pageSize;
H
Haojun Liao 已提交
596 597

  if (pHandle->type == SORT_SINGLESOURCE_SORT) {
wmmhello's avatar
wmmhello 已提交
598
    SSortSource* source = taosArrayGetP(pHandle->pOrderedSource, 0);
H
Haojun Liao 已提交
599
    taosArrayClear(pHandle->pOrderedSource);
600

601
    while (1) {
602
      SSDataBlock* pBlock = pHandle->fetchfp(source->param);
603 604 605 606
      if (pBlock == NULL) {
        break;
      }

607
      if (pHandle->pDataBlock == NULL) {
608 609 610
        pHandle->pageSize = getProperSortPageSize(blockDataGetRowSize(pBlock));

        // todo, number of pages are set according to the total available sort buffer
611 612
        pHandle->numOfPages = 1024;
        sortBufSize = pHandle->numOfPages * pHandle->pageSize;
613
        pHandle->pDataBlock = createOneDataBlock(pBlock, false);
614 615
      }

616 617 618
      if (pHandle->beforeFp != NULL) {
        pHandle->beforeFp(pBlock, pHandle->param);
      }
619

620 621 622 623
      int32_t code = blockDataMerge(pHandle->pDataBlock, pBlock);
      if (code != 0) {
        return code;
      }
624

625 626 627 628
      size_t size = blockDataGetSize(pHandle->pDataBlock);
      if (size > sortBufSize) {
        // Perform the in-memory sort and then flush data in the buffer into disk.
        int64_t p = taosGetTimestampUs();
wmmhello's avatar
wmmhello 已提交
629 630 631 632
        code = blockDataSort(pHandle->pDataBlock, pHandle->pSortInfo);
        if (code != 0) {
          return code;
        }
633

634 635
        int64_t el = taosGetTimestampUs() - p;
        pHandle->sortElapsed += el;
636

637
        doAddToBuf(pHandle->pDataBlock, pHandle);
638 639 640
      }
    }

641
    if (pHandle->pDataBlock != NULL && pHandle->pDataBlock->info.rows > 0) {
642 643 644
      size_t size = blockDataGetSize(pHandle->pDataBlock);

      // Perform the in-memory sort and then flush data in the buffer into disk.
645 646
      int64_t p = taosGetTimestampUs();

wmmhello's avatar
wmmhello 已提交
647 648 649 650
      int32_t code = blockDataSort(pHandle->pDataBlock, pHandle->pSortInfo);
      if (code != 0) {
        return code;
      }
651

652 653 654
      int64_t el = taosGetTimestampUs() - p;
      pHandle->sortElapsed += el;

655
      // All sorted data can fit in memory, external memory sort is not needed. Return to directly
656
      if (size <= sortBufSize && pHandle->pBuf == NULL) {
657 658 659
        pHandle->cmpParam.numOfSources = 1;
        pHandle->inMemSort = true;

660
        pHandle->loops = 1;
H
Hongze Cheng 已提交
661
        pHandle->tupleHandle.rowIndex = -1;
662 663 664 665 666 667
        pHandle->tupleHandle.pBlock = pHandle->pDataBlock;
        return 0;
      } else {
        doAddToBuf(pHandle->pDataBlock, pHandle);
      }
    }
H
Haojun Liao 已提交
668 669 670 671 672
  }

  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
673
int32_t tsortOpen(SSortHandle* pHandle) {
H
Haojun Liao 已提交
674 675 676 677 678 679 680 681 682 683
  if (pHandle->opened) {
    return 0;
  }

  if (pHandle->fetchfp == NULL || pHandle->comparFn == NULL) {
    return -1;
  }

  pHandle->opened = true;

684
  int32_t code = createInitialSources(pHandle);
H
Haojun Liao 已提交
685 686
  if (code != TSDB_CODE_SUCCESS) {
    return code;
687 688 689
  }

  // do internal sort
H
Haojun Liao 已提交
690
  code = doInternalMergeSort(pHandle);
691 692 693 694 695
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

  int32_t numOfSources = taosArrayGetSize(pHandle->pOrderedSource);
H
Haojun Liao 已提交
696 697 698 699
  if (pHandle->pBuf != NULL) {
    ASSERT(numOfSources <= getNumOfInMemBufPages(pHandle->pBuf));
  }

H
Haojun Liao 已提交
700 701 702 703
  if (numOfSources == 0) {
    return 0;
  }

704 705 706 707 708
  code = sortComparInit(&pHandle->cmpParam, pHandle->pOrderedSource, 0, numOfSources - 1, pHandle);
  if (code != TSDB_CODE_SUCCESS) {
    return code;
  }

709
  return tMergeTreeCreate(&pHandle->pMergeTree, pHandle->cmpParam.numOfSources, &pHandle->cmpParam, pHandle->comparFn);
710 711
}

H
Haojun Liao 已提交
712
int32_t tsortClose(SSortHandle* pHandle) {
713
  // do nothing
714
  return TSDB_CODE_SUCCESS;
715 716
}

H
Hongze Cheng 已提交
717 718
int32_t tsortSetFetchRawDataFp(SSortHandle* pHandle, _sort_fetch_block_fn_t fetchFp, void (*fp)(SSDataBlock*, void*),
                               void* param) {
719 720 721
  pHandle->fetchfp = fetchFp;
  pHandle->beforeFp = fp;
  pHandle->param = param;
722
  return TSDB_CODE_SUCCESS;
723 724
}

H
Haojun Liao 已提交
725
int32_t tsortSetComparFp(SSortHandle* pHandle, _sort_merge_compar_fn_t fp) {
726
  pHandle->comparFn = fp;
727
  return TSDB_CODE_SUCCESS;
728 729
}

730 731 732 733 734
int32_t tsortSetCompareGroupId(SSortHandle* pHandle, bool compareGroupId) {
  pHandle->cmpParam.cmpGroupId = compareGroupId;
  return TSDB_CODE_SUCCESS;
}

H
Haojun Liao 已提交
735
STupleHandle* tsortNextTuple(SSortHandle* pHandle) {
736 737 738 739
  if (pHandle->cmpParam.numOfSources == pHandle->numOfCompletedSources) {
    return NULL;
  }

740
  // All the data are hold in the buffer, no external sort is invoked.
741 742 743 744 745 746 747 748 749 750
  if (pHandle->inMemSort) {
    pHandle->tupleHandle.rowIndex += 1;
    if (pHandle->tupleHandle.rowIndex == pHandle->pDataBlock->info.rows) {
      pHandle->numOfCompletedSources = 1;
      return NULL;
    }

    return &pHandle->tupleHandle;
  }

H
Hongze Cheng 已提交
751 752
  int32_t      index = tMergeTreeGetChosenIndex(pHandle->pMergeTree);
  SSortSource* pSource = pHandle->cmpParam.pSources[index];
753 754 755 756 757 758 759 760 761 762 763 764 765

  if (pHandle->needAdjust) {
    int32_t code = adjustMergeTreeForNextTuple(pSource, pHandle->pMergeTree, pHandle, &pHandle->numOfCompletedSources);
    if (code != TSDB_CODE_SUCCESS) {
      terrno = code;
      return NULL;
    }
  }

  if (pHandle->cmpParam.numOfSources == pHandle->numOfCompletedSources) {
    return NULL;
  }

766
  // Get the adjusted value after the loser tree is updated.
767 768 769 770 771 772 773 774 775 776 777 778 779 780
  index = tMergeTreeGetChosenIndex(pHandle->pMergeTree);
  pSource = pHandle->cmpParam.pSources[index];

  assert(pSource->src.pBlock != NULL);

  pHandle->tupleHandle.rowIndex = pSource->src.rowIndex;
  pHandle->tupleHandle.pBlock = pSource->src.pBlock;

  pHandle->needAdjust = true;
  pSource->src.rowIndex += 1;

  return &pHandle->tupleHandle;
}

H
Haojun Liao 已提交
781
bool tsortIsNullVal(STupleHandle* pVHandle, int32_t colIndex) {
782
  SColumnInfoData* pColInfoSrc = taosArrayGet(pVHandle->pBlock->pDataBlock, colIndex);
783
  return colDataIsNull_s(pColInfoSrc, pVHandle->rowIndex);
784 785
}

H
Haojun Liao 已提交
786
void* tsortGetValue(STupleHandle* pVHandle, int32_t colIndex) {
787
  SColumnInfoData* pColInfo = TARRAY_GET_ELEM(pVHandle->pBlock->pDataBlock, colIndex);
788 789 790 791 792
  if (pColInfo->pData == NULL) {
    return NULL;
  } else {
    return colDataGetData(pColInfo, pVHandle->rowIndex);
  }
793
}
794

H
Hongze Cheng 已提交
795
uint64_t tsortGetGroupId(STupleHandle* pVHandle) { return pVHandle->pBlock->info.groupId; }
S
slzhou 已提交
796

797 798 799 800
SSortExecInfo tsortGetSortExecInfo(SSortHandle* pHandle) {
  SSortExecInfo info = {0};

  info.sortBuffer = pHandle->pageSize * pHandle->numOfPages;
H
Hongze Cheng 已提交
801 802
  info.sortMethod = pHandle->inMemSort ? SORT_QSORT_T : SORT_SPILLED_MERGE_SORT_T;
  info.loops = pHandle->loops;
803 804 805 806 807 808 809 810 811

  if (pHandle->pBuf != NULL) {
    SDiskbasedBufStatis st = getDBufStatis(pHandle->pBuf);
    info.writeBytes = st.flushBytes;
    info.readBytes = st.loadBytes;
  }

  return info;
}