streamExec.c 8.9 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

L
Liu Jicong 已提交
16
#include "streamInc.h"
L
Liu Jicong 已提交
17

L
Liu Jicong 已提交
18
static int32_t streamTaskExecImpl(SStreamTask* pTask, const void* data, SArray* pRes) {
L
Liu Jicong 已提交
19 20 21
  void* exec = pTask->exec.executor;

  // set input
L
Liu Jicong 已提交
22
  const SStreamQueueItem* pItem = (const SStreamQueueItem*)data;
L
Liu Jicong 已提交
23
  if (pItem->type == STREAM_INPUT__GET_RES) {
L
Liu Jicong 已提交
24
    const SStreamTrigger* pTrigger = (const SStreamTrigger*)data;
L
Liu Jicong 已提交
25
    qSetMultiStreamInput(exec, pTrigger->pBlock, 1, STREAM_INPUT__DATA_BLOCK);
26
  } else if (pItem->type == STREAM_INPUT__DATA_SUBMIT) {
27
    ASSERT(pTask->taskLevel == TASK_LEVEL__SOURCE);
L
Liu Jicong 已提交
28
    const SStreamDataSubmit* pSubmit = (const SStreamDataSubmit*)data;
J
jiajingbin 已提交
29
    qDebug("task %d %p set submit input %p %p %d 1", pTask->taskId, pTask, pSubmit, pSubmit->data, *pSubmit->dataRef);
L
Liu Jicong 已提交
30
    qSetMultiStreamInput(exec, pSubmit->data, 1, STREAM_INPUT__DATA_SUBMIT);
31
  } else if (pItem->type == STREAM_INPUT__DATA_BLOCK || pItem->type == STREAM_INPUT__DATA_RETRIEVE) {
L
Liu Jicong 已提交
32 33
    const SStreamDataBlock* pBlock = (const SStreamDataBlock*)data;
    SArray*                 blocks = pBlock->blocks;
L
Liu Jicong 已提交
34
    qDebug("task %d %p set ssdata input", pTask->taskId, pTask);
L
Liu Jicong 已提交
35
    qSetMultiStreamInput(exec, blocks->pData, blocks->size, STREAM_INPUT__DATA_BLOCK);
36
  } else if (pItem->type == STREAM_INPUT__MERGED_SUBMIT) {
L
Liu Jicong 已提交
37 38
    const SStreamMergedSubmit* pMerged = (const SStreamMergedSubmit*)data;
    SArray*                    blocks = pMerged->reqs;
L
Liu Jicong 已提交
39
    qDebug("task %d %p set submit input (merged), batch num: %d", pTask->taskId, pTask, (int32_t)blocks->size);
L
Liu Jicong 已提交
40
    qSetMultiStreamInput(exec, blocks->pData, blocks->size, STREAM_INPUT__MERGED_SUBMIT);
L
Liu Jicong 已提交
41 42 43
  } else if (pItem->type == STREAM_INPUT__REF_DATA_BLOCK) {
    const SStreamRefDataBlock* pRefBlock = (const SStreamRefDataBlock*)data;
    qSetMultiStreamInput(exec, pRefBlock->pBlock, 1, STREAM_INPUT__DATA_BLOCK);
44 45
  } else {
    ASSERT(0);
L
Liu Jicong 已提交
46 47 48 49 50 51 52 53 54
  }

  // exec
  while (1) {
    SSDataBlock* output = NULL;
    uint64_t     ts = 0;
    if (qExecTask(exec, &output, &ts) < 0) {
      ASSERT(false);
    }
55
    if (output == NULL) {
5
54liuyao 已提交
56
      if (pItem->type == STREAM_INPUT__DATA_RETRIEVE) {
L
Liu Jicong 已提交
57 58
        SSDataBlock             block = {0};
        const SStreamDataBlock* pRetrieveBlock = (const SStreamDataBlock*)data;
5
54liuyao 已提交
59
        ASSERT(taosArrayGetSize(pRetrieveBlock->blocks) == 1);
L
Liu Jicong 已提交
60
        assignOneDataBlock(&block, taosArrayGet(pRetrieveBlock->blocks, 0));
L
Liu Jicong 已提交
61
        block.info.type = STREAM_PULL_OVER;
L
Liu Jicong 已提交
62 63
        block.info.childId = pTask->selfChildId;
        taosArrayPush(pRes, &block);
L
Liu Jicong 已提交
64

S
Shengliang Guan 已提交
65
        qDebug("task %d(child %d) processed retrieve, reqId %" PRId64, pTask->taskId, pTask->selfChildId,
L
Liu Jicong 已提交
66
               pRetrieveBlock->reqId);
67 68 69
      }
      break;
    }
L
Liu Jicong 已提交
70 71 72 73 74 75 76 77

    if (output->info.type == STREAM_RETRIEVE) {
      if (streamBroadcastToChildren(pTask, output) < 0) {
        // TODO
      }
      continue;
    }

78
    qDebug("task %d(child %d) executed and get block", pTask->taskId, pTask->selfChildId);
J
jiajingbin 已提交
79

L
Liu Jicong 已提交
80 81 82 83
    SSDataBlock block = {0};
    assignOneDataBlock(&block, output);
    block.info.childId = pTask->selfChildId;
    taosArrayPush(pRes, &block);
L
Liu Jicong 已提交
84 85 86 87
  }
  return 0;
}

