executor.c 6.7 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;

H
Haojun Liao 已提交
40
    SStreamBlockScanInfo* 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 47

    if (type == STREAM_DATA_TYPE_SUBMIT_BLOCK) {
48
      if (tqReadHandleSetMsg(pInfo->streamBlockReader, input, 0) < 0) {
49 50 51
        qError("submit msg messed up when initing stream block, %s" PRIx64, id);
        return TSDB_CODE_QRY_APP_ERROR;
      }
52
    } else if (type == STREAM_DATA_TYPE_SSDATA_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 64 65
    } else if (type == STREAM_DATA_TYPE_FROM_SNAPSHOT) {
      // do nothing
      ASSERT(pInfo->blockType == STREAM_DATA_TYPE_FROM_SNAPSHOT);
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 79 80 81
int32_t qStreamScanSnapshot(qTaskInfo_t tinfo) {
  if (tinfo == NULL) {
    return TSDB_CODE_QRY_APP_ERROR;
  }
  SExecTaskInfo* pTaskInfo = (SExecTaskInfo*)tinfo;
  return doSetStreamBlock(pTaskInfo->pRoot, NULL, 0, STREAM_DATA_TYPE_FROM_SNAPSHOT, 0, NULL);
}

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, void* streamReadHandle) {
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;
123
  code = qCreateExecTask(streamReadHandle, 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
static SArray* filterQualifiedChildTables(const SStreamBlockScanInfo* pScanInfo, const SArray* tableIdList) {
  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;
    }

    ASSERT(mr.me.type == TSDB_CHILD_TABLE);
    if (mr.me.ctbEntry.suid != pScanInfo->tableUid) {
      continue;
    }

    taosArrayPush(qa, id);
  }

  metaReaderClear(&mr);
  return qa;
}

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

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

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

174 175 176 177 178
    qDebug(" %d qualified child tables added into stream scanner", (int32_t)taosArrayGetSize(qa));
    code = tqReadHandleAddTbUidList(pScanInfo->streamBlockReader, qa);
    taosArrayDestroy(qa);
  } else {  // remove the table id in current list
    qDebug(" %d remove child tables from the stream scanner", (int32_t)taosArrayGetSize(tableIdList));
179
    code = tqReadHandleRemoveTbUidList(pScanInfo->streamBlockReader, tableIdList);
180 181
  }

182
  return code;
L
fix  
Liu Jicong 已提交
183
}
184

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

  *sversion = pTaskInfo->schemaVer.sversion;
  *tversion = pTaskInfo->schemaVer.tversion;
192 193 194 195 196 197 198 199 200 201
  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;
  }
202 203

  return 0;
204
}