snode.c 13.6 KB
Newer Older
H
refact  
Hongze Cheng 已提交
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 "executor.h"
S
Shengliang Guan 已提交
17
#include "sndInt.h"
L
Liu Jicong 已提交
18
#include "tstream.h"
L
Liu Jicong 已提交
19
#include "tuuid.h"
L
Liu Jicong 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

void sndEnqueueStreamDispatch(SSnode *pSnode, SRpcMsg *pMsg) {
  char   *msgStr = pMsg->pCont;
  char   *msgBody = POINTER_SHIFT(msgStr, sizeof(SMsgHead));
  int32_t msgLen = pMsg->contLen - sizeof(SMsgHead);
  int32_t code = 0;

  SStreamDispatchReq req;
  SDecoder           decoder;
  tDecoderInit(&decoder, msgBody, msgLen);
  if (tDecodeStreamDispatchReq(&decoder, &req) < 0) {
    code = TSDB_CODE_MSG_DECODE_ERROR;
    tDecoderClear(&decoder);
    goto FAIL;
  }
35

L
Liu Jicong 已提交
36 37
  tDecoderClear(&decoder);

38
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.streamId, req.taskId);
L
Liu Jicong 已提交
39 40 41 42 43
  if (pTask) {
    SRpcMsg rsp = {
        .info = pMsg->info,
        .code = 0,
    };
44
    streamProcessDispatchMsg(pTask, &req, &rsp, false);
L
Liu Jicong 已提交
45
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
46 47 48 49 50 51 52
    rpcFreeCont(pMsg->pCont);
    taosFreeQitem(pMsg);
    return;
  }

FAIL:
  if (pMsg->info.handle == NULL) return;
53
  SRpcMsg rsp = { .code = code, .info = pMsg->info};
L
Liu Jicong 已提交
54 55 56 57 58 59
  tmsgSendRsp(&rsp);
  rpcFreeCont(pMsg->pCont);
  taosFreeQitem(pMsg);
}

int32_t sndExpandTask(SSnode *pSnode, SStreamTask *pTask, int64_t ver) {
60
  ASSERT(pTask->info.taskLevel == TASK_LEVEL__AGG && taosArrayGetSize(pTask->pUpstreamEpInfoList) != 0);
L
Liu Jicong 已提交
61

L
Liu Jicong 已提交
62
  pTask->refCnt = 1;
63
  pTask->id.idStr = createStreamTaskIdStr(pTask->id.streamId, pTask->id.taskId);
dengyihao's avatar
dengyihao 已提交
64

65 66
  pTask->status.schedStatus = TASK_SCHED_STATUS__INACTIVE;
  pTask->inputQueue = streamQueueOpen(512 << 10);
67
  pTask->outputInfo.queue = streamQueueOpen(512 << 10);
L
Liu Jicong 已提交
68

69
  if (pTask->inputQueue == NULL || pTask->outputInfo.queue == NULL) {
L
Liu Jicong 已提交
70 71 72
    return -1;
  }

H
Haojun Liao 已提交
73
  pTask->tsInfo.init = taosGetTimestampMs();
L
Liu Jicong 已提交
74
  pTask->inputStatus = TASK_INPUT_STATUS__NORMAL;
75
  pTask->outputInfo.status = TASK_OUTPUT_STATUS__NORMAL;
L
Liu Jicong 已提交
76
  pTask->pMsgCb = &pSnode->msgCb;
77
  pTask->chkInfo.version = ver;
78
  pTask->pMeta = pSnode->pMeta;
L
Liu Jicong 已提交
79 80 81 82 83 84

  pTask->pState = streamStateOpen(pSnode->path, pTask, false, -1, -1);
  if (pTask->pState == NULL) {
    return -1;
  }

85
  int32_t numOfChildEp = taosArrayGetSize(pTask->pUpstreamEpInfoList);
L
liuyao 已提交
86
  SReadHandle handle = { .vnode = NULL, .numOfVgroups = numOfChildEp, .pStateBackend = pTask->pState, .fillHistory = pTask->info.fillHistory };
H
Haojun Liao 已提交
87
  initStreamStateAPI(&handle.api);
D
dapan1121 已提交
88

89
  pTask->exec.pExecutor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, &handle, 0, pTask->id.taskId);
90
  ASSERT(pTask->exec.pExecutor);
L
Liu Jicong 已提交
91

H
Haojun Liao 已提交
92
  taosThreadMutexInit(&pTask->lock, NULL);
93
  streamSetupScheduleTrigger(pTask);