88 89 90 91 92
int32_t streamScanExec(SStreamTask* pTask, int32_t batchSz) {
  ASSERT(pTask->taskLevel == TASK_LEVEL__SOURCE);

  void* exec = pTask->exec.executor;

L
Liu Jicong 已提交
93
  qSetStreamOpOpen(exec);
L
Liu Jicong 已提交
94
  bool finished = false;
L
Liu Jicong 已提交
95

96 97 98 99 100 101 102 103 104 105 106 107 108 109
  while (1) {
    SArray* pRes = taosArrayInit(0, sizeof(SSDataBlock));
    if (pRes == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return -1;
    }

    int32_t batchCnt = 0;
    while (1) {
      SSDataBlock* output = NULL;
      uint64_t     ts = 0;
      if (qExecTask(exec, &output, &ts) < 0) {
        ASSERT(0);
      }
L
Liu Jicong 已提交
110 111 112 113
      if (output == NULL) {
        finished = true;
        break;
      }
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

      SSDataBlock block = {0};
      assignOneDataBlock(&block, output);
      block.info.childId = pTask->selfChildId;
      taosArrayPush(pRes, &block);

      if (++batchCnt >= batchSz) break;
    }
    if (taosArrayGetSize(pRes) == 0) {
      taosArrayDestroy(pRes);
      break;
    }
    SStreamDataBlock* qRes = taosAllocateQitem(sizeof(SStreamDataBlock), DEF_QITEM);
    if (qRes == NULL) {
      taosArrayDestroyEx(pRes, (FDelete)blockDataFreeRes);
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return -1;
    }

    qRes->type = STREAM_INPUT__DATA_BLOCK;
    qRes->blocks = pRes;
    streamTaskOutput(pTask, qRes);
L
Liu Jicong 已提交
136 137 138 139

    if (pTask->outputType == TASK_OUTPUT__FIXED_DISPATCH || pTask->outputType == TASK_OUTPUT__SHUFFLE_DISPATCH) {
      streamDispatch(pTask);
    }
L
Liu Jicong 已提交
140
    if (finished) break;
141 142 143 144 145
  }
  return 0;
}

#if 0
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
int32_t streamBatchExec(SStreamTask* pTask, int32_t batchLimit) {
  // fetch all queue item, merge according to batchLimit
  int32_t numOfItems = taosReadAllQitems(pTask->inputQueue1, pTask->inputQall);
  if (numOfItems == 0) {
    qDebug("task: %d, stream task exec over, queue empty", pTask->taskId);
    return 0;
  }
  SStreamQueueItem* pMerged = NULL;
  SStreamQueueItem* pItem = NULL;
  taosGetQitem(pTask->inputQall, (void**)&pItem);
  if (pItem == NULL) {
    if (pMerged != NULL) {
      // process merged item
    } else {
      return 0;
161
    }
162
  }
163

164 165 166 167 168
  // if drop
  if (pItem->type == STREAM_INPUT__DESTROY) {
    // set status drop
    return -1;
  }
169

170 171 172
  if (pTask->taskLevel == TASK_LEVEL__SINK) {
    ASSERT(((SStreamQueueItem*)pItem)->type == STREAM_INPUT__DATA_BLOCK);
    streamTaskOutput(pTask, (SStreamDataBlock*)pItem);
173 174
  }

175 176 177 178
  // exec impl

  // output
  // try dispatch
179 180
  return 0;
}
181
#endif
L
Liu Jicong 已提交
182

