tscLocalMerge.h 4.7 KB
Newer Older
H
hzcheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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/>.
 */

#ifndef TDENGINE_TSCSECONARYMERGE_H
#define TDENGINE_TSCSECONARYMERGE_H

#ifdef __cplusplus
extern "C" {
#endif

23
#include "qextbuffer.h"
H
Haojun Liao 已提交
24
#include "qfill.h"
S
slguan 已提交
25
#include "taosmsg.h"
H
hzcheng 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39
#include "tlosertree.h"
#include "tsclient.h"

#define MAX_NUM_OF_SUBQUERY_RETRY 3

/*
 * @version 0.1
 * @date   2018/01/05
 * @author liaohj
 * management of client-side reducer for metric query
 */

struct SQLFunctionCtx;

S
slguan 已提交
40
typedef struct SLocalDataSource {
H
hzcheng 已提交
41 42 43 44 45
  tExtMemBuffer *pMemBuffer;
  int32_t        flushoutIdx;
  int32_t        pageId;
  int32_t        rowIdx;
  tFilePage      filePage;
S
slguan 已提交
46
} SLocalDataSource;
H
hzcheng 已提交
47 48 49 50 51 52 53 54

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

typedef struct SLocalReducer {
S
slguan 已提交
55 56 57 58 59 60 61 62
  SLocalDataSource **    pLocalDataSrc;
  int32_t                numOfBuffer;
  int32_t                numOfCompleted;
  int32_t                numOfVnode;
  SLoserTreeInfo *       pLoserTree;
  char *                 prevRowOfInput;
  tFilePage *            pResultBuf;
  int32_t                nResultBufSize;
63
//  char *                 pBufForInterpo;  // intermediate buffer for interpolation
S
slguan 已提交
64
  tFilePage *            pTempBuffer;
H
hzcheng 已提交
65
  struct SQLFunctionCtx *pCtx;
H
Haojun Liao 已提交
66 67 68 69
  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 已提交
70 71
  bool                   hasUnprocessedRow;
  tOrderDescriptor *     pDesc;
72
  SColumnModel *         resColModel;
S
slguan 已提交
73
  tExtMemBuffer **       pExtMemBuffer;      // disk-based buffer
H
Haojun Liao 已提交
74
  SFillInfo*             pFillInfo;          // interpolation support structure
S
slguan 已提交
75 76 77 78 79
  char *                 pFinalRes;          // result data after interpo
  tFilePage *            discardData;
  SResultInfo *          pResInfo;
  bool                   discard;
  int32_t                offset;             // limit offset value
H
Haojun Liao 已提交
80
  bool                   orderPrjOnSTable;   // projection query on stable
H
hzcheng 已提交
81 82
} SLocalReducer;

S
slguan 已提交
83
typedef struct SSubqueryState {
H
hzcheng 已提交
84
  /*
S
slguan 已提交
85 86
   * the number of completed retrieval subquery, once this value equals to numOfVnodes,
   * all retrieval are completed.Local merge is launched.
H
hzcheng 已提交
87
   */
S
slguan 已提交
88 89 90 91 92
  int32_t  numOfCompleted;
  int32_t  numOfTotal;          // number of total sub-queries
  int32_t  code;                // code from subqueries
  uint64_t numOfRetrievedRows;  // total number of points in this query
} SSubqueryState;
H
hzcheng 已提交
93

S
slguan 已提交
94
typedef struct SRetrieveSupport {
95
  tExtMemBuffer **  pExtMemBuffer;     // for build loser tree
S
slguan 已提交
96
  tOrderDescriptor *pOrderDescriptor;
97
  SColumnModel *    pFinalColModel;    // colModel for final result
S
slguan 已提交
98
  SSubqueryState *  pState;
H
hjxilinx 已提交
99
  int32_t           subqueryIndex;     // index of current vnode in vnode list
S
slguan 已提交
100
  SSqlObj *         pParentSqlObj;
101 102
  tFilePage *       localBuffer;       // temp buffer, there is a buffer for each vnode to
  uint32_t          numOfRetry;        // record the number of retry times
S
slguan 已提交
103
  pthread_mutex_t   queryMutex;
H
hzcheng 已提交
104 105 106
} SRetrieveSupport;

int32_t tscLocalReducerEnvCreate(SSqlObj *pSql, tExtMemBuffer ***pMemBuffer, tOrderDescriptor **pDesc,
H
hjxilinx 已提交
107
                                 SColumnModel **pFinalModel, uint32_t nBufferSize);
H
hzcheng 已提交
108

H
hjxilinx 已提交
109
void tscLocalReducerEnvDestroy(tExtMemBuffer **pMemBuffer, tOrderDescriptor *pDesc, SColumnModel *pFinalModel,
H
hzcheng 已提交
110 111 112 113 114 115 116 117 118 119 120
                               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
hjLiao 已提交
121
                           SColumnModel *finalModel, SSqlObj* pSql);
H
hzcheng 已提交
122 123 124

void tscDestroyLocalReducer(SSqlObj *pSql);

125
int32_t tscDoLocalMerge(SSqlObj *pSql);
H
hzcheng 已提交
126 127 128 129 130 131

#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_TSCSECONARYMERGE_H