94 95 96 97

  qDebug("snode:%d expand stream task on snode, s-task:%s, checkpoint ver:%" PRId64 " child id:%d, level:%d", SNODE_HANDLE,
         pTask->id.idStr, pTask->chkInfo.version, pTask->info.selfChildId, pTask->info.taskLevel);

L
Liu Jicong 已提交
98 99
  return 0;
}
H
refact  
Hongze Cheng 已提交
100

S
Shengliang Guan 已提交
101
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
wafwerar's avatar
wafwerar 已提交
102
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
L
Liu Jicong 已提交
103
  if (pSnode == NULL) {
L
Liu Jicong 已提交
104
    terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
105 106
    return NULL;
  }
107
  pSnode->path = taosStrdup(path);
L
Liu Jicong 已提交
108 109 110 111
  if (pSnode->path == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto FAIL;
  }
S
Shengliang Guan 已提交
112
  pSnode->msgCb = pOption->msgCb;
L
Liu Jicong 已提交
113 114

  pSnode->pMeta = streamMetaOpen(path, pSnode, (FTaskExpand *)sndExpandTask, SNODE_HANDLE);
L
Liu Jicong 已提交
115
  if (pSnode->pMeta == NULL) {
L
Liu Jicong 已提交
116 117
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto FAIL;
L
Liu Jicong 已提交
118
  }
L
Liu Jicong 已提交
119

S
Shengliang Guan 已提交
120
  return pSnode;
L
Liu Jicong 已提交
121 122 123 124 125

FAIL:
  taosMemoryFree(pSnode->path);
  taosMemoryFree(pSnode);
  return NULL;
H
refact  
Hongze Cheng 已提交
126 127
}

L
Liu Jicong 已提交
128
void sndClose(SSnode *pSnode) {
129
  streamMetaCommit(pSnode->pMeta);
L
Liu Jicong 已提交
130 131
  streamMetaClose(pSnode->pMeta);
  taosMemoryFree(pSnode->path);
wafwerar's avatar
wafwerar 已提交
132
  taosMemoryFree(pSnode);
L
Liu Jicong 已提交
133
}
S
Shengliang Guan 已提交
134 135 136

int32_t sndGetLoad(SSnode *pSnode, SSnodeLoad *pLoad) { return 0; }

L
Liu Jicong 已提交
137 138
int32_t sndProcessTaskDeployReq(SSnode *pSnode, char *msg, int32_t msgLen) {
  int32_t code;
L
Liu Jicong 已提交
139

L
Liu Jicong 已提交
140
  // 1.deserialize msg and build task
L
Liu Jicong 已提交
141 142 143 144
  SStreamTask *pTask = taosMemoryCalloc(1, sizeof(SStreamTask));
  if (pTask == NULL) {
    return -1;
  }
145

L
Liu Jicong 已提交
146 147
  SDecoder decoder;
  tDecoderInit(&decoder, (uint8_t *)msg, msgLen);
148
  code = tDecodeStreamTask(&decoder, pTask);
L
Liu Jicong 已提交
149 150 151 152
  if (code < 0) {
    tDecoderClear(&decoder);
    taosMemoryFree(pTask);
    return -1;
L
Liu Jicong 已提交
153
  }
154

L
Liu Jicong 已提交
155 156
  tDecoderClear(&decoder);

157
  ASSERT(pTask->info.taskLevel == TASK_LEVEL__AGG);
L
Liu Jicong 已提交
158

L
Liu Jicong 已提交
159
  // 2.save task
160
  taosWLockLatch(&pSnode->pMeta->lock);
161 162 163

  bool added = false;
  code = streamMetaRegisterTask(pSnode->pMeta, -1, pTask, &added);
L
Liu Jicong 已提交
164
  if (code < 0) {
165
    taosWUnLockLatch(&pSnode->pMeta->lock);
L
Liu Jicong 已提交
166 167
    return -1;
  }
L
Liu Jicong 已提交
168

169
  int32_t numOfTasks = streamMetaGetNumOfTasks(pSnode->pMeta);
170
  taosWUnLockLatch(&pSnode->pMeta->lock);
171
  qDebug("snode:%d s-task:%s is deployed on snode and add into meta, status:%s, numOfTasks:%d", SNODE_HANDLE, pTask->id.idStr,
172
         streamGetTaskStatusStr(pTask->status.taskStatus), numOfTasks);
L
Liu Jicong 已提交
173

174
  streamTaskCheckDownstreamTasks(pTask);
L
Liu Jicong 已提交
175
  return 0;
L
Liu Jicong 已提交
176
}
L
Liu Jicong 已提交
177