L
Liu Jicong 已提交
183
int32_t streamExecForAll(SStreamTask* pTask) {
L
Liu Jicong 已提交
184
  while (1) {
L
Liu Jicong 已提交
185
    int32_t batchCnt = 1;
186
    void*   input = NULL;
L
Liu Jicong 已提交
187 188 189
    while (1) {
      SStreamQueueItem* qItem = streamQueueNextItem(pTask->inputQueue);
      if (qItem == NULL) {
L
Liu Jicong 已提交
190
        qDebug("stream task exec over, queue empty, task: %d", pTask->taskId);
L
Liu Jicong 已提交
191
        break;
L
Liu Jicong 已提交
192
      }
193 194
      if (input == NULL) {
        input = qItem;
195
        streamQueueProcessSuccess(pTask->inputQueue);
196
        if (pTask->taskLevel == TASK_LEVEL__SINK) {
L
Liu Jicong 已提交
197
          break;
L
Liu Jicong 已提交
198
        }
L
Liu Jicong 已提交
199
      } else {
J
jiacy-jcy 已提交
200
        void* newRet;
201
        if ((newRet = streamMergeQueueItem(input, qItem)) == NULL) {
L
Liu Jicong 已提交
202 203 204
          streamQueueProcessFail(pTask->inputQueue);
          break;
        } else {
L
Liu Jicong 已提交
205
          batchCnt++;
206
          input = newRet;
L
Liu Jicong 已提交
207 208
          streamQueueProcessSuccess(pTask->inputQueue);
        }
L
Liu Jicong 已提交
209 210
      }
    }
211

L
Liu Jicong 已提交
212
    if (pTask->taskStatus == TASK_STATUS__DROPPING) {
213
      if (input) streamFreeQitem(input);
L
Liu Jicong 已提交
214
      return 0;
L
Liu Jicong 已提交
215
    }
L
Liu Jicong 已提交
216

217
    if (input == NULL) {
L
Liu Jicong 已提交
218 219 220
      break;
    }

221
    if (pTask->taskLevel == TASK_LEVEL__SINK) {
222 223
      ASSERT(((SStreamQueueItem*)input)->type == STREAM_INPUT__DATA_BLOCK);
      streamTaskOutput(pTask, input);
L
Liu Jicong 已提交
224
      continue;
L
Liu Jicong 已提交
225
    }
L
Liu Jicong 已提交
226

L
Liu Jicong 已提交
227 228
    SArray* pRes = taosArrayInit(0, sizeof(SSDataBlock));

L
Liu Jicong 已提交
229
    qDebug("stream task %d exec begin, msg batch: %d", pTask->taskId, batchCnt);
230
    streamTaskExecImpl(pTask, input, pRes);
L
Liu Jicong 已提交
231
    qDebug("stream task %d exec end", pTask->taskId);
232

L
Liu Jicong 已提交
233 234 235
    if (taosArrayGetSize(pRes) != 0) {
      SStreamDataBlock* qRes = taosAllocateQitem(sizeof(SStreamDataBlock), DEF_QITEM);
      if (qRes == NULL) {
L
Liu Jicong 已提交
236
        taosArrayDestroyEx(pRes, (FDelete)blockDataFreeRes);
237
        streamFreeQitem(input);
L
Liu Jicong 已提交
238
        return -1;
L
Liu Jicong 已提交
239 240 241
      }
      qRes->type = STREAM_INPUT__DATA_BLOCK;
      qRes->blocks = pRes;
L
Liu Jicong 已提交
242

243 244
      if (((SStreamQueueItem*)input)->type == STREAM_INPUT__DATA_SUBMIT) {
        SStreamDataSubmit* pSubmit = (SStreamDataSubmit*)input;
L
Liu Jicong 已提交
245 246
        qRes->childId = pTask->selfChildId;
        qRes->sourceVer = pSubmit->ver;
247 248
      } else if (((SStreamQueueItem*)input)->type == STREAM_INPUT__MERGED_SUBMIT) {
        SStreamMergedSubmit* pMerged = (SStreamMergedSubmit*)input;
L
Liu Jicong 已提交
249 250
        qRes->childId = pTask->selfChildId;
        qRes->sourceVer = pMerged->ver;
L
Liu Jicong 已提交
251
      }
L
Liu Jicong 已提交
252 253 254

      if (streamTaskOutput(pTask, qRes) < 0) {
        taosArrayDestroyEx(pRes, (FDelete)blockDataFreeRes);
255
        streamFreeQitem(input);
L
Liu Jicong 已提交
256
        taosFreeQitem(qRes);
L
Liu Jicong 已提交
257 258
        return -1;
      }
L
Liu Jicong 已提交
259 260
    } else {
      taosArrayDestroy(pRes);
L
Liu Jicong 已提交
261
    }
262
    streamFreeQitem(input);
L
Liu Jicong 已提交
263
  }
L
Liu Jicong 已提交
264
  return 0;
L
Liu Jicong 已提交
265 266
}

L
Liu Jicong 已提交
267 268 269 270 271 272 273 274 275 276
int32_t streamTryExec(SStreamTask* pTask) {
  int8_t schedStatus =
      atomic_val_compare_exchange_8(&pTask->schedStatus, TASK_SCHED_STATUS__WAITING, TASK_SCHED_STATUS__ACTIVE);
  if (schedStatus == TASK_SCHED_STATUS__WAITING) {
    int32_t code = streamExecForAll(pTask);
    if (code < 0) {
      atomic_store_8(&pTask->schedStatus, TASK_SCHED_STATUS__FAILED);
      return -1;
    }
    atomic_store_8(&pTask->schedStatus, TASK_SCHED_STATUS__INACTIVE);
L
Liu Jicong 已提交
277

L
Liu Jicong 已提交
278 279
    if (!taosQueueEmpty(pTask->inputQueue->queue)) {
      streamSchedExec(pTask);
L
Liu Jicong 已提交
280 281
    }
  }
L
Liu Jicong 已提交
282
  return 0;
L
Liu Jicong 已提交
283
}