qExecutor.h 8.0 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;

43 44 45 46 47 48 49 50 51 52 53 54 55
typedef struct SWindowResultPool {
  int32_t elemSize;
  int32_t blockSize;
  int32_t numOfElemPerBlock;

  struct {
    int32_t blockIndex;
    int32_t pos;
  } position;

  SArray* pData;    // SArray<void*>
} SWindowResultPool;

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 64
} SSqlGroupbyExpr;

typedef struct SWindowResult {
65 66 67
  int32_t       pageId;      // pageId & rowId is the position of current result in disk-based output buffer
  int32_t       rowId:15;
  bool          closed:1;    // this result status: closed or opened
68
  uint16_t      numOfRows;   // number of rows of current time window
69
  SResultInfo*  resultInfo;  // For each result column, there is a resultInfo
70
  union {STimeWindow win; char* key;};  // start key of current time window
71 72
} SWindowResult;

H
Haojun Liao 已提交
73 74 75 76
/**
 * If the number of generated results is greater than this value,
 * query query will be halt and return results to client immediate.
 */
77
typedef struct SResultRec {
H
Haojun Liao 已提交
78 79 80 81
  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.
82 83 84
} SResultRec;

typedef struct SWindowResInfo {
85
  SWindowResult** pResult;    // result list
86 87 88 89 90 91
  int16_t        type;       // data type for hash key
  int32_t        capacity;   // max capacity
  int32_t        curIndex;   // current start active index
  int32_t        size;       // number of result set
  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 已提交
92
  int64_t        threshold;  // threshold to halt query and return the generated results.
93
  int64_t        interval;   // time window interval
94 95 96 97 98 99 100 101 102
} SWindowResInfo;

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
117 118 119
  SWindowResInfo windowResInfo;
} 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

143
typedef struct SQuery {
H
Haojun Liao 已提交
144 145 146 147
  int16_t          numOfCols;
  int16_t          numOfTags;
  SOrderVal        order;
  STimeWindow      window;
148
  SInterval        interval;
149
  int16_t          precision;
H
Haojun Liao 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
  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;
  SExprInfo*       pSelectExpr;
  SColumnInfo*     colList;
  SColumnInfo*     tagColList;
  int32_t          numOfFilterCols;
  int64_t*         fillVal;
  uint32_t         status;  // query status
  SResultRec       rec;
  int32_t          pos;
  tFilePage**      sdata;
  STableQueryInfo* current;

167 168 169 170
  SSingleColumnFilterInfo* pFilterInfo;
} SQuery;

typedef struct SQueryRuntimeEnv {
H
Haojun Liao 已提交
171
  jmp_buf              env;
H
Haojun Liao 已提交
172
  SResultInfo*         resultInfo;       // todo refactor to merge with SWindowResInfo
H
Haojun Liao 已提交
173 174
  SQuery*              pQuery;
  SQLFunctionCtx*      pCtx;
175
  int32_t              numOfRowsPerPage;
H
Haojun Liao 已提交
176
  int16_t              offset[TSDB_MAX_COLUMNS];
H
Haojun Liao 已提交
177
  uint16_t             scanFlag;         // denotes reversed scan of data or not
H
Haojun Liao 已提交
178 179 180 181
  SFillInfo*           pFillInfo;
  SWindowResInfo       windowResInfo;
  STSBuf*              pTSBuf;
  STSCursor            cur;
182
  SQueryCostInfo       summary;
H
Haojun Liao 已提交
183 184
  void*                pQueryHandle;
  void*                pSecQueryHandle;  // another thread for
H
Haojun Liao 已提交
185
  bool                 stableQuery;      // super table query or not
H
Haojun Liao 已提交
186
  bool                 topBotQuery;      // false
H
Haojun Liao 已提交
187 188
  bool                 groupbyNormalCol; // denote if this is a groupby normal column query
  bool                 hasTagResults;    // if there are tag values in final result or not
H
Haojun Liao 已提交
189
  int32_t              interBufSize;     // intermediate buffer sizse
H
Haojun Liao 已提交
190
  int32_t              prevGroupId;      // previous executed group id
H
Haojun Liao 已提交
191
  SDiskbasedResultBuf* pResultBuf;       // query result buffer based on blocked-wised disk file
H
Haojun Liao 已提交
192 193
  SHashObj*            pWindowHashTable; // quick locate the window object for each result
  char*                keyBuf;           // window key buffer
194
  SWindowResultPool*   pool;             // window result object pool
195 196
} SQueryRuntimeEnv;

197 198 199 200 201
enum {
  QUERY_RESULT_NOT_READY = 1,
  QUERY_RESULT_READY     = 2,
};

Y
TD-1733  
yihaoDeng 已提交
202 203 204 205 206 207
typedef struct SMemRef {
  int32_t ref; 
  void *mem;
  void *imem;
} SMemRef;

208
typedef struct SQInfo {
H
Haojun Liao 已提交
209
  void*            signature;
H
Haojun Liao 已提交
210
  int32_t          code;   // error code to returned to client
211
  int64_t          owner; // if it is in execution
H
Haojun Liao 已提交
212
  void*            tsdb;
Y
TD-1733  
yihaoDeng 已提交
213
  SMemRef          memRef; 
H
Haojun Liao 已提交
214
  int32_t          vgId;
H
Haojun Liao 已提交
215
  STableGroupInfo  tableGroupInfo;       // table <tid, last_key> list  SArray<STableKeyInfo>
216
  STableGroupInfo  tableqinfoGroupInfo;  // this is a group array list, including SArray<STableQueryInfo*> structure
217
  SQueryRuntimeEnv runtimeEnv;
weixin_48148422's avatar
weixin_48148422 已提交
218
  SArray*          arrTableIdInfo;
H
Haojun Liao 已提交
219
  int32_t          groupIndex;
H
Haojun Liao 已提交
220

221 222 223 224
  /*
   * 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 已提交
225
  int32_t          tableIndex;
H
Haojun Liao 已提交
226
  SGroupResInfo    groupResInfo;
227
  void*            pBuf;        // allocated buffer for STableQueryInfo, sizeof(STableQueryInfo)*numOfTables;
H
Haojun Liao 已提交
228

229
  pthread_mutex_t  lock;        // used to synchronize the rsp/query threads
H
Haojun Liao 已提交
230
  tsem_t           ready;
231 232
  int32_t          dataReady;   // denote if query result is ready or not
  void*            rspContext;  // response context
233 234 235
} SQInfo;

#endif  // TDENGINE_QUERYEXECUTOR_H