snode.c 13.1 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 38 39
  tDecoderClear(&decoder);

  int32_t taskId = req.taskId;

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

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

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

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

67 68 69
  pTask->status.schedStatus = TASK_SCHED_STATUS__INACTIVE;
  pTask->inputQueue = streamQueueOpen(512 << 10);
  pTask->outputQueue = streamQueueOpen(512 << 10);
L
Liu Jicong 已提交
70 71 72 73 74 75 76 77

  if (pTask->inputQueue == NULL || pTask->outputQueue == NULL) {
    return -1;
  }

  pTask->inputStatus = TASK_INPUT_STATUS__NORMAL;
  pTask->outputStatus = TASK_OUTPUT_STATUS__NORMAL;
  pTask->pMsgCb = &pSnode->msgCb;
78
  pTask->chkInfo.version = ver;
79
  pTask->pMeta = pSnode->pMeta;
L
Liu Jicong 已提交
80 81 82 83 84 85

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

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

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

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
  code = streamMetaAddDeployedTask(pSnode->pMeta, -1, pTask);
L
Liu Jicong 已提交
162
  if (code < 0) {
163
    taosWUnLockLatch(&pSnode->pMeta->lock);
L
Liu Jicong 已提交
164 165
    return -1;
  }
L
Liu Jicong 已提交
166

167
  int32_t numOfTasks = streamMetaGetNumOfTasks(pSnode->pMeta);
168 169
  taosWUnLockLatch(&pSnode->pMeta->lock);

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

L
Liu Jicong 已提交
174
  return 0;
L
Liu Jicong 已提交
175
}
L
Liu Jicong 已提交
176

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

181
  streamMetaRemoveTask(pSnode->pMeta, pReq->taskId);
L
Liu Jicong 已提交
182
  return 0;
L
Liu Jicong 已提交
183 184
}

L
Liu Jicong 已提交
185
int32_t sndProcessTaskRunReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
186 187
  SStreamTaskRunReq *pReq = pMsg->pCont;
  int32_t            taskId = pReq->taskId;
L
Liu Jicong 已提交
188
  SStreamTask       *pTask = streamMetaAcquireTask(pSnode->pMeta, taskId);
L
Liu Jicong 已提交
189 190
  if (pTask) {
    streamProcessRunReq(pTask);
L
Liu Jicong 已提交
191
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
192 193 194 195
    return 0;
  } else {
    return -1;
  }
L
Liu Jicong 已提交
196 197
}

L
Liu Jicong 已提交
198 199 200 201
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 已提交
202 203
  SStreamDispatchReq req;
  SDecoder           decoder;
L
Liu Jicong 已提交
204
  tDecoderInit(&decoder, (uint8_t *)msgBody, msgLen);
L
Liu Jicong 已提交
205
  tDecodeStreamDispatchReq(&decoder, &req);
L
Liu Jicong 已提交
206 207
  int32_t taskId = req.taskId;

L
Liu Jicong 已提交
208
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, taskId);
L
Liu Jicong 已提交
209
  if (pTask) {
210 211
    SRpcMsg rsp = { .info = pMsg->info, .code = 0 };
    streamProcessDispatchMsg(pTask, &req, &rsp, exec);
L
Liu Jicong 已提交
212
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
213 214 215
    return 0;
  } else {
    return -1;
L
Liu Jicong 已提交
216 217 218
  }
}

L
Liu Jicong 已提交
219
int32_t sndProcessTaskRetrieveReq(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
220 221 222 223 224 225 226
  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 已提交
227
  tDecoderClear(&decoder);
L
Liu Jicong 已提交
228
  int32_t      taskId = req.dstTaskId;
L
Liu Jicong 已提交
229
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, taskId);
H
Haojun Liao 已提交
230

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

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

L
Liu Jicong 已提交
256
int32_t sndProcessTaskRetrieveRsp(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
257 258 259 260
  //
  return 0;
}

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

L
Liu Jicong 已提交
269
    case TDMT_STREAM_TASK_DROP:
270
      return sndProcessTaskDropReq(pSnode, pMsg->pCont, pMsg->contLen);