L
Liu Jicong 已提交
178 179
int32_t sndProcessTaskDropReq(SSnode *pSnode, char *msg, int32_t msgLen) {
  SVDropStreamTaskReq *pReq = (SVDropStreamTaskReq *)msg;
180 181
  qDebug("snode:%d receive msg to drop stream task:0x%x", pSnode->pMeta->vgId, pReq->taskId);

182
  SStreamTask* pTask = streamMetaAcquireTask(pSnode->pMeta, pReq->streamId, pReq->taskId);
183 184 185 186 187
  if (pTask == NULL) {
    qError("vgId:%d failed to acquire s-task:0x%x when dropping it", pSnode->pMeta->vgId, pReq->taskId);
    return 0;
  }

H
Haojun Liao 已提交
188
  streamMetaUnregisterTask(pSnode->pMeta, pReq->streamId, pReq->taskId);
189
  streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
190
  return 0;
L
Liu Jicong 已提交
191 192
}

L
Liu Jicong 已提交
193
int32_t sndProcessTaskRunReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
194
  SStreamTaskRunReq *pReq = pMsg->pCont;
195
  SStreamTask       *pTask = streamMetaAcquireTask(pSnode->pMeta, pReq->streamId, pReq->taskId);
L
Liu Jicong 已提交
196 197
  if (pTask) {
    streamProcessRunReq(pTask);
L
Liu Jicong 已提交
198
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
199 200 201 202
    return 0;
  } else {
    return -1;
  }
L
Liu Jicong 已提交
203 204
}

L
Liu Jicong 已提交
205 206 207 208
int32_t sndProcessTaskDispatchReq(SSnode *pSnode, SRpcMsg *pMsg, bool exec) {
  char              *msgStr = pMsg->pCont;
  char              *msgBody = POINTER_SHIFT(msgStr, sizeof(SMsgHead));
  int32_t            msgLen = pMsg->contLen - sizeof(SMsgHead);
L
Liu Jicong 已提交
209 210
  SStreamDispatchReq req;
  SDecoder           decoder;
L
Liu Jicong 已提交
211
  tDecoderInit(&decoder, (uint8_t *)msgBody, msgLen);
L
Liu Jicong 已提交
212
  tDecodeStreamDispatchReq(&decoder, &req);
L
Liu Jicong 已提交
213

214
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.streamId, req.taskId);
L
Liu Jicong 已提交
215
  if (pTask) {
216 217
    SRpcMsg rsp = { .info = pMsg->info, .code = 0 };
    streamProcessDispatchMsg(pTask, &req, &rsp, exec);
L
Liu Jicong 已提交
218
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
219 220 221
    return 0;
  } else {
    return -1;
L
Liu Jicong 已提交
222 223 224
  }
}

L
Liu Jicong 已提交
225
int32_t sndProcessTaskRetrieveReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
226 227 228 229 230 231 232
  char              *msgStr = pMsg->pCont;
  char              *msgBody = POINTER_SHIFT(msgStr, sizeof(SMsgHead));
  int32_t            msgLen = pMsg->contLen - sizeof(SMsgHead);
  SStreamRetrieveReq req;
  SDecoder           decoder;
  tDecoderInit(&decoder, msgBody, msgLen);
  tDecodeStreamRetrieveReq(&decoder, &req);
L
Liu Jicong 已提交
233
  tDecoderClear(&decoder);
234
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.streamId, req.dstTaskId);
H
Haojun Liao 已提交
235

L
Liu Jicong 已提交
236
  if (pTask) {
H
Haojun Liao 已提交
237
    SRpcMsg rsp = { .info = pMsg->info, .code = 0};
L
Liu Jicong 已提交
238
    streamProcessRetrieveReq(pTask, &req, &rsp);
L
Liu Jicong 已提交
239
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
240
    tDeleteStreamRetrieveReq(&req);
L
Liu Jicong 已提交
241
    return 0;
L
Liu Jicong 已提交
242 243 244 245 246 247 248
  } else {
    return -1;
  }
}

int32_t sndProcessTaskDispatchRsp(SSnode *pSnode, SRpcMsg *pMsg) {
  SStreamDispatchRsp *pRsp = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
L
Liu Jicong 已提交
249
  int32_t             taskId = ntohl(pRsp->upstreamTaskId);
250
  SStreamTask        *pTask = streamMetaAcquireTask(pSnode->pMeta, pRsp->streamId, taskId);
L
Liu Jicong 已提交
251
  if (pTask) {
252
    streamProcessDispatchRsp(pTask, pRsp, pMsg->code);
L
Liu Jicong 已提交
253
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
254 255 256
    return 0;
  } else {
    return -1;
L
Liu Jicong 已提交
257 258 259 260
  }
  return 0;
}

