executor.c 6.8 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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/>.
14 15 16
 */

#include "executor.h"
H
Haojun Liao 已提交
17
#include "executorimpl.h"
18
#include "planner.h"
L
Liu Jicong 已提交
19
#include "tdatablock.h"
L
Liu Jicong 已提交
20
#include "vnode.h"
21

22 23
static int32_t doSetStreamBlock(SOperatorInfo* pOperator, void* input, size_t numOfBlocks, int32_t type, bool assignUid,
                                char* id) {
H
Haojun Liao 已提交
24
  ASSERT(pOperator != NULL);
X
Xiaoyu Wang 已提交
25
  if (pOperator->operatorType != QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN) {
H
Haojun Liao 已提交
26
    if (pOperator->numOfDownstream == 0) {
27
      qError("failed to find stream scan operator to set the input data block, %s" PRIx64, id);
H
Haojun Liao 已提交
28 29
      return TSDB_CODE_QRY_APP_ERROR;
    }
H
Haojun Liao 已提交
30

H
Haojun Liao 已提交
31
    if (pOperator->numOfDownstream > 1) {  // not handle this in join query
32
      qError("join not supported for stream block scan, %s" PRIx64, id);
H
Haojun Liao 已提交
33
      return TSDB_CODE_QRY_APP_ERROR;
H
Haojun Liao 已提交
34
    }
L
Liu Jicong 已提交
35
    pOperator->status = OP_NOT_OPENED;
36
    return doSetStreamBlock(pOperator->pDownstream[0], input, numOfBlocks, type, assignUid, id);
H
Haojun Liao 已提交
37
  } else {
38 39
    pOperator->status = OP_NOT_OPENED;

40
    SStreamScanInfo* pInfo = pOperator->info;
41
    pInfo->assignBlockUid = assignUid;
42

43 44
    // TODO: if a block was set but not consumed,
    // prevent setting a different type of block
45
    pInfo->blockType = type;
46

L
Liu Jicong 已提交
47
    if (type == STREAM_INPUT__DATA_SUBMIT) {
L
Liu Jicong 已提交
48
      if (tqReaderSetDataMsg(pInfo->tqReader, input, 0) < 0) {
49 50 51
        qError("submit msg messed up when initing stream block, %s" PRIx64, id);
        return TSDB_CODE_QRY_APP_ERROR;
      }
L
Liu Jicong 已提交
52
    } else if (type == STREAM_INPUT__DATA_BLOCK) {
H
Haojun Liao 已提交
53
      for (int32_t i = 0; i < numOfBlocks; ++i) {
L
Liu Jicong 已提交
54
        SSDataBlock* pDataBlock = &((SSDataBlock*)input)[i];
55

56
        SSDataBlock* p = createOneDataBlock(pDataBlock, false);
H
Haojun Liao 已提交
57
        p->info = pDataBlock->info;
58

L
Liu Jicong 已提交
59
        taosArrayClear(p->pDataBlock);
H
Haojun Liao 已提交
60 61 62
        taosArrayAddAll(p->pDataBlock, pDataBlock->pDataBlock);
        taosArrayPush(pInfo->pBlockLists, &p);
      }
L
Liu Jicong 已提交
63
    } else if (type == STREAM_INPUT__TABLE_SCAN) {
L
Liu Jicong 已提交
64
      // do nothing
L
Liu Jicong 已提交
65
      ASSERT(pInfo->blockType == STREAM_INPUT__TABLE_SCAN);
66 67
    } else {
      ASSERT(0);
68 69
    }

H
Haojun Liao 已提交
70 71 72 73
    return TSDB_CODE_SUCCESS;
  }
}

L
Liu Jicong 已提交
74 75 76 77 78
int32_t qStreamScanSnapshot(qTaskInfo_t tinfo) {
  if (tinfo == NULL) {
    return TSDB_CODE_QRY_APP_ERROR;
  }
  SExecTaskInfo* pTaskInfo = (SExecTaskInfo*)tinfo;
L
Liu Jicong 已提交
79
  return doSetStreamBlock(pTaskInfo->pRoot, NULL, 0, STREAM_INPUT__TABLE_SCAN, 0, NULL);
L
Liu Jicong 已提交
80 81
}

82 83
int32_t qSetStreamInput(qTaskInfo_t tinfo, const void* input, int32_t type, bool assignUid) {
  return qSetMultiStreamInput(tinfo, input, 1, type, assignUid);
H
Haojun Liao 已提交
84 85
}

