qExecutor.h 8.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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_QUERYEXECUTOR_H
#define TDENGINE_QUERYEXECUTOR_H

#include "os.h"

#include "hash.h"
H
Haojun Liao 已提交
21 22
#include "qFill.h"
#include "qResultbuf.h"
23
#include "qSqlparser.h"
H
Haojun Liao 已提交
24
#include "qTsbuf.h"
25
#include "query.h"
26
#include "taosdef.h"
H
Haojun Liao 已提交
27
#include "tarray.h"
B
Bomin Zhang 已提交
28
#include "tlockfree.h"
H
Haojun Liao 已提交
29
#include "tsdb.h"
30 31 32 33
#include "tsqlfunction.h"

struct SColumnFilterElem;
typedef bool (*__filter_func_t)(struct SColumnFilterElem* pFilter, char* val1, char* val2);
H
hjxilinx 已提交
34
typedef int32_t (*__block_search_fn_t)(char* data, int32_t num, int64_t key, int32_t order);
35

H
Haojun Liao 已提交
36 37 38
typedef struct SGroupResInfo {
  int32_t  groupId;
  int32_t  numOfDataPages;
39 40
  int32_t  pageId;
  int32_t  rowId;
H
Haojun Liao 已提交
41 42
} SGroupResInfo;

H
Haojun Liao 已提交
43
typedef struct SResultRowPool {
44 45 46 47 48 49 50 51 52 53
  int32_t elemSize;
  int32_t blockSize;
  int32_t numOfElemPerBlock;

  struct {
    int32_t blockIndex;
    int32_t pos;
  } position;

  SArray* pData;    // SArray<void*>
H
Haojun Liao 已提交
54
} SResultRowPool;
55

56
typedef struct SSqlGroupbyExpr {
H
Haojun Liao 已提交
57 58 59 60 61
  int16_t tableIndex;
  SArray* columnInfo;  // SArray<SColIndex>, group by columns information
  int16_t numOfGroupCols;
  int16_t orderIndex;  // order by column index
  int16_t orderType;   // order by type: asc/desc
62 63
} SSqlGroupbyExpr;

H
Haojun Liao 已提交
64
typedef struct SResultRow {
65
  int32_t       pageId;      // pageId & rowId is the position of current result in disk-based output buffer
66 67 68 69 70
  int32_t       rowId:29;    // row index in buffer page
  bool          startInterp; // the time window start timestamp has done the interpolation already.
  bool          endInterp;   // the time window end timestamp has done the interpolation already.
  bool          closed;      // this result status: closed or opened
  uint32_t      numOfRows;   // number of rows of current time window
H
Haojun Liao 已提交
71
  SResultRowCellInfo*  pCellInfo;  // For each result column, there is a resultInfo
72
  union {STimeWindow win; char* key;};  // start key of current time window
H
Haojun Liao 已提交
73
} SResultRow;
74

H
Haojun Liao 已提交
75 76 77 78
/**
 * If the number of generated results is greater than this value,
 * query query will be halt and return results to client immediate.
 */
79
typedef struct SResultRec {
H
Haojun Liao 已提交
80 81 82 83
  int64_t total;      // total generated result size in rows
  int64_t rows;       // current result set size in rows
  int64_t capacity;   // capacity of current result output buffer
  int32_t threshold;  // result size threshold in rows.
84 85
} SResultRec;

H
Haojun Liao 已提交
86
typedef struct SResultRowInfo {
H
Haojun Liao 已提交
87 88 89 90 91 92 93
  SResultRow** pResult;    // result list
  int16_t      type:8;     // data type for hash key
  int32_t      size:24;    // number of result set
  int32_t      capacity;   // max capacity
  int32_t      curIndex;   // current start active index
  int64_t      startTime;  // start time of the first time window for sliding query
  int64_t      prevSKey;   // previous (not completed) sliding window start key
H
Haojun Liao 已提交
94
} SResultRowInfo;
95 96 97 98 99 100 101 102

typedef struct SColumnFilterElem {
  int16_t           bytes;  // column length
  __filter_func_t   fp;
  SColumnFilterInfo filterInfo;
} SColumnFilterElem;

