streamExec.c 9.1 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
  int32_t code;
  void*   exec = pTask->exec.executor;
L
Liu Jicong 已提交
21 22

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

  // exec
  while (1) {
    SSDataBlock* output = NULL;
    uint64_t     ts = 0;
L
Liu Jicong 已提交
53
    if ((code = qExecTask(exec, &output, &ts)) < 0) {
54
      /*tAssert(false);*/
L
Liu Jicong 已提交
55 56
      qError("unexpected stream execution, stream %" PRId64 " task: %d,  since %s", pTask->streamId, pTask->taskId,
             terrstr());
L
Liu Jicong 已提交
57
    }
58
    if (output == NULL) {
5
54liuyao 已提交
59
      if (pItem->type == STREAM_INPUT__DATA_RETRIEVE) {
L
Liu Jicong 已提交
60 61
        SSDataBlock             block = {0};
        const SStreamDataBlock* pRetrieveBlock = (const SStreamDataBlock*)data;
62
        tAssert(taosArrayGetSize(pRetrieveBlock->blocks) == 1);
L
Liu Jicong 已提交
63
        assignOneDataBlock(&block, taosArrayGet(pRetrieveBlock->blocks, 0));
L
Liu Jicong 已提交
64
        block.info.type = STREAM_PULL_OVER;
L
Liu Jicong 已提交
65 66
        block.info.childId = pTask->selfChildId;
        taosArrayPush(pRes, &block);
L
Liu Jicong 已提交
67

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

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

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

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

91
int32_t streamScanExec(SStreamTask* pTask, int32_t batchSz) {
92
  tAssert(pTask->taskLevel == TASK_LEVEL__SOURCE);
93 94 95

  void* exec = pTask->exec.executor;

L
Liu Jicong 已提交
96
  qSetStreamOpOpen(exec);
L
Liu Jicong 已提交
97
  bool finished = false;
L
Liu Jicong 已提交
98

99 100 101 102 103 104 105 106 107 108 109 110
  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) {
111
        tAssert(0);
112
      }
L
Liu Jicong 已提交
113 114 115 116
      if (output == NULL) {
        finished = true;
        break;
      }
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138

      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 已提交
139 140 141 142

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

#if 0
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
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;
164
    }
165
  }
166

167 168 169 170 171
  // if drop
  if (pItem->type == STREAM_INPUT__DESTROY) {
    // set status drop
    return -1;
  }
172

173
  if (pTask->taskLevel == TASK_LEVEL__SINK) {
174
    tAssert(((SStreamQueueItem*)pItem)->type == STREAM_INPUT__DATA_BLOCK);
175
    streamTaskOutput(pTask, (SStreamDataBlock*)pItem);
176 177
  }

178 179 180 181
  // exec impl

  // output
  // try dispatch
182 183
  return 0;
}
184
#endif
L
Liu Jicong 已提交
185

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

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

220
    if (input == NULL) {
L
Liu Jicong 已提交
221 222 223
      break;
    }

224
    if (pTask->taskLevel == TASK_LEVEL__SINK) {
225
      tAssert(((SStreamQueueItem*)input)->type == STREAM_INPUT__DATA_BLOCK);
226
      streamTaskOutput(pTask, input);
L
Liu Jicong 已提交
227
      continue;
L
Liu Jicong 已提交
228
    }
L
Liu Jicong 已提交
229

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

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

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

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

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

L
Liu Jicong 已提交
270 271 272 273 274 275 276 277 278 279
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 已提交
280

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