L
Liu Jicong 已提交
261
int32_t sndProcessTaskRetrieveRsp(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
262 263 264 265
  //
  return 0;
}

L
Liu Jicong 已提交
266
int32_t sndProcessWriteMsg(SSnode *pSnode, SRpcMsg *pMsg, SRpcMsg *pRsp) {
L
Liu Jicong 已提交
267
  switch (pMsg->msgType) {
268 269 270
    case TDMT_STREAM_TASK_DEPLOY: {
      void   *pReq = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
      int32_t len = pMsg->contLen - sizeof(SMsgHead);
L
Liu Jicong 已提交
271
      return sndProcessTaskDeployReq(pSnode, pReq, len);
272 273
    }

L
Liu Jicong 已提交
274
    case TDMT_STREAM_TASK_DROP:
275
      return sndProcessTaskDropReq(pSnode, pMsg->pCont, pMsg->contLen);
L
Liu Jicong 已提交
276
    default:
S
shm  
Shengliang Guan 已提交
277
      ASSERT(0);
L
Liu Jicong 已提交
278
  }
L
Liu Jicong 已提交
279
  return 0;
L
Liu Jicong 已提交
280 281
}

282
int32_t sndProcessStreamTaskScanHistoryFinishReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
283 284 285 286
  char   *msg = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
  int32_t msgLen = pMsg->contLen - sizeof(SMsgHead);

  // deserialize
287
  SStreamScanHistoryFinishReq req;
L
Liu Jicong 已提交
288 289 290

  SDecoder decoder;
  tDecoderInit(&decoder, msg, msgLen);
291
  tDecodeStreamScanHistoryFinishReq(&decoder, &req);
L
Liu Jicong 已提交
292 293 294
  tDecoderClear(&decoder);

  // find task
295
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.streamId, req.downstreamTaskId);
L
Liu Jicong 已提交
296 297 298 299
  if (pTask == NULL) {
    return -1;
  }
  // do process request
300
  if (streamProcessScanHistoryFinishReq(pTask, &req, &pMsg->info) < 0) {
L
Liu Jicong 已提交
301
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
302 303 304
    return -1;
  }

L
Liu Jicong 已提交
305
  streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
306 307 308 309 310 311 312 313
  return 0;
}

int32_t sndProcessTaskRecoverFinishRsp(SSnode *pSnode, SRpcMsg *pMsg) {
  //
  return 0;
}

314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
int32_t sndProcessStreamTaskCheckReq(SSnode *pSnode, SRpcMsg *pMsg) {
  char   *msgStr = pMsg->pCont;
  char   *msgBody = POINTER_SHIFT(msgStr, sizeof(SMsgHead));
  int32_t msgLen = pMsg->contLen - sizeof(SMsgHead);

  SStreamTaskCheckReq req;
  SDecoder            decoder;

  tDecoderInit(&decoder, (uint8_t *)msgBody, msgLen);
  tDecodeStreamTaskCheckReq(&decoder, &req);
  tDecoderClear(&decoder);

  int32_t taskId = req.downstreamTaskId;

  SStreamTaskCheckRsp rsp = {
      .reqId = req.reqId,
      .streamId = req.streamId,
      .childId = req.childId,
      .downstreamNodeId = req.downstreamNodeId,
      .downstreamTaskId = req.downstreamTaskId,
      .upstreamNodeId = req.upstreamNodeId,
      .upstreamTaskId = req.upstreamTaskId,
  };

338
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.streamId, taskId);
339 340 341 342 343

  if (pTask != NULL) {
    rsp.status = streamTaskCheckStatus(pTask);
    streamMetaReleaseTask(pSnode->pMeta, pTask);

344 345 346
    const char* pStatus = streamGetTaskStatusStr(pTask->status.taskStatus);
    qDebug("s-task:%s status:%s, recv task check req(reqId:0x%" PRIx64 ") task:0x%x (vgId:%d), ready:%d",
            pTask->id.idStr, pStatus, rsp.reqId, rsp.upstreamTaskId, rsp.upstreamNodeId, rsp.status);
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
  } else {
    rsp.status = 0;
    qDebug("tq recv task check(taskId:0x%x not built yet) req(reqId:0x%" PRIx64
            ") from task:0x%x (vgId:%d), rsp status %d",
            taskId, rsp.reqId, rsp.upstreamTaskId, rsp.upstreamNodeId, rsp.status);
  }

  SEncoder encoder;
  int32_t  code;
  int32_t  len;

  tEncodeSize(tEncodeStreamTaskCheckRsp, &rsp, len, code);
  if (code < 0) {
    qError("vgId:%d failed to encode task check rsp, task:0x%x", pSnode->pMeta->vgId, taskId);
    return -1;
  }

  void *buf = rpcMallocCont(sizeof(SMsgHead) + len);
  ((SMsgHead *)buf)->vgId = htonl(req.upstreamNodeId);

  void *abuf = POINTER_SHIFT(buf, sizeof(SMsgHead));
  tEncoderInit(&encoder, (uint8_t *)abuf, len);
  tEncodeStreamTaskCheckRsp(&encoder, &rsp);
  tEncoderClear(&encoder);

  SRpcMsg rspMsg = {.code = 0, .pCont = buf, .contLen = sizeof(SMsgHead) + len, .info = pMsg->info};

  tmsgSendRsp(&rspMsg);
  return 0;
}