typedef struct SSingleColumnFilterInfo {
H
Haojun Liao 已提交
103
  void*              pData;
104
  int32_t            numOfFilters;
H
Haojun Liao 已提交
105
  SColumnInfo        info;
106 107 108
  SColumnFilterElem* pFilters;
} SSingleColumnFilterInfo;

H
Haojun Liao 已提交
109
typedef struct STableQueryInfo {
H
hjxilinx 已提交
110
  TSKEY       lastKey;
H
Haojun Liao 已提交
111
  int32_t     groupIndex;     // group id in table list
112
  int16_t     queryRangeSet;  // denote if the query range is set, only available for interval query
113
  tVariant    tag;
H
hjxilinx 已提交
114
  STimeWindow win;
115
  STSCursor   cur;
H
Haojun Liao 已提交
116
  void*       pTable;         // for retrieve the page id list
H
Haojun Liao 已提交
117
  SResultRowInfo windowResInfo;
118 119
} STableQueryInfo;

H
Haojun Liao 已提交
120 121 122 123 124 125 126 127 128
typedef struct SQueryCostInfo {
  uint64_t loadStatisTime;
  uint64_t loadFileBlockTime;
  uint64_t loadDataInCacheTime;
  uint64_t loadStatisSize;
  uint64_t loadFileBlockSize;
  uint64_t loadDataInCacheSize;
  
  uint64_t loadDataTime;
129 130 131 132
  uint64_t totalRows;
  uint64_t totalCheckedRows;
  uint32_t totalBlocks;
  uint32_t loadBlocks;
H
Haojun Liao 已提交
133 134
  uint32_t loadBlockStatis;
  uint32_t discardBlocks;
135
  uint64_t elapsedTime;
H
Haojun Liao 已提交
136
  uint64_t firstStageMergeTime;
H
Haojun Liao 已提交
137 138
  uint64_t winInfoSize;
  uint64_t tableInfoSize;
H
Haojun Liao 已提交
139
  uint64_t hashSize;
140
  uint64_t numOfTimeWindows;
H
Haojun Liao 已提交
141
} SQueryCostInfo;
H
hjxilinx 已提交
142

H
Haojun Liao 已提交
143 144 145 146 147
typedef struct {
  int64_t vgroupLimit;
  int64_t ts;
} SOrderedPrjQueryInfo;

148
typedef struct SQuery {
H
Haojun Liao 已提交
149 150 151 152
  int16_t          numOfCols;
  int16_t          numOfTags;
  SOrderVal        order;
  STimeWindow      window;
153
  SInterval        interval;
154
  int16_t          precision;
H
Haojun Liao 已提交
155 156 157 158 159 160
  int16_t          numOfOutput;
  int16_t          fillType;
  int16_t          checkBuffer;  // check if the buffer is full during scan each block
  SLimitVal        limit;
  int32_t          rowSize;
  SSqlGroupbyExpr* pGroupbyExpr;
H
Haojun Liao 已提交
161
  SExprInfo*       pExpr1;
H
Haojun Liao 已提交
162 163 164
  SExprInfo*       pExpr2;
  int32_t          numOfExpr2;

H
Haojun Liao 已提交
165 166 167 168 169 170 171 172 173 174
  SColumnInfo*     colList;
  SColumnInfo*     tagColList;
  int32_t          numOfFilterCols;
  int64_t*         fillVal;
  uint32_t         status;  // query status
  SResultRec       rec;
  int32_t          pos;
  tFilePage**      sdata;
  STableQueryInfo* current;

H
Haojun Liao 已提交
175
  SOrderedPrjQueryInfo prjInfo;  // limit value for each vgroup, only available in global order projection query.
176 177 178 179
  SSingleColumnFilterInfo* pFilterInfo;
} SQuery;

