tscLocalMerge.h 4.0 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

H
Haojun Liao 已提交
16 17
#ifndef TDENGINE_TSCLOCALMERGE_H
#define TDENGINE_TSCLOCALMERGE_H
H
hzcheng 已提交
18 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

H
Haojun Liao 已提交
23 24
#include "qExtbuffer.h"
#include "qFill.h"
S
slguan 已提交
25
#include "taosmsg.h"
H
hzcheng 已提交
26 27 28 29
#include "tlosertree.h"
#include "tsclient.h"

#define MAX_NUM_OF_SUBQUERY_RETRY 3
H
Haojun Liao 已提交
30
  
H
hzcheng 已提交
31 32
struct SQLFunctionCtx;

S
slguan 已提交
33
typedef struct SLocalDataSource {
H
hzcheng 已提交
34 35 36 37 38
  tExtMemBuffer *pMemBuffer;
  int32_t        flushoutIdx;
  int32_t        pageId;
  int32_t        rowIdx;
  tFilePage      filePage;
S
slguan 已提交
39
} SLocalDataSource;
H
hzcheng 已提交
40 41 42 43 44 45 46 47

enum {
  TSC_LOCALREDUCE_READY = 0x0,
  TSC_LOCALREDUCE_IN_PROGRESS = 0x1,
  TSC_LOCALREDUCE_TOBE_FREED = 0x2,
};

typedef struct SLocalReducer {
S
slguan 已提交
48 49 50 51 52 53 54 55 56
  SLocalDataSource **    pLocalDataSrc;
  int32_t                numOfBuffer;
  int32_t                numOfCompleted;
  int32_t                numOfVnode;
  SLoserTreeInfo *       pLoserTree;
  char *                 prevRowOfInput;
  tFilePage *            pResultBuf;
  int32_t                nResultBufSize;
  tFilePage *            pTempBuffer;
H
hzcheng 已提交
57
  struct SQLFunctionCtx *pCtx;
H
Haojun Liao 已提交
58 59 60 61
  int32_t                rowSize;      // size of each intermediate result.
  int32_t                finalRowSize; // final result row size
  int32_t                status;       // denote it is in reduce process, in reduce process, it
  bool                   hasPrevRow;   // cannot be released
S
slguan 已提交
62 63
  bool                   hasUnprocessedRow;
  tOrderDescriptor *     pDesc;
64
  SColumnModel *         resColModel;
H
Haojun Liao 已提交
65
  SColumnModel*          finalModel;
S
slguan 已提交
66
  tExtMemBuffer **       pExtMemBuffer;      // disk-based buffer
H
Haojun Liao 已提交
67
  SFillInfo*             pFillInfo;          // interpolation support structure
68 69
  char*                  pFinalRes;          // result data after interpo
  tFilePage*             discardData;
S
slguan 已提交
70 71
  bool                   discard;
  int32_t                offset;             // limit offset value
H
Haojun Liao 已提交
72
  bool                   orderPrjOnSTable;   // projection query on stable
H
hzcheng 已提交
73 74
} SLocalReducer;

S
slguan 已提交
75
typedef struct SRetrieveSupport {
76
  tExtMemBuffer **  pExtMemBuffer;     // for build loser tree
S
slguan 已提交
77
  tOrderDescriptor *pOrderDescriptor;
H
Haojun Liao 已提交
78 79
  SColumnModel*     pFinalColModel;    // colModel for final result
  SColumnModel*     pFFColModel;
H
hjxilinx 已提交
80
  int32_t           subqueryIndex;     // index of current vnode in vnode list
81
  SSqlObj *         pParentSql;
82 83
  tFilePage *       localBuffer;       // temp buffer, there is a buffer for each vnode to
  uint32_t          numOfRetry;        // record the number of retry times
H
hzcheng 已提交
84 85 86
} SRetrieveSupport;

int32_t tscLocalReducerEnvCreate(SSqlObj *pSql, tExtMemBuffer ***pMemBuffer, tOrderDescriptor **pDesc,
H
Haojun Liao 已提交
87
                                 SColumnModel **pFinalModel, uint32_t nBufferSize);
H
hzcheng 已提交
88

H
hjxilinx 已提交
89
void tscLocalReducerEnvDestroy(tExtMemBuffer **pMemBuffer, tOrderDescriptor *pDesc, SColumnModel *pFinalModel,
H
hzcheng 已提交
90 91 92 93 94 95 96 97 98 99 100
                               int32_t numOfVnodes);

int32_t saveToBuffer(tExtMemBuffer *pMemoryBuf, tOrderDescriptor *pDesc, tFilePage *pPage, void *data,
                     int32_t numOfRows, int32_t orderType);

int32_t tscFlushTmpBuffer(tExtMemBuffer *pMemoryBuf, tOrderDescriptor *pDesc, tFilePage *pPage, int32_t orderType);

/*
 * create local reducer to launch the second-stage reduce process at client site
 */
void tscCreateLocalReducer(tExtMemBuffer **pMemBuffer, int32_t numOfBuffer, tOrderDescriptor *pDesc,
H
Haojun Liao 已提交
101
                           SColumnModel *finalModel, SColumnModel *pFFModel, SSqlObj* pSql);
H
hzcheng 已提交
102 103 104

void tscDestroyLocalReducer(SSqlObj *pSql);

105
int32_t tscDoLocalMerge(SSqlObj *pSql);
H
hzcheng 已提交
106 107 108 109 110

#ifdef __cplusplus
}
#endif

H
Haojun Liao 已提交
111
#endif  // TDENGINE_TSCLOCALMERGE_H