planner.h 5.2 KB
Newer Older
H
Hongze Cheng 已提交
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 _TD_PLANNER_H_
#define _TD_PLANNER_H_

#ifdef __cplusplus
extern "C" {
#endif

X
Xiaoyu Wang 已提交
23
#include "query.h"
H
Hongze Cheng 已提交
24
#include "tmsg.h"
L
Liu Jicong 已提交
25
#include "tarray.h"
26

27 28
#define QUERY_TYPE_MERGE       1
#define QUERY_TYPE_PARTIAL     2
29
#define QUERY_TYPE_SCAN        3
X
Xiaoyu Wang 已提交
30
#define QUERY_TYPE_MODIFY      4
31

32
enum OPERATOR_TYPE_E {
33 34 35 36 37
  OP_Unknown,
#define INCLUDE_AS_ENUM
#include "plannerOp.h"
#undef INCLUDE_AS_ENUM
  OP_TotalNum
38 39
};

X
Xiaoyu Wang 已提交
40 41 42 43 44 45 46
enum DATASINK_TYPE_E {
  DSINK_Unknown,
  DSINK_Dispatch,
  DSINK_Insert,
  DSINK_TotalNum
};

47 48 49
struct SEpSet;
struct SQueryStmtInfo;

50 51 52 53 54 55 56 57 58 59 60 61
typedef SSchema SSlotSchema;

typedef struct SDataBlockSchema {
  SSlotSchema        *pSchema;
  int32_t             numOfCols;    // number of columns
} SDataBlockSchema;

typedef struct SQueryNodeBasicInfo {
  int32_t     type;          // operator type
  const char *name;          // operator name
} SQueryNodeBasicInfo;

X
Xiaoyu Wang 已提交
62 63 64 65 66 67 68 69 70 71
typedef struct SDataSink {
  SQueryNodeBasicInfo info;
} SDataSink;

typedef struct SDataDispatcher {
  SDataSink sink;
} SDataDispatcher;

typedef struct SDataInserter {
  SDataSink sink;
X
Xiaoyu Wang 已提交
72 73 74
  int32_t   numOfTables;
  uint32_t  size;
  char     *pData;
X
Xiaoyu Wang 已提交
75 76
} SDataInserter;

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
typedef struct SPhyNode {
  SQueryNodeBasicInfo info;
  SArray             *pTargets;      // target list to be computed or scanned at this node
  SArray             *pConditions;   // implicitly-ANDed qual conditions
  SDataBlockSchema    targetSchema;
  // children plan to generated result for current node to process
  // in case of join, multiple plan nodes exist.
  SArray             *pChildren;
  struct SPhyNode    *pParent;
} SPhyNode;

typedef struct SScanPhyNode {
  SPhyNode    node;
  uint64_t    uid;  // unique id of the table
  int8_t      tableType;
} SScanPhyNode;

typedef SScanPhyNode SSystemTableScanPhyNode;
typedef SScanPhyNode STagScanPhyNode;

typedef struct STableScanPhyNode {
  SScanPhyNode scan;
  uint8_t      scanFlag;         // denotes reversed scan of data or not
  STimeWindow  window;
  SArray      *pTagsConditions; // implicitly-ANDed tag qual conditions
} STableScanPhyNode;

typedef STableScanPhyNode STableSeqScanPhyNode;

typedef struct SProjectPhyNode {
  SPhyNode node;
} SProjectPhyNode;

typedef struct SExchangePhyNode {
  SPhyNode    node;
112
  uint64_t    srcTemplateId; // template id of datasource suplans
X
Xiaoyu Wang 已提交
113
  SArray     *pSrcEndPoints;  // SEpAddrMsg, scheduler fill by calling qSetSuplanExecutionNode
114 115 116 117 118 119 120 121
} SExchangePhyNode;

typedef struct SSubplanId {
  uint64_t queryId;
  uint64_t templateId;
  uint64_t subplanId;
} SSubplanId;

122
typedef struct SSubplan {
H
Haojun Liao 已提交
123
  SSubplanId id;           // unique id of the subplan
124
  int32_t    type;         // QUERY_TYPE_MERGE|QUERY_TYPE_PARTIAL|QUERY_TYPE_SCAN|QUERY_TYPE_MODIFY
H
Haojun Liao 已提交
125 126
  int32_t    msgType;      // message type for subplan, used to denote the send message type to vnode.
  int32_t    level;        // the execution level of current subplan, starting from 0 in a top-down manner.
X
Xiaoyu Wang 已提交
127
  SQueryNodeAddr     execNode;    // for the scan/modify subplan, the optional execution node
H
Haojun Liao 已提交
128
  SArray    *pChildren;    // the datasource subplan,from which to fetch the result
X
Xiaoyu Wang 已提交
129 130 131
  SArray    *pParents;     // the data destination subplan, get data from current subplan
  SPhyNode  *pNode;        // physical plan of current subplan
  SDataSink *pDataSink;    // data of the subplan flow into the datasink
132
} SSubplan;
133

134
typedef struct SQueryDag {
X
Xiaoyu Wang 已提交
135
  uint64_t queryId;
X
Xiaoyu Wang 已提交
136
  int32_t  numOfSubplans;
L
Liu Jicong 已提交
137
  SArray  *pSubplans; // SArray*<SArray*<SSubplan*>>. The execution level of subplan, starting from 0.
138
} SQueryDag;
139

X
Xiaoyu Wang 已提交
140 141
struct SQueryNode;

142
/**
143
 * Create the physical plan for the query, according to the AST.
144
 */
X
Xiaoyu Wang 已提交
145
int32_t qCreateQueryDag(const struct SQueryNode* pQueryInfo, struct SQueryDag** pDag);
146

147 148 149
// Set datasource of this subplan, multiple calls may be made to a subplan.
// @subplan subplan to be schedule
// @templateId templateId of a group of datasource subplans of this @subplan
D
dapan 已提交
150
// @ep one execution location of this group of datasource subplans 
D
dapan1121 已提交
151
int32_t qSetSubplanExecutionNode(SSubplan* subplan, uint64_t templateId, SQueryNodeAddr* ep);
152

X
Xiaoyu Wang 已提交
153
int32_t qExplainQuery(const struct SQueryNode* pQueryInfo, struct SEpSet* pQnode, char** str);
154 155

/**
156
 * Convert to subplan to string for the scheduler to send to the executor
157
 */
158
int32_t qSubPlanToString(const SSubplan* subplan, char** str, int32_t* len);
X
Xiaoyu Wang 已提交
159 160

int32_t qStringToSubplan(const char* str, SSubplan** subplan);
161

X
Xiaoyu Wang 已提交
162 163
void qDestroySubplan(SSubplan* pSubplan);

164 165 166 167 168
/**
 * Destroy the physical plan.
 * @param pQueryPhyNode
 * @return
 */
X
Xiaoyu Wang 已提交
169
void qDestroyQueryDag(SQueryDag* pDag);
170

L
Liu Jicong 已提交
171 172 173
char* qDagToString(const SQueryDag* pDag);
SQueryDag* qStringToDag(const char* pStr);

H
Hongze Cheng 已提交
174 175 176 177
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
178
#endif /*_TD_PLANNER_H_*/