typedef struct SQueryRuntimeEnv {
H
Haojun Liao 已提交
180
  jmp_buf              env;
H
Haojun Liao 已提交
181 182
  SQuery*              pQuery;
  SQLFunctionCtx*      pCtx;
183
  int32_t              numOfRowsPerPage;
H
Haojun Liao 已提交
184
  uint16_t*            offset;
H
Haojun Liao 已提交
185
  uint16_t             scanFlag;         // denotes reversed scan of data or not
H
Haojun Liao 已提交
186
  SFillInfo*           pFillInfo;
H
Haojun Liao 已提交
187
  SResultRowInfo       windowResInfo;
H
Haojun Liao 已提交
188 189
  STSBuf*              pTSBuf;
  STSCursor            cur;
190
  SQueryCostInfo       summary;
H
Haojun Liao 已提交
191 192
  void*                pQueryHandle;
  void*                pSecQueryHandle;  // another thread for
H
Haojun Liao 已提交
193
  bool                 stableQuery;      // super table query or not
H
Haojun Liao 已提交
194
  bool                 topBotQuery;      // false
H
Haojun Liao 已提交
195 196
  bool                 groupbyNormalCol; // denote if this is a groupby normal column query
  bool                 hasTagResults;    // if there are tag values in final result or not
197
  bool                 timeWindowInterpo;// if the time window start/end required interpolation
198
  bool                 queryWindowIdentical; // all query time windows are identical for all tables in one group
H
Haojun Liao 已提交
199
  int32_t              interBufSize;     // intermediate buffer sizse
H
Haojun Liao 已提交
200
  int32_t              prevGroupId;      // previous executed group id
H
Haojun Liao 已提交
201
  SDiskbasedResultBuf* pResultBuf;       // query result buffer based on blocked-wised disk file
H
Haojun Liao 已提交
202
  SHashObj*            pResultRowHashTable; // quick locate the window object for each result
H
Haojun Liao 已提交
203
  char*                keyBuf;           // window key buffer
204
  SResultRowPool*      pool;             // window result object pool
H
Haojun Liao 已提交
205 206

  int32_t*             rowCellInfoOffset;// offset value for each row result cell info
207 208
  char**               prevRow;
  char**               nextRow;
209 210
} SQueryRuntimeEnv;

211 212 213 214 215
enum {
  QUERY_RESULT_NOT_READY = 1,
  QUERY_RESULT_READY     = 2,
};

216
typedef struct SQInfo {
H
Haojun Liao 已提交
217
  void*            signature;
H
Haojun Liao 已提交
218
  int32_t          code;   // error code to returned to client
219
  int64_t          owner; // if it is in execution
H
Haojun Liao 已提交
220
  void*            tsdb;
Y
TD-1733  
yihaoDeng 已提交
221
  SMemRef          memRef; 
H
Haojun Liao 已提交
222
  int32_t          vgId;
H
Haojun Liao 已提交
223
  STableGroupInfo  tableGroupInfo;       // table <tid, last_key> list  SArray<STableKeyInfo>
224
  STableGroupInfo  tableqinfoGroupInfo;  // this is a group array list, including SArray<STableQueryInfo*> structure
225
  SQueryRuntimeEnv runtimeEnv;
226 227
//  SArray*          arrTableIdInfo;
  SHashObj*        arrTableIdInfo;
H
Haojun Liao 已提交
228
  int32_t          groupIndex;
H
Haojun Liao 已提交
229

230 231 232 233
  /*
   * the query is executed position on which meter of the whole list.
   * when the index reaches the last one of the list, it means the query is completed.
   */
H
Haojun Liao 已提交
234
  int32_t          tableIndex;
H
Haojun Liao 已提交
235
  SGroupResInfo    groupResInfo;
236
  void*            pBuf;        // allocated buffer for STableQueryInfo, sizeof(STableQueryInfo)*numOfTables;
H
Haojun Liao 已提交
237

238
  pthread_mutex_t  lock;        // used to synchronize the rsp/query threads
H
Haojun Liao 已提交
239
  tsem_t           ready;
240 241
  int32_t          dataReady;   // denote if query result is ready or not
  void*            rspContext;  // response context
242 243 244
} SQInfo;

#endif  // TDENGINE_QUERYEXECUTOR_H