int32_t sndProcessStreamTaskCheckRsp(SSnode* pSnode, SRpcMsg* pMsg) {
  char* pReq = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
  int32_t len = pMsg->contLen - sizeof(SMsgHead);

  int32_t             code;
  SStreamTaskCheckRsp rsp;

  SDecoder decoder;
  tDecoderInit(&decoder, (uint8_t*)pReq, len);
  code = tDecodeStreamTaskCheckRsp(&decoder, &rsp);

  if (code < 0) {
    tDecoderClear(&decoder);
    return -1;
  }

  tDecoderClear(&decoder);
  qDebug("tq task:0x%x (vgId:%d) recv check rsp(reqId:0x%" PRIx64 ") from 0x%x (vgId:%d) status %d",
          rsp.upstreamTaskId, rsp.upstreamNodeId, rsp.reqId, rsp.downstreamTaskId, rsp.downstreamNodeId, rsp.status);

398
  SStreamTask* pTask = streamMetaAcquireTask(pSnode->pMeta, rsp.streamId, rsp.upstreamTaskId);
399 400 401 402 403 404 405 406 407 408 409
  if (pTask == NULL) {
    qError("tq failed to locate the stream task:0x%x (vgId:%d), it may have been destroyed", rsp.upstreamTaskId,
            pSnode->pMeta->vgId);
    return -1;
  }

  code = streamProcessCheckRsp(pTask, &rsp);
  streamMetaReleaseTask(pSnode->pMeta, pTask);
  return code;
}

L
Liu Jicong 已提交
410
int32_t sndProcessStreamMsg(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
411 412 413 414
  switch (pMsg->msgType) {
    case TDMT_STREAM_TASK_RUN:
      return sndProcessTaskRunReq(pSnode, pMsg);
    case TDMT_STREAM_TASK_DISPATCH:
L
Liu Jicong 已提交
415
      return sndProcessTaskDispatchReq(pSnode, pMsg, true);
L
Liu Jicong 已提交
416 417
    case TDMT_STREAM_TASK_DISPATCH_RSP:
      return sndProcessTaskDispatchRsp(pSnode, pMsg);
L
Liu Jicong 已提交
418 419
    case TDMT_STREAM_RETRIEVE:
      return sndProcessTaskRetrieveReq(pSnode, pMsg);
L
Liu Jicong 已提交
420
    case TDMT_STREAM_RETRIEVE_RSP:
5
54liuyao 已提交
421
      return sndProcessTaskRetrieveRsp(pSnode, pMsg);
422
    case TDMT_STREAM_SCAN_HISTORY_FINISH:
423
      return sndProcessStreamTaskScanHistoryFinishReq(pSnode, pMsg);
424
    case TDMT_STREAM_SCAN_HISTORY_FINISH_RSP:
L
Liu Jicong 已提交
425
      return sndProcessTaskRecoverFinishRsp(pSnode, pMsg);
426 427 428 429
    case TDMT_STREAM_TASK_CHECK:
      return sndProcessStreamTaskCheckReq(pSnode, pMsg);
    case TDMT_STREAM_TASK_CHECK_RSP:
      return sndProcessStreamTaskCheckRsp(pSnode, pMsg);
L
Liu Jicong 已提交
430 431 432 433
    default:
      ASSERT(0);
  }
  return 0;
L
Liu Jicong 已提交
434
}