L
Liu Jicong 已提交
271
    default:
S
shm  
Shengliang Guan 已提交
272
      ASSERT(0);
L
Liu Jicong 已提交
273
  }
L
Liu Jicong 已提交
274
  return 0;
L
Liu Jicong 已提交
275 276
}

L
Liu Jicong 已提交
277 278 279 280 281
int32_t sndProcessTaskRecoverFinishReq(SSnode *pSnode, SRpcMsg *pMsg) {
  char   *msg = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
  int32_t msgLen = pMsg->contLen - sizeof(SMsgHead);

  // deserialize
282
  SStreamScanHistoryFinishReq req;
L
Liu Jicong 已提交
283 284 285

  SDecoder decoder;
  tDecoderInit(&decoder, msg, msgLen);
286
  tDecodeStreamScanHistoryFinishReq(&decoder, &req);
L
Liu Jicong 已提交
287 288 289
  tDecoderClear(&decoder);

  // find task
L
Liu Jicong 已提交
290
  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, req.taskId);
L
Liu Jicong 已提交
291 292 293 294
  if (pTask == NULL) {
    return -1;
  }
  // do process request
295
  if (streamProcessScanHistoryFinishReq(pTask, req.taskId, req.childId) < 0) {
L
Liu Jicong 已提交
296
    streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
297 298 299
    return -1;
  }

L
Liu Jicong 已提交
300
  streamMetaReleaseTask(pSnode->pMeta, pTask);
L
Liu Jicong 已提交
301 302 303 304 305 306 307 308
  return 0;
}

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

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 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 398 399 400 401 402 403 404
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,
  };

  SStreamTask *pTask = streamMetaAcquireTask(pSnode->pMeta, taskId);

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

    qDebug("s-task:%s recv task check req(reqId:0x%" PRIx64 ") task:0x%x (vgId:%d), status:%s, rsp status %d",
            pTask->id.idStr, rsp.reqId, rsp.upstreamTaskId, rsp.upstreamNodeId,
            streamGetTaskStatusStr(pTask->status.taskStatus), rsp.status);
  } 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);

  SStreamTask* pTask = streamMetaAcquireTask(pSnode->pMeta, rsp.upstreamTaskId);
  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 已提交
405
int32_t sndProcessStreamMsg(SSnode *pSnode, SRpcMsg *pMsg) {
L
Liu Jicong 已提交
406 407 408 409
  switch (pMsg->msgType) {
    case TDMT_STREAM_TASK_RUN:
      return sndProcessTaskRunReq(pSnode, pMsg);
    case TDMT_STREAM_TASK_DISPATCH:
L
Liu Jicong 已提交
410
      return sndProcessTaskDispatchReq(pSnode, pMsg, true);
L
Liu Jicong 已提交
411 412
    case TDMT_STREAM_TASK_DISPATCH_RSP:
      return sndProcessTaskDispatchRsp(pSnode, pMsg);
L
Liu Jicong 已提交
413 414
    case TDMT_STREAM_RETRIEVE:
      return sndProcessTaskRetrieveReq(pSnode, pMsg);
L
Liu Jicong 已提交
415
    case TDMT_STREAM_RETRIEVE_RSP:
5
54liuyao 已提交
416
      return sndProcessTaskRetrieveRsp(pSnode, pMsg);
417
    case TDMT_STREAM_SCAN_HISTORY_FINISH:
L
Liu Jicong 已提交
418
      return sndProcessTaskRecoverFinishReq(pSnode, pMsg);
419
    case TDMT_STREAM_SCAN_HISTORY_FINISH_RSP:
L
Liu Jicong 已提交
420
      return sndProcessTaskRecoverFinishRsp(pSnode, pMsg);
421 422 423 424
    case TDMT_STREAM_TASK_CHECK:
      return sndProcessStreamTaskCheckReq(pSnode, pMsg);
    case TDMT_STREAM_TASK_CHECK_RSP:
      return sndProcessStreamTaskCheckRsp(pSnode, pMsg);
L
Liu Jicong 已提交
425 426 427 428
    default:
      ASSERT(0);
  }
  return 0;
L
Liu Jicong 已提交
429
}