86
int32_t qSetMultiStreamInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type, bool assignUid) {
H
Haojun Liao 已提交
87 88 89 90
  if (tinfo == NULL) {
    return TSDB_CODE_QRY_APP_ERROR;
  }

H
Haojun Liao 已提交
91
  if (pBlocks == NULL || numOfBlocks == 0) {
H
Haojun Liao 已提交
92 93 94
    return TSDB_CODE_SUCCESS;
  }

L
Liu Jicong 已提交
95
  SExecTaskInfo* pTaskInfo = (SExecTaskInfo*)tinfo;
H
Haojun Liao 已提交
96

97 98
  int32_t code =
      doSetStreamBlock(pTaskInfo->pRoot, (void**)pBlocks, numOfBlocks, type, assignUid, GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
99
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
100
    qError("%s failed to set the stream block data", GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
101
  } else {
H
Haojun Liao 已提交
102
    qDebug("%s set the stream block successfully", GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
103 104 105 106 107
  }

  return code;
}

L
Liu Jicong 已提交
108
qTaskInfo_t qCreateStreamExecTaskInfo(void* msg, SReadHandle* readers) {
L
Liu Jicong 已提交
109
  if (msg == NULL) {
110 111 112
    return NULL;
  }

113
  /*qDebugL("stream task string %s", (const char*)msg);*/
X
bugfix  
Xiaoyu Wang 已提交
114

115
  struct SSubplan* plan = NULL;
L
Liu Jicong 已提交
116
  int32_t          code = qStringToSubplan(msg, &plan);
117 118 119 120 121 122
  if (code != TSDB_CODE_SUCCESS) {
    terrno = code;
    return NULL;
  }

  qTaskInfo_t pTaskInfo = NULL;
L
Liu Jicong 已提交
123
  code = qCreateExecTask(readers, 0, 0, plan, &pTaskInfo, NULL, NULL, OPTR_EXEC_MODEL_STREAM);
124 125 126 127 128 129 130 131
  if (code != TSDB_CODE_SUCCESS) {
    // TODO: destroy SSubplan & pTaskInfo
    terrno = code;
    return NULL;
  }

  return pTaskInfo;
}
132

133
static SArray* filterQualifiedChildTables(const SStreamScanInfo* pScanInfo, const SArray* tableIdList) {
134 135 136 137 138 139 140 141 142 143 144 145 146 147
  SArray* qa = taosArrayInit(4, sizeof(tb_uid_t));

  // let's discard the tables those are not created according to the queried super table.
  SMetaReader mr = {0};
  metaReaderInit(&mr, pScanInfo->readHandle.meta, 0);
  for (int32_t i = 0; i < taosArrayGetSize(tableIdList); ++i) {
    int64_t* id = (int64_t*)taosArrayGet(tableIdList, i);

    int32_t code = metaGetTableEntryByUid(&mr, *id);
    if (code != TSDB_CODE_SUCCESS) {
      qError("failed to get table meta, uid:%" PRIu64 " code:%s", *id, tstrerror(terrno));
      continue;
    }

148
    // TODO handle ntb case
L
Liu Jicong 已提交
149
    if (mr.me.type != TSDB_CHILD_TABLE || mr.me.ctbEntry.suid != pScanInfo->tableUid) {
150 151
      continue;
    }
152 153
    /*pScanInfo->pStreamScanOp->pTaskInfo->tableqinfoList.*/
    // handle multiple partition
154 155 156 157 158 159 160 161

    taosArrayPush(qa, id);
  }

  metaReaderClear(&mr);
  return qa;
}

162
int32_t qUpdateQualifiedTableId(qTaskInfo_t tinfo, const SArray* tableIdList, bool isAdd) {
L
fix  
Liu Jicong 已提交
163
  SExecTaskInfo* pTaskInfo = (SExecTaskInfo*)tinfo;
164

165
  // traverse to the stream scanner node to add this table id
166
  SOperatorInfo* pInfo = pTaskInfo->pRoot;
L
Liu Jicong 已提交
167
  while (pInfo->operatorType != QUERY_NODE_PHYSICAL_PLAN_STREAM_SCAN) {
168 169 170
    pInfo = pInfo->pDownstream[0];
  }

171 172
  int32_t          code = 0;
  SStreamScanInfo* pScanInfo = pInfo->info;
173 174
  if (isAdd) {  // add new table id
    SArray* qa = filterQualifiedChildTables(pScanInfo, tableIdList);
175

176
    qDebug(" %d qualified child tables added into stream scanner", (int32_t)taosArrayGetSize(qa));
L
Liu Jicong 已提交
177
    code = tqReaderAddTbUidList(pScanInfo->tqReader, qa);
178 179 180
    taosArrayDestroy(qa);
  } else {  // remove the table id in current list
    qDebug(" %d remove child tables from the stream scanner", (int32_t)taosArrayGetSize(tableIdList));
L
Liu Jicong 已提交
181
    code = tqReaderRemoveTbUidList(pScanInfo->tqReader, tableIdList);
182 183
  }

184
  return code;
L
fix  
Liu Jicong 已提交
185
}
186

187 188
int32_t qGetQueriedTableSchemaVersion(qTaskInfo_t tinfo, char* dbName, char* tableName, int32_t* sversion,
                                      int32_t* tversion) {
189
  ASSERT(tinfo != NULL && dbName != NULL && tableName != NULL);
190
  SExecTaskInfo* pTaskInfo = (SExecTaskInfo*)tinfo;
191

H
Haojun Liao 已提交
192 193 194 195
  if (pTaskInfo->schemaVer.sw == NULL) {
    return TSDB_CODE_SUCCESS;
  }

196
  *sversion = pTaskInfo->schemaVer.sw->version;
197
  *tversion = pTaskInfo->schemaVer.tversion;
198 199 200 201 202 203 204 205 206 207
  if (pTaskInfo->schemaVer.dbname) {
    strcpy(dbName, pTaskInfo->schemaVer.dbname);
  } else {
    dbName[0] = 0;
  }
  if (pTaskInfo->schemaVer.tablename) {
    strcpy(tableName, pTaskInfo->schemaVer.tablename);
  } else {
    tableName[0] = 0;
  }
208 209

  return 0;
210
}