qExecutor.h 7.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 39 40 41 42 43 44 45 46
typedef struct SPosInfo {
  int32_t pageId:20;
  int32_t rowId:12;
} SPosInfo;

typedef struct SGroupResInfo {
  int32_t  groupId;
  int32_t  numOfDataPages;
  SPosInfo pos;
} SGroupResInfo;

47
typedef struct SSqlGroupbyExpr {
H
Haojun Liao 已提交
48 49 50 51 52
  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
53 54 55 56
} SSqlGroupbyExpr;

typedef struct SWindowResult {
  SPosInfo      pos;         // Position of current result in disk-based output buffer
57 58
  uint16_t      numOfRows;   // number of rows of current time window
  bool          closed;      // this result status: closed or opened
59
  SResultInfo*  resultInfo;  // For each result column, there is a resultInfo
60
  union {STimeWindow win; char* key;};  // start key of current time window
61 62
} SWindowResult;

H
Haojun Liao 已提交
63 64 65 66
/**
 * If the number of generated results is greater than this value,
 * query query will be halt and return results to client immediate.
 */
67
typedef struct SResultRec {
H
Haojun Liao 已提交
68 69 70 71
  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.
72 73 74 75
} SResultRec;

typedef struct SWindowResInfo {
  SWindowResult* pResult;    // result list
H
Haojun Liao 已提交
76
  SHashObj*      hashList;   // hash list for quick access
77 78 79 80 81 82
  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 已提交
83
  int64_t        threshold;  // threshold to halt query and return the generated results.
84
  int64_t        interval;   // time window interval
85 86 87 88 89 90 91 92 93
} SWindowResInfo;

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

typedef struct SSingleColumnFilterInfo {
H
Haojun Liao 已提交
94
  void*              pData;
95
  int32_t            numOfFilters;
H
Haojun Liao 已提交
96
  SColumnInfo        info;
97 98 99
  SColumnFilterElem* pFilters;
} SSingleColumnFilterInfo;

H
hjxilinx 已提交
100 101
typedef struct STableQueryInfo {  // todo merge with the STableQueryInfo struct
  TSKEY       lastKey;
H
Haojun Liao 已提交
102
  int32_t     groupIndex;     // group id in table list
103
  int16_t     queryRangeSet;  // denote if the query range is set, only available for interval query
104
  tVariant    tag;
H
hjxilinx 已提交
105
  STimeWindow win;
106
  STSCursor   cur;
H
Haojun Liao 已提交
107
  void*       pTable;         // for retrieve the page id list
108 109 110
  SWindowResInfo windowResInfo;
} STableQueryInfo;

H
Haojun Liao 已提交
111 112 113 114 115 116 117 118 119
typedef struct SQueryCostInfo {
  uint64_t loadStatisTime;
  uint64_t loadFileBlockTime;
  uint64_t loadDataInCacheTime;
  uint64_t loadStatisSize;
  uint64_t loadFileBlockSize;
  uint64_t loadDataInCacheSize;
  
  uint64_t loadDataTime;
120 121 122 123
  uint64_t totalRows;
  uint64_t totalCheckedRows;
  uint32_t totalBlocks;
  uint32_t loadBlocks;
H
Haojun Liao 已提交
124 125
  uint32_t loadBlockStatis;
  uint32_t discardBlocks;
126
  uint64_t elapsedTime;
H
Haojun Liao 已提交
127
  uint64_t firstStageMergeTime;
128
  uint64_t internalSupSize;
129
  uint64_t numOfTimeWindows;
H
Haojun Liao 已提交
130
} SQueryCostInfo;
H
hjxilinx 已提交
131

132
typedef struct SQuery {
H
Haojun Liao 已提交
133 134 135 136
  int16_t          numOfCols;
  int16_t          numOfTags;
  SOrderVal        order;
  STimeWindow      window;
137
  SInterval        interval;
138
  int16_t          precision;
H
Haojun Liao 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
  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;

156 157 158 159
  SSingleColumnFilterInfo* pFilterInfo;
} SQuery;

typedef struct SQueryRuntimeEnv {
H
Haojun Liao 已提交
160
  jmp_buf              env;
H
Haojun Liao 已提交
161
  SResultInfo*         resultInfo;       // todo refactor to merge with SWindowResInfo
H
Haojun Liao 已提交
162 163
  SQuery*              pQuery;
  SQLFunctionCtx*      pCtx;
164
  int32_t              numOfRowsPerPage;
H
Haojun Liao 已提交
165
  int16_t              offset[TSDB_MAX_COLUMNS];
H
Haojun Liao 已提交
166
  uint16_t             scanFlag;         // denotes reversed scan of data or not
H
Haojun Liao 已提交
167 168 169 170
  SFillInfo*           pFillInfo;
  SWindowResInfo       windowResInfo;
  STSBuf*              pTSBuf;
  STSCursor            cur;
171
  SQueryCostInfo       summary;
H
Haojun Liao 已提交
172 173
  void*                pQueryHandle;
  void*                pSecQueryHandle;  // another thread for
H
Haojun Liao 已提交
174
  bool                 stableQuery;      // super table query or not
H
Haojun Liao 已提交
175
  bool                 topBotQuery;      // false
H
Haojun Liao 已提交
176 177
  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 已提交
178
  int32_t              interBufSize;     // intermediate buffer sizse
H
Haojun Liao 已提交
179
  int32_t              prevGroupId;      // previous executed group id
H
Haojun Liao 已提交
180
  SDiskbasedResultBuf* pResultBuf;       // query result buffer based on blocked-wised disk file
181 182
} SQueryRuntimeEnv;

183 184 185 186 187
enum {
  QUERY_RESULT_NOT_READY = 1,
  QUERY_RESULT_READY     = 2,
};

188
typedef struct SQInfo {
H
Haojun Liao 已提交
189
  void*            signature;
H
Haojun Liao 已提交
190
  int32_t          code;   // error code to returned to client
191
  int64_t          owner; // if it is in execution
H
Haojun Liao 已提交
192 193
  void*            tsdb;
  int32_t          vgId;
H
Haojun Liao 已提交
194
  STableGroupInfo  tableGroupInfo;       // table <tid, last_key> list  SArray<STableKeyInfo>
195
  STableGroupInfo  tableqinfoGroupInfo;  // this is a group array list, including SArray<STableQueryInfo*> structure
196
  SQueryRuntimeEnv runtimeEnv;
weixin_48148422's avatar
weixin_48148422 已提交
197
  SArray*          arrTableIdInfo;
H
Haojun Liao 已提交
198
  int32_t          groupIndex;
H
Haojun Liao 已提交
199

200 201 202 203
  /*
   * 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 已提交
204
  int32_t          tableIndex;
H
Haojun Liao 已提交
205
  SGroupResInfo    groupResInfo;
206
  void*            pBuf;        // allocated buffer for STableQueryInfo, sizeof(STableQueryInfo)*numOfTables;
H
Haojun Liao 已提交
207

208 209 210
  pthread_mutex_t  lock;        // used to synchronize the rsp/query threads
  int32_t          dataReady;   // denote if query result is ready or not
  void*            rspContext;  // response context
211 212 213
} SQInfo;

#endif  // TDENGINE_QUERYEXECUTOR_H