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

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

H
Haojun Liao 已提交
39
    SStreamBlockScanInfo* pInfo = pOperator->info;
40
    pInfo->assignBlockUid = assignUid;
41 42 43 44 45

    // the block type can not be changed in the streamscan operators
    if (pInfo->blockType == 0) {
      pInfo->blockType = type;
    } else if (pInfo->blockType != type) {
L
Liu Jicong 已提交
46 47
      return TSDB_CODE_QRY_APP_ERROR;
    }
48 49

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

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

L
Liu Jicong 已提交
61
        taosArrayClear(p->pDataBlock);
H
Haojun Liao 已提交
62 63 64
        taosArrayAddAll(p->pDataBlock, pDataBlock->pDataBlock);
        taosArrayPush(pInfo->pBlockLists, &p);
      }
65 66
    }

H
Haojun Liao 已提交
67 68 69 70
    return TSDB_CODE_SUCCESS;
  }
}

71 72
int32_t qSetStreamInput(qTaskInfo_t tinfo, const void* input, int32_t type, bool assignUid) {
  return qSetMultiStreamInput(tinfo, input, 1, type, assignUid);
H
Haojun Liao 已提交
73 74
}

75
int32_t qSetMultiStreamInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type, bool assignUid) {
H
Haojun Liao 已提交
76 77 78 79
  if (tinfo == NULL) {
    return TSDB_CODE_QRY_APP_ERROR;
  }

H
Haojun Liao 已提交
80
  if (pBlocks == NULL || numOfBlocks == 0) {
H
Haojun Liao 已提交
81 82 83
    return TSDB_CODE_SUCCESS;
  }

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

86
  int32_t code = doSetStreamBlock(pTaskInfo->pRoot, (void**)pBlocks, numOfBlocks, type, assignUid, GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
87
  if (code != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
88
    qError("%s failed to set the stream block data", GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
89
  } else {
H
Haojun Liao 已提交
90
    qDebug("%s set the stream block successfully", GET_TASKID(pTaskInfo));
H
Haojun Liao 已提交
91 92 93 94 95
  }

  return code;
}

L
Liu Jicong 已提交
96 97
qTaskInfo_t qCreateStreamExecTaskInfo(void* msg, void* streamReadHandle) {
  if (msg == NULL || streamReadHandle == NULL) {
98 99 100 101
    return NULL;
  }

  // print those info into log
L
Liu Jicong 已提交
102
#if 0
L
Liu Jicong 已提交
103 104 105 106
  pMsg->sId = pMsg->sId;
  pMsg->queryId = pMsg->queryId;
  pMsg->taskId = pMsg->taskId;
  pMsg->contentLen = pMsg->contentLen;
L
Liu Jicong 已提交
107
#endif
108

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

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

  qTaskInfo_t pTaskInfo = NULL;
119
  code = qCreateExecTask(streamReadHandle, 0, 0, plan, &pTaskInfo, NULL, OPTR_EXEC_MODEL_STREAM);
120 121 122 123 124 125 126 127
  if (code != TSDB_CODE_SUCCESS) {
    // TODO: destroy SSubplan & pTaskInfo
    terrno = code;
    return NULL;
  }

  return pTaskInfo;
}
128

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
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;
}

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

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

165
  int32_t code = 0;
166
  SStreamBlockScanInfo* pScanInfo = pInfo->info;
167 168
  if (isAdd) {  // add new table id
    SArray* qa = filterQualifiedChildTables(pScanInfo, tableIdList);
169

170 171 172 173 174
    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));
175
    code = tqReadHandleRemoveTbUidList(pScanInfo->streamBlockReader, tableIdList);
176 177
  }

178
  return code;
L
fix  
Liu Jicong 已提交
179
}
180 181 182 183 184 185 186

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

  *sversion = pTaskInfo->schemaVer.sversion;
  *tversion = pTaskInfo->schemaVer.tversion;
187 188 189 190 191 192 193 194 195 196
  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;
  }
197 198 199

  return 0;
}