tq.c 25.3 KB
Newer Older
H
refact  
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/>.
S
Shengliang Guan 已提交
14 15
 */

H
Hongze Cheng 已提交
16
#include "tq.h"
S
Shengliang Guan 已提交
17

L
Liu Jicong 已提交
18
int32_t tqInit() {
L
Liu Jicong 已提交
19 20 21 22 23 24
  int8_t old;
  while (1) {
    old = atomic_val_compare_exchange_8(&tqMgmt.inited, 0, 2);
    if (old != 2) break;
  }

25 26 27 28 29 30
  if (old == 0) {
    tqMgmt.timer = taosTmrInit(10000, 100, 10000, "TQ");
    if (tqMgmt.timer == NULL) {
      atomic_store_8(&tqMgmt.inited, 0);
      return -1;
    }
31 32 33
    if (streamInit() < 0) {
      return -1;
    }
L
Liu Jicong 已提交
34
    atomic_store_8(&tqMgmt.inited, 1);
35
  }
36

L
Liu Jicong 已提交
37 38
  return 0;
}
L
Liu Jicong 已提交
39

40
void tqCleanUp() {
L
Liu Jicong 已提交
41 42 43 44 45 46 47 48
  int8_t old;
  while (1) {
    old = atomic_val_compare_exchange_8(&tqMgmt.inited, 1, 2);
    if (old != 2) break;
  }

  if (old == 1) {
    taosTmrCleanUp(tqMgmt.timer);
L
Liu Jicong 已提交
49
    streamCleanUp();
L
Liu Jicong 已提交
50 51
    atomic_store_8(&tqMgmt.inited, 0);
  }
52
}
L
Liu Jicong 已提交
53

L
Liu Jicong 已提交
54
STQ* tqOpen(const char* path, SVnode* pVnode, SWal* pWal) {
55
  STQ* pTq = taosMemoryCalloc(1, sizeof(STQ));
L
Liu Jicong 已提交
56
  if (pTq == NULL) {
L
Liu Jicong 已提交
57
    terrno = TSDB_CODE_TQ_OUT_OF_MEMORY;
L
Liu Jicong 已提交
58 59
    return NULL;
  }
H
Hongze Cheng 已提交
60
  pTq->path = strdup(path);
L
Liu Jicong 已提交
61
  pTq->pVnode = pVnode;
L
Liu Jicong 已提交
62
  pTq->pWal = pWal;
63

L
Liu Jicong 已提交
64
  pTq->handles = taosHashInit(64, MurmurHash3_32, true, HASH_ENTRY_LOCK);
L
Liu Jicong 已提交
65

L
Liu Jicong 已提交
66 67
  pTq->pStreamTasks = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);

L
Liu Jicong 已提交
68 69
  pTq->pushMgr = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), true, HASH_ENTRY_LOCK);

L
Liu Jicong 已提交
70
  if (tqMetaOpen(pTq) < 0) {
71 72 73
    ASSERT(0);
  }

74 75 76 77
  if (tqOffsetOpen(pTq) < 0) {
    ASSERT(0);
  }

L
Liu Jicong 已提交
78 79
  return pTq;
}
L
Liu Jicong 已提交
80

L
Liu Jicong 已提交
81
void tqClose(STQ* pTq) {
H
Hongze Cheng 已提交
82
  if (pTq) {
83
    tqOffsetClose(pTq->pOffsetStore);
L
Liu Jicong 已提交
84
    taosHashCleanup(pTq->handles);
85 86 87 88 89 90 91
    void* pIter = NULL;
    while (1) {
      pIter = taosHashIterate(pTq->pStreamTasks, pIter);
      if (pIter == NULL) break;
      SStreamTask* pTask = *(SStreamTask**)pIter;
      tFreeSStreamTask(pTask);
    }
L
Liu Jicong 已提交
92 93
    taosHashCleanup(pTq->pStreamTasks);
    taosHashCleanup(pTq->pushMgr);
94
    taosMemoryFree(pTq->path);
L
Liu Jicong 已提交
95
    tqMetaClose(pTq);
wafwerar's avatar
wafwerar 已提交
96
    taosMemoryFree(pTq);
H
Hongze Cheng 已提交
97
  }
L
Liu Jicong 已提交
98
}
L
Liu Jicong 已提交
99

L
Liu Jicong 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
int32_t tqSendMetaPollRsp(STQ* pTq, const SRpcMsg* pMsg, const SMqPollReq* pReq, const SMqMetaRsp* pRsp) {
  int32_t tlen = sizeof(SMqRspHead) + tEncodeSMqMetaRsp(NULL, pRsp);
  void*   buf = rpcMallocCont(tlen);
  if (buf == NULL) {
    return -1;
  }

  ((SMqRspHead*)buf)->mqMsgType = TMQ_MSG_TYPE__POLL_META_RSP;
  ((SMqRspHead*)buf)->epoch = pReq->epoch;
  ((SMqRspHead*)buf)->consumerId = pReq->consumerId;

  void* abuf = POINTER_SHIFT(buf, sizeof(SMqRspHead));
  tEncodeSMqMetaRsp(&abuf, pRsp);

  SRpcMsg resp = {
      .info = pMsg->info,
      .pCont = buf,
      .contLen = tlen,
      .code = 0,
  };
  tmsgSendRsp(&resp);

L
Liu Jicong 已提交
122 123
  tqDebug("vgId:%d from consumer:%" PRId64 ", (epoch %d) send rsp, res msg type %d, reqOffset:%" PRId64
          ", rspOffset:%" PRId64,
L
Liu Jicong 已提交
124 125 126 127 128
          TD_VID(pTq->pVnode), pReq->consumerId, pReq->epoch, pRsp->resMsgType, pRsp->reqOffset, pRsp->rspOffset);

  return 0;
}

L
Liu Jicong 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
int32_t tqSendDataRsp(STQ* pTq, const SRpcMsg* pMsg, const SMqPollReq* pReq, const SMqDataRsp* pRsp) {
  ASSERT(taosArrayGetSize(pRsp->blockData) == pRsp->blockNum);
  ASSERT(taosArrayGetSize(pRsp->blockDataLen) == pRsp->blockNum);

  if (pRsp->withSchema) {
    ASSERT(taosArrayGetSize(pRsp->blockSchema) == pRsp->blockNum);
  } else {
    ASSERT(taosArrayGetSize(pRsp->blockSchema) == 0);
  }

  int32_t len;
  int32_t code;
  tEncodeSize(tEncodeSMqDataRsp, pRsp, len, code);
  if (code < 0) {
    return -1;
  }
  int32_t tlen = sizeof(SMqRspHead) + len;
L
Liu Jicong 已提交
146 147 148 149 150 151 152 153 154 155 156
  void*   buf = rpcMallocCont(tlen);
  if (buf == NULL) {
    return -1;
  }

  ((SMqRspHead*)buf)->mqMsgType = TMQ_MSG_TYPE__POLL_RSP;
  ((SMqRspHead*)buf)->epoch = pReq->epoch;
  ((SMqRspHead*)buf)->consumerId = pReq->consumerId;

  void* abuf = POINTER_SHIFT(buf, sizeof(SMqRspHead));

L
Liu Jicong 已提交
157
  SEncoder encoder;
L
Liu Jicong 已提交
158
  tEncoderInit(&encoder, abuf, len);
L
Liu Jicong 已提交
159 160 161
  tEncodeSMqDataRsp(&encoder, pRsp);

  SRpcMsg rsp = {
L
Liu Jicong 已提交
162 163 164 165 166
      .info = pMsg->info,
      .pCont = buf,
      .contLen = tlen,
      .code = 0,
  };
L
Liu Jicong 已提交
167
  tmsgSendRsp(&rsp);
L
Liu Jicong 已提交
168

L
Liu Jicong 已提交
169 170 171 172
  char buf1[80];
  char buf2[80];
  tFormatOffset(buf1, 80, &pRsp->reqOffset);
  tFormatOffset(buf2, 80, &pRsp->rspOffset);
S
Shengliang Guan 已提交
173
  tqDebug("vgId:%d from consumer:%" PRId64 ", (epoch %d) send rsp, block num: %d, reqOffset:%s, rspOffset:%s",
L
Liu Jicong 已提交
174
          TD_VID(pTq->pVnode), pReq->consumerId, pReq->epoch, pRsp->blockNum, buf1, buf2);
L
Liu Jicong 已提交
175 176 177 178

  return 0;
}

179 180 181 182 183 184 185 186 187 188
int32_t tqProcessOffsetCommitReq(STQ* pTq, char* msg, int32_t msgLen) {
  STqOffset offset = {0};
  SDecoder  decoder;
  tDecoderInit(&decoder, msg, msgLen);
  if (tDecodeSTqOffset(&decoder, &offset) < 0) {
    ASSERT(0);
    return -1;
  }
  tDecoderClear(&decoder);

L
Liu Jicong 已提交
189
  if (offset.val.type == TMQ_OFFSET__SNAPSHOT_DATA) {
L
Liu Jicong 已提交
190 191
    tqDebug("receive offset commit msg to %s on vgId:%d, offset(type:snapshot) uid:%" PRId64 ", ts:%" PRId64,
            offset.subKey, TD_VID(pTq->pVnode), offset.val.uid, offset.val.ts);
L
Liu Jicong 已提交
192
  } else if (offset.val.type == TMQ_OFFSET__LOG) {
S
Shengliang Guan 已提交
193
    tqDebug("receive offset commit msg to %s on vgId:%d, offset(type:log) version:%" PRId64, offset.subKey,
L
Liu Jicong 已提交
194
            TD_VID(pTq->pVnode), offset.val.version);
195 196 197
  } else {
    ASSERT(0);
  }
198 199 200 201 202 203
  /*STqOffset* pOffset = tqOffsetRead(pTq->pOffsetStore, offset.subKey);*/
  /*if (pOffset != NULL) {*/
  /*if (pOffset->val.type == TMQ_OFFSET__LOG && pOffset->val.version < offset.val.version) {*/
  if (tqOffsetWrite(pTq->pOffsetStore, &offset) < 0) {
    ASSERT(0);
    return -1;
204
  }
205 206
  /*}*/
  /*}*/
207 208 209 210

  return 0;
}

L
Liu Jicong 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
int32_t tqCheckColModifiable(STQ* pTq, int32_t colId) {
  void* pIter = NULL;
  while (1) {
    pIter = taosHashIterate(pTq->handles, pIter);
    if (pIter == NULL) break;
    STqHandle* pExec = (STqHandle*)pIter;
    if (pExec->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
      int32_t sz = taosArrayGetSize(pExec->colIdList);
      for (int32_t i = 0; i < sz; i++) {
        int32_t forbidColId = *(int32_t*)taosArrayGet(pExec->colIdList, i);
        if (forbidColId == colId) {
          taosHashCancelIterate(pTq->handles, pIter);
          return -1;
        }
      }
    }
  }
  return 0;
}

L
Liu Jicong 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
static int32_t tqInitDataRsp(SMqDataRsp* pRsp, const SMqPollReq* pReq, int8_t subType) {
  pRsp->reqOffset = pReq->reqOffset;

  pRsp->blockData = taosArrayInit(0, sizeof(void*));
  pRsp->blockDataLen = taosArrayInit(0, sizeof(int32_t));

  if (pRsp->blockData == NULL || pRsp->blockDataLen == NULL) {
    return -1;
  }

  pRsp->withTbName = pReq->withTbName;
  if (pRsp->withTbName) {
    pRsp->blockTbName = taosArrayInit(0, sizeof(void*));
    if (pRsp->blockTbName == NULL) {
      // TODO free
      return -1;
    }
  }

  if (subType == TOPIC_SUB_TYPE__COLUMN) {
    pRsp->withSchema = false;
  } else {
    pRsp->withSchema = true;
    pRsp->blockSchema = taosArrayInit(0, sizeof(void*));
    if (pRsp->blockSchema == NULL) {
      // TODO free
      return -1;
    }
  }
  return 0;
}

static int32_t tqInitMetaRsp(SMqMetaRsp* pRsp, const SMqPollReq* pReq) { return 0; }

int32_t tqProcessPollReq(STQ* pTq, SRpcMsg* pMsg, int32_t workerId) {
  SMqPollReq*  pReq = pMsg->pCont;
  int64_t      consumerId = pReq->consumerId;
  int64_t      timeout = pReq->timeout;
  int32_t      reqEpoch = pReq->epoch;
  int32_t      code = 0;
  STqOffsetVal reqOffset = pReq->reqOffset;
  STqOffsetVal fetchOffsetNew;

274 275 276
  // todo
  workerId = 0;

L
Liu Jicong 已提交
277 278 279 280
  // 1.find handle
  STqHandle* pHandle = taosHashGet(pTq->handles, pReq->subKey, strlen(pReq->subKey));
  /*ASSERT(pHandle);*/
  if (pHandle == NULL) {
S
Shengliang Guan 已提交
281 282
    tqError("tmq poll: no consumer handle for consumer:%" PRId64 ", in vgId:%d, subkey %s", consumerId,
            TD_VID(pTq->pVnode), pReq->subKey);
L
Liu Jicong 已提交
283 284 285 286 287
    return -1;
  }

  // check rebalance
  if (pHandle->consumerId != consumerId) {
S
Shengliang Guan 已提交
288 289
    tqError("tmq poll: consumer handle mismatch for consumer:%" PRId64
            ", in vgId:%d, subkey %s, handle consumer id %" PRId64,
L
Liu Jicong 已提交
290 291 292 293 294 295 296 297 298 299
            consumerId, TD_VID(pTq->pVnode), pReq->subKey, pHandle->consumerId);
    return -1;
  }

  // update epoch if need
  int32_t consumerEpoch = atomic_load_32(&pHandle->epoch);
  while (consumerEpoch < reqEpoch) {
    consumerEpoch = atomic_val_compare_exchange_32(&pHandle->epoch, consumerEpoch, reqEpoch);
  }

L
Liu Jicong 已提交
300 301 302 303 304
  char buf[80];
  tFormatOffset(buf, 80, &reqOffset);
  tqDebug("tmq poll: consumer %ld (epoch %d), subkey %s, recv poll req in vg %d, req offset %s", consumerId,
          pReq->epoch, pHandle->subKey, TD_VID(pTq->pVnode), buf);

L
Liu Jicong 已提交
305 306 307
  SMqDataRsp dataRsp = {0};
  tqInitDataRsp(&dataRsp, pReq, pHandle->execHandle.subType);

L
Liu Jicong 已提交
308 309 310 311 312 313 314
  // 2.reset offset if needed
  if (reqOffset.type > 0) {
    fetchOffsetNew = reqOffset;
  } else {
    STqOffset* pOffset = tqOffsetRead(pTq->pOffsetStore, pReq->subKey);
    if (pOffset != NULL) {
      fetchOffsetNew = pOffset->val;
L
Liu Jicong 已提交
315 316
      char formatBuf[80];
      tFormatOffset(formatBuf, 80, &fetchOffsetNew);
L
Liu Jicong 已提交
317 318
      tqDebug("tmq poll: consumer %" PRId64 ", subkey %s, vg %d, offset reset to %s", consumerId, pHandle->subKey,
              TD_VID(pTq->pVnode), formatBuf);
L
Liu Jicong 已提交
319 320
    } else {
      if (reqOffset.type == TMQ_OFFSET__RESET_EARLIEAST) {
321
        if (pReq->useSnapshot && pHandle->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
322 323 324 325 326 327 328 329 330 331
          if (!pHandle->fetchMeta) {
            tqOffsetResetToData(&fetchOffsetNew, 0, 0);
          } else {
            // reset to meta
            ASSERT(0);
          }
        } else {
          tqOffsetResetToLog(&fetchOffsetNew, walGetFirstVer(pTq->pVnode->pWal));
        }
      } else if (reqOffset.type == TMQ_OFFSET__RESET_LATEST) {
L
Liu Jicong 已提交
332
        tqOffsetResetToLog(&dataRsp.rspOffset, walGetLastVer(pTq->pVnode->pWal));
L
Liu Jicong 已提交
333 334
        tqDebug("tmq poll: consumer %ld, subkey %s, vg %d, offset reset to %ld", consumerId, pHandle->subKey,
                TD_VID(pTq->pVnode), dataRsp.rspOffset.version);
L
Liu Jicong 已提交
335 336 337
        if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
          code = -1;
        }
L
Liu Jicong 已提交
338
        goto OVER;
L
Liu Jicong 已提交
339
      } else if (reqOffset.type == TMQ_OFFSET__RESET_NONE) {
340 341
        tqError("tmq poll: subkey %s, no offset committed for consumer %" PRId64
                " in vg %d, subkey %s, reset none failed",
L
Liu Jicong 已提交
342
                pHandle->subKey, consumerId, TD_VID(pTq->pVnode), pReq->subKey);
L
Liu Jicong 已提交
343
        terrno = TSDB_CODE_TQ_NO_COMMITTED_OFFSET;
L
Liu Jicong 已提交
344 345
        code = -1;
        goto OVER;
L
Liu Jicong 已提交
346 347 348 349 350
      }
    }
  }

  // 3.query
L
Liu Jicong 已提交
351
  if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
352 353 354
    /*if (fetchOffsetNew.type == TMQ_OFFSET__LOG) {*/
    /*fetchOffsetNew.version++;*/
    /*}*/
L
Liu Jicong 已提交
355
    if (tqScan(pTq, pHandle, &dataRsp, &fetchOffsetNew) < 0) {
L
Liu Jicong 已提交
356 357 358 359 360
      ASSERT(0);
      code = -1;
      goto OVER;
    }
    if (dataRsp.blockNum == 0) {
L
Liu Jicong 已提交
361
      // TODO add to async task pool
L
Liu Jicong 已提交
362
      /*dataRsp.rspOffset.version--;*/
L
Liu Jicong 已提交
363 364 365 366 367 368 369
    }
    if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
      code = -1;
    }
    goto OVER;
  }

L
Liu Jicong 已提交
370
  if (pHandle->execHandle.subType != TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
371 372 373
    int64_t     fetchVer = fetchOffsetNew.version + 1;
    SWalCkHead* pCkHead = taosMemoryMalloc(sizeof(SWalCkHead) + 2048);
    if (pCkHead == NULL) {
L
Liu Jicong 已提交
374 375
      code = -1;
      goto OVER;
L
Liu Jicong 已提交
376 377 378 379 380 381 382
    }

    walSetReaderCapacity(pHandle->pWalReader, 2048);

    while (1) {
      consumerEpoch = atomic_load_32(&pHandle->epoch);
      if (consumerEpoch > reqEpoch) {
383
        tqWarn("tmq poll: consumer %ld (epoch %d), subkey %s, vg %d offset %" PRId64
S
Shengliang Guan 已提交
384
               ", found new consumer epoch %d, discard req epoch %d",
385
               consumerId, pReq->epoch, pHandle->subKey, TD_VID(pTq->pVnode), fetchVer, consumerEpoch, reqEpoch);
L
Liu Jicong 已提交
386 387 388
        break;
      }

L
Liu Jicong 已提交
389
      if (tqFetchLog(pTq, pHandle, &fetchVer, &pCkHead) < 0) {
L
Liu Jicong 已提交
390 391
        // TODO add push mgr

L
Liu Jicong 已提交
392 393
        tqOffsetResetToLog(&dataRsp.rspOffset, fetchVer);
        ASSERT(dataRsp.rspOffset.version >= dataRsp.reqOffset.version);
L
Liu Jicong 已提交
394 395 396 397 398 399
        if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
          code = -1;
        }
        goto OVER;
      }

L
Liu Jicong 已提交
400
      SWalCont* pHead = &pCkHead->head;
L
Liu Jicong 已提交
401

S
Shengliang Guan 已提交
402 403
      tqDebug("tmq poll: consumer:%" PRId64 ", (epoch %d) iter log, vgId:%d offset %" PRId64 " msgType %d", consumerId,
              pReq->epoch, TD_VID(pTq->pVnode), fetchVer, pHead->msgType);
L
Liu Jicong 已提交
404 405 406 407 408

      if (pHead->msgType == TDMT_VND_SUBMIT) {
        SSubmitReq* pCont = (SSubmitReq*)&pHead->body;

        if (tqLogScanExec(pTq, &pHandle->execHandle, pCont, &dataRsp, workerId) < 0) {
L
Liu Jicong 已提交
409
          /*ASSERT(0);*/
L
Liu Jicong 已提交
410 411 412 413 414
        }
        // TODO batch optimization:
        // TODO continue scan until meeting batch requirement
        if (dataRsp.blockNum > 0 /* threshold */) {
          tqOffsetResetToLog(&dataRsp.rspOffset, fetchVer);
L
Liu Jicong 已提交
415
          ASSERT(dataRsp.rspOffset.version >= dataRsp.reqOffset.version);
L
Liu Jicong 已提交
416 417 418 419

          if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
            code = -1;
          }
L
Liu Jicong 已提交
420
          goto OVER;
L
Liu Jicong 已提交
421 422 423 424 425 426 427
        } else {
          fetchVer++;
        }

      } else {
        ASSERT(pHandle->fetchMeta);
        ASSERT(IS_META_MSG(pHead->msgType));
L
Liu Jicong 已提交
428
        tqDebug("fetch meta msg, ver:%" PRId64 ", type:%d", pHead->version, pHead->msgType);
L
Liu Jicong 已提交
429
        SMqMetaRsp metaRsp = {0};
430
        /*metaRsp.reqOffset = pReq->reqOffset.version;*/
wmmhello's avatar
wmmhello 已提交
431
        metaRsp.rspOffset = fetchVer;
432 433 434
        /*metaRsp.rspOffsetNew.version = fetchVer;*/
        tqOffsetResetToLog(&metaRsp.reqOffsetNew, pReq->reqOffset.version);
        tqOffsetResetToLog(&metaRsp.rspOffsetNew, fetchVer);
L
Liu Jicong 已提交
435 436 437 438 439 440 441 442 443 444 445 446
        metaRsp.resMsgType = pHead->msgType;
        metaRsp.metaRspLen = pHead->bodyLen;
        metaRsp.metaRsp = pHead->body;
        if (tqSendMetaPollRsp(pTq, pMsg, pReq, &metaRsp) < 0) {
          code = -1;
          goto OVER;
        }
        code = 0;
        goto OVER;
      }
    }

L
Liu Jicong 已提交
447
    taosMemoryFree(pCkHead);
L
Liu Jicong 已提交
448
#if 0
L
Liu Jicong 已提交
449
  } else if (fetchOffsetNew.type == TMQ_OFFSET__SNAPSHOT_DATA) {
S
Shengliang Guan 已提交
450
    tqInfo("retrieve using snapshot actual offset: uid %" PRId64 " ts %" PRId64, fetchOffsetNew.uid, fetchOffsetNew.ts);
L
Liu Jicong 已提交
451
    if (tqScanSnapshot(pTq, &pHandle->execHandle, &dataRsp, fetchOffsetNew, workerId) < 0) {
L
Liu Jicong 已提交
452 453 454 455
      ASSERT(0);
    }

    // 4. send rsp
L
Liu Jicong 已提交
456 457
    if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
      code = -1;
L
Liu Jicong 已提交
458
    }
L
Liu Jicong 已提交
459
#endif
L
Liu Jicong 已提交
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
  } else if (fetchOffsetNew.type == TMQ_OFFSET__SNAPSHOT_META) {
    ASSERT(0);
  }

OVER:
  // TODO wrap in destroy func
  taosArrayDestroy(dataRsp.blockDataLen);
  taosArrayDestroyP(dataRsp.blockData, (FDelete)taosMemoryFree);

  if (dataRsp.withSchema) {
    taosArrayDestroyP(dataRsp.blockSchema, (FDelete)tDeleteSSchemaWrapper);
  }

  if (dataRsp.withTbName) {
    taosArrayDestroyP(dataRsp.blockTbName, (FDelete)taosMemoryFree);
  }

  return code;
}

L
Liu Jicong 已提交
480 481
int32_t tqProcessVgDeleteReq(STQ* pTq, char* msg, int32_t msgLen) {
  SMqVDeleteReq* pReq = (SMqVDeleteReq*)msg;
L
Liu Jicong 已提交
482

L
Liu Jicong 已提交
483
  int32_t code = taosHashRemove(pTq->handles, pReq->subKey, strlen(pReq->subKey));
L
Liu Jicong 已提交
484
  ASSERT(code == 0);
485

L
Liu Jicong 已提交
486 487
  tqOffsetDelete(pTq->pOffsetStore, pReq->subKey);

L
Liu Jicong 已提交
488
  if (tqMetaDeleteHandle(pTq, pReq->subKey) < 0) {
489 490
    ASSERT(0);
  }
L
Liu Jicong 已提交
491
  return 0;
L
Liu Jicong 已提交
492 493
}

L
Liu Jicong 已提交
494
int32_t tqProcessVgChangeReq(STQ* pTq, char* msg, int32_t msgLen) {
L
Liu Jicong 已提交
495
  SMqRebVgReq req = {0};
L
Liu Jicong 已提交
496 497
  tDecodeSMqRebVgReq(msg, &req);
  // todo lock
L
Liu Jicong 已提交
498 499
  STqHandle* pHandle = taosHashGet(pTq->handles, req.subKey, strlen(req.subKey));
  if (pHandle == NULL) {
L
Liu Jicong 已提交
500 501
    ASSERT(req.oldConsumerId == -1);
    ASSERT(req.newConsumerId != -1);
L
Liu Jicong 已提交
502 503
    STqHandle tqHandle = {0};
    pHandle = &tqHandle;
L
Liu Jicong 已提交
504 505
    /*taosInitRWLatch(&pExec->lock);*/

L
Liu Jicong 已提交
506 507 508
    memcpy(pHandle->subKey, req.subKey, TSDB_SUBSCRIBE_KEY_LEN);
    pHandle->consumerId = req.newConsumerId;
    pHandle->epoch = -1;
L
Liu Jicong 已提交
509

L
Liu Jicong 已提交
510
    pHandle->execHandle.subType = req.subType;
L
Liu Jicong 已提交
511
    pHandle->fetchMeta = req.withMeta;
L
Liu Jicong 已提交
512

L
Liu Jicong 已提交
513
    pHandle->pWalReader = walOpenReader(pTq->pVnode->pWal, NULL);
L
Liu Jicong 已提交
514 515

    // TODO version should be assigned in preprocess
516
    int64_t ver = walGetCommittedVer(pTq->pVnode->pWal);
L
Liu Jicong 已提交
517
    if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
518
      pHandle->execHandle.execCol.qmsg = req.qmsg;
L
Liu Jicong 已提交
519
      pHandle->snapshotVer = ver;
L
Liu Jicong 已提交
520
      req.qmsg = NULL;
521
      for (int32_t i = 0; i < 5; i++) {
L
Liu Jicong 已提交
522 523
        SReadHandle handle = {
            .meta = pTq->pVnode->pMeta,
L
Liu Jicong 已提交
524
            .vnode = pTq->pVnode,
525
            .initTableReader = true,
L
Liu Jicong 已提交
526
            .initTqReader = true,
527
            .version = ver,
L
Liu Jicong 已提交
528
        };
L
Liu Jicong 已提交
529 530
        pHandle->execHandle.execCol.task[i] =
            qCreateQueueExecTaskInfo(pHandle->execHandle.execCol.qmsg, &handle, &pHandle->execHandle.numOfCols);
L
Liu Jicong 已提交
531
        ASSERT(pHandle->execHandle.execCol.task[i]);
L
Liu Jicong 已提交
532 533 534 535 536
        void* scanner = NULL;
        qExtractStreamScanner(pHandle->execHandle.execCol.task[i], &scanner);
        ASSERT(scanner);
        pHandle->execHandle.pExecReader[i] = qExtractReaderFromStreamScanner(scanner);
        ASSERT(pHandle->execHandle.pExecReader[i]);
537
      }
L
Liu Jicong 已提交
538
    } else if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__DB) {
L
Liu Jicong 已提交
539 540 541
      for (int32_t i = 0; i < 5; i++) {
        pHandle->execHandle.pExecReader[i] = tqOpenReader(pTq->pVnode);
      }
L
Liu Jicong 已提交
542
      pHandle->execHandle.execDb.pFilterOutTbUid =
L
Liu Jicong 已提交
543 544
          taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
    } else if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__TABLE) {
L
Liu Jicong 已提交
545
      pHandle->execHandle.execTb.suid = req.suid;
L
Liu Jicong 已提交
546
      SArray* tbUidList = taosArrayInit(0, sizeof(int64_t));
H
Hongze Cheng 已提交
547
      vnodeGetCtbIdList(pTq->pVnode, req.suid, tbUidList);
S
Shengliang Guan 已提交
548
      tqDebug("vgId:%d, tq try get suid:%" PRId64, pTq->pVnode->config.vgId, req.suid);
L
Liu Jicong 已提交
549 550
      for (int32_t i = 0; i < taosArrayGetSize(tbUidList); i++) {
        int64_t tbUid = *(int64_t*)taosArrayGet(tbUidList, i);
S
Shengliang Guan 已提交
551
        tqDebug("vgId:%d, idx %d, uid:%" PRId64, TD_VID(pTq->pVnode), i, tbUid);
L
Liu Jicong 已提交
552
      }
L
Liu Jicong 已提交
553
      for (int32_t i = 0; i < 5; i++) {
L
Liu Jicong 已提交
554
        pHandle->execHandle.pExecReader[i] = tqOpenReader(pTq->pVnode);
L
Liu Jicong 已提交
555
        tqReaderSetTbUidList(pHandle->execHandle.pExecReader[i], tbUidList);
L
Liu Jicong 已提交
556
      }
L
Liu Jicong 已提交
557
      taosArrayDestroy(tbUidList);
L
Liu Jicong 已提交
558
    }
L
Liu Jicong 已提交
559
    taosHashPut(pTq->handles, req.subKey, strlen(req.subKey), pHandle, sizeof(STqHandle));
L
Liu Jicong 已提交
560 561 562
    if (tqMetaSaveHandle(pTq, req.subKey, pHandle) < 0) {
      // TODO
    }
L
Liu Jicong 已提交
563
  } else {
L
Liu Jicong 已提交
564
    /*ASSERT(pExec->consumerId == req.oldConsumerId);*/
L
Liu Jicong 已提交
565
    // TODO handle qmsg and exec modification
L
Liu Jicong 已提交
566 567 568
    atomic_store_32(&pHandle->epoch, -1);
    atomic_store_64(&pHandle->consumerId, req.newConsumerId);
    atomic_add_fetch_32(&pHandle->epoch, 1);
L
Liu Jicong 已提交
569 570 571
    if (tqMetaSaveHandle(pTq, req.subKey, pHandle) < 0) {
      // TODO
    }
L
Liu Jicong 已提交
572
  }
L
Liu Jicong 已提交
573

L
Liu Jicong 已提交
574
  return 0;
L
Liu Jicong 已提交
575
}
576

L
Liu Jicong 已提交
577
int32_t tqProcessTaskDeployReq(STQ* pTq, char* msg, int32_t msgLen) {
L
Liu Jicong 已提交
578 579 580 581 582 583 584 585 586 587
  SStreamTask* pTask = taosMemoryCalloc(1, sizeof(SStreamTask));
  if (pTask == NULL) {
    return -1;
  }
  SDecoder decoder;
  tDecoderInit(&decoder, (uint8_t*)msg, msgLen);
  if (tDecodeSStreamTask(&decoder, pTask) < 0) {
    ASSERT(0);
  }
  tDecoderClear(&decoder);
588
  ASSERT(pTask->isDataScan == 0 || pTask->isDataScan == 1);
L
Liu Jicong 已提交
589 590 591
  if (pTask->isDataScan == 0 && pTask->sinkType == TASK_SINK__NONE) {
    ASSERT(taosArrayGetSize(pTask->childEpInfo) != 0);
  }
L
Liu Jicong 已提交
592

L
Liu Jicong 已提交
593
  pTask->execStatus = TASK_EXEC_STATUS__IDLE;
L
Liu Jicong 已提交
594 595 596

  pTask->inputQueue = streamQueueOpen();
  pTask->outputQueue = streamQueueOpen();
L
Liu Jicong 已提交
597 598 599
  pTask->inputStatus = TASK_INPUT_STATUS__NORMAL;
  pTask->outputStatus = TASK_OUTPUT_STATUS__NORMAL;

L
Liu Jicong 已提交
600
  if (pTask->inputQueue == NULL || pTask->outputQueue == NULL) goto FAIL;
L
Liu Jicong 已提交
601

602 603
  pTask->pMsgCb = &pTq->pVnode->msgCb;

L
Liu Jicong 已提交
604
  // exec
L
Liu Jicong 已提交
605 606
  if (pTask->execType != TASK_EXEC__NONE) {
    // expand runners
L
Liu Jicong 已提交
607
    if (pTask->isDataScan) {
608 609 610
      SReadHandle handle = {
          .meta = pTq->pVnode->pMeta,
          .vnode = pTq->pVnode,
L
Liu Jicong 已提交
611
          .initTqReader = 1,
L
Liu Jicong 已提交
612 613 614
      };
      pTask->exec.executor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, &handle);
    } else {
5
54liuyao 已提交
615 616 617 618 619
      SReadHandle mgHandle = {
          .vnode = NULL,
          .numOfVgroups = pTask->numOfVgroups,
      };
      pTask->exec.executor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, &mgHandle);
L
Liu Jicong 已提交
620
    }
L
Liu Jicong 已提交
621
    ASSERT(pTask->exec.executor);
L
Liu Jicong 已提交
622
  }
L
Liu Jicong 已提交
623 624

  // sink
L
Liu Jicong 已提交
625
  /*pTask->ahandle = pTq->pVnode;*/
L
Liu Jicong 已提交
626
  if (pTask->sinkType == TASK_SINK__SMA) {
L
Liu Jicong 已提交
627
    pTask->smaSink.vnode = pTq->pVnode;
L
Liu Jicong 已提交
628
    pTask->smaSink.smaSink = smaHandleRes;
L
Liu Jicong 已提交
629
  } else if (pTask->sinkType == TASK_SINK__TABLE) {
L
Liu Jicong 已提交
630 631 632
    pTask->tbSink.vnode = pTq->pVnode;
    pTask->tbSink.tbSinkFunc = tqTableSink;

L
Liu Jicong 已提交
633 634
    ASSERT(pTask->tbSink.pSchemaWrapper);
    ASSERT(pTask->tbSink.pSchemaWrapper->pSchema);
L
Liu Jicong 已提交
635

L
Liu Jicong 已提交
636
    pTask->tbSink.pTSchema =
C
Cary Xu 已提交
637
        tdGetSTSChemaFromSSChema(pTask->tbSink.pSchemaWrapper->pSchema, pTask->tbSink.pSchemaWrapper->nCols, 1);
L
Liu Jicong 已提交
638
    ASSERT(pTask->tbSink.pTSchema);
L
Liu Jicong 已提交
639
  }
640 641 642

  streamSetupTrigger(pTask);

643 644
  tqInfo("deploy stream task on vg %d, task id %d, child id %d", TD_VID(pTq->pVnode), pTask->taskId,
         pTask->selfChildId);
L
Liu Jicong 已提交
645

646
  taosHashPut(pTq->pStreamTasks, &pTask->taskId, sizeof(int32_t), &pTask, sizeof(void*));
L
Liu Jicong 已提交
647

L
Liu Jicong 已提交
648 649
  return 0;
FAIL:
L
Liu Jicong 已提交
650 651
  if (pTask->inputQueue) streamQueueClose(pTask->inputQueue);
  if (pTask->outputQueue) streamQueueClose(pTask->outputQueue);
L
Liu Jicong 已提交
652
  if (pTask) taosMemoryFree(pTask);
L
Liu Jicong 已提交
653 654
  return -1;
}
L
Liu Jicong 已提交
655

L
Liu Jicong 已提交
656
int32_t tqProcessStreamTrigger(STQ* pTq, SSubmitReq* pReq) {
L
Liu Jicong 已提交
657 658 659
  void*              pIter = NULL;
  bool               failed = false;
  SStreamDataSubmit* pSubmit = NULL;
L
Liu Jicong 已提交
660

L
Liu Jicong 已提交
661
  pSubmit = streamDataSubmitNew(pReq);
L
Liu Jicong 已提交
662
  if (pSubmit == NULL) {
L
Liu Jicong 已提交
663 664
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    qError("failed to create data submit for stream since out of memory");
L
Liu Jicong 已提交
665 666 667 668 669 670
    failed = true;
  }

  while (1) {
    pIter = taosHashIterate(pTq->pStreamTasks, pIter);
    if (pIter == NULL) break;
671
    SStreamTask* pTask = *(SStreamTask**)pIter;
672
    if (!pTask->isDataScan) continue;
L
Liu Jicong 已提交
673

L
Liu Jicong 已提交
674 675
    qDebug("data submit enqueue stream task: %d", pTask->taskId);

L
Liu Jicong 已提交
676 677
    if (!failed) {
      if (streamTaskInput(pTask, (SStreamQueueItem*)pSubmit) < 0) {
L
Liu Jicong 已提交
678
        qError("stream task input failed, task id %d", pTask->taskId);
L
Liu Jicong 已提交
679 680 681
        continue;
      }

L
Liu Jicong 已提交
682
      if (streamLaunchByWrite(pTask, TD_VID(pTq->pVnode)) < 0) {
L
Liu Jicong 已提交
683
        qError("stream task launch failed, task id %d", pTask->taskId);
L
Liu Jicong 已提交
684 685
        continue;
      }
L
Liu Jicong 已提交
686
    } else {
L
Liu Jicong 已提交
687
      streamTaskInputFail(pTask);
L
Liu Jicong 已提交
688 689 690
    }
  }

L
Liu Jicong 已提交
691
  if (pSubmit) {
L
Liu Jicong 已提交
692
    streamDataSubmitRefDec(pSubmit);
L
Liu Jicong 已提交
693
    taosFreeQitem(pSubmit);
L
Liu Jicong 已提交
694
  }
L
Liu Jicong 已提交
695 696

  return failed ? -1 : 0;
L
Liu Jicong 已提交
697 698
}

L
Liu Jicong 已提交
699
int32_t tqProcessTaskRunReq(STQ* pTq, SRpcMsg* pMsg) {
L
Liu Jicong 已提交
700
  //
L
Liu Jicong 已提交
701 702
  SStreamTaskRunReq* pReq = pMsg->pCont;
  int32_t            taskId = pReq->taskId;
L
Liu Jicong 已提交
703 704 705
  SStreamTask**      ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
    streamProcessRunReq(*ppTask);
L
Liu Jicong 已提交
706
    return 0;
707 708
  } else {
    return -1;
L
Liu Jicong 已提交
709
  }
L
Liu Jicong 已提交
710 711 712
}

int32_t tqProcessTaskDispatchReq(STQ* pTq, SRpcMsg* pMsg) {
713 714 715 716 717 718 719
  char*              msgStr = pMsg->pCont;
  char*              msgBody = POINTER_SHIFT(msgStr, sizeof(SMsgHead));
  int32_t            msgLen = pMsg->contLen - sizeof(SMsgHead);
  SStreamDispatchReq req;
  SDecoder           decoder;
  tDecoderInit(&decoder, msgBody, msgLen);
  tDecodeStreamDispatchReq(&decoder, &req);
L
Liu Jicong 已提交
720 721 722
  int32_t       taskId = req.taskId;
  SStreamTask** ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
723 724 725 726
    SRpcMsg rsp = {
        .info = pMsg->info,
        .code = 0,
    };
L
Liu Jicong 已提交
727
    streamProcessDispatchReq(*ppTask, &req, &rsp);
L
Liu Jicong 已提交
728
    return 0;
729 730
  } else {
    return -1;
L
Liu Jicong 已提交
731
  }
L
Liu Jicong 已提交
732 733 734 735 736
}

int32_t tqProcessTaskRecoverReq(STQ* pTq, SRpcMsg* pMsg) {
  SStreamTaskRecoverReq* pReq = pMsg->pCont;
  int32_t                taskId = pReq->taskId;
L
Liu Jicong 已提交
737 738 739
  SStreamTask**          ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
    streamProcessRecoverReq(*ppTask, pReq, pMsg);
L
Liu Jicong 已提交
740
    return 0;
741 742
  } else {
    return -1;
L
Liu Jicong 已提交
743
  }
L
Liu Jicong 已提交
744 745 746
}

int32_t tqProcessTaskDispatchRsp(STQ* pTq, SRpcMsg* pMsg) {
L
Liu Jicong 已提交
747
  SStreamDispatchRsp* pRsp = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
L
Liu Jicong 已提交
748
  int32_t             taskId = pRsp->taskId;
L
Liu Jicong 已提交
749 750 751
  SStreamTask**       ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
    streamProcessDispatchRsp(*ppTask, pRsp);
L
Liu Jicong 已提交
752
    return 0;
753 754
  } else {
    return -1;
L
Liu Jicong 已提交
755
  }
L
Liu Jicong 已提交
756 757 758 759 760
}

int32_t tqProcessTaskRecoverRsp(STQ* pTq, SRpcMsg* pMsg) {
  SStreamTaskRecoverRsp* pRsp = pMsg->pCont;
  int32_t                taskId = pRsp->taskId;
L
Liu Jicong 已提交
761 762 763
  SStreamTask**          ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
    streamProcessRecoverRsp(*ppTask, pRsp);
L
Liu Jicong 已提交
764
    return 0;
765 766
  } else {
    return -1;
L
Liu Jicong 已提交
767
  }
L
Liu Jicong 已提交
768
}
L
Liu Jicong 已提交
769 770 771

int32_t tqProcessTaskDropReq(STQ* pTq, char* msg, int32_t msgLen) {
  SVDropStreamTaskReq* pReq = (SVDropStreamTaskReq*)msg;
L
Liu Jicong 已提交
772

L
Liu Jicong 已提交
773 774
  SStreamTask** ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &pReq->taskId, sizeof(int32_t));
  if (ppTask) {
L
Liu Jicong 已提交
775
    SStreamTask* pTask = *ppTask;
776
    taosHashRemove(pTq->pStreamTasks, &pReq->taskId, sizeof(int32_t));
L
Liu Jicong 已提交
777
    atomic_store_8(&pTask->taskStatus, TASK_STATUS__DROPPING);
778
  }
L
Liu Jicong 已提交
779 780 781 782 783 784 785 786
  // todo
  // clear queue
  // push drop req into queue
  // launch exec to free memory
  // remove from hash
  return 0;

#if 0
L
Liu Jicong 已提交
787
  int32_t              code = taosHashRemove(pTq->pStreamTasks, &pReq->taskId, sizeof(int32_t));
L
Liu Jicong 已提交
788
  // set status dropping
L
Liu Jicong 已提交
789
  ASSERT(code == 0);
L
Liu Jicong 已提交
790 791 792 793
  if (code == 0) {
    // sendrsp
  }
  return code;
L
Liu Jicong 已提交
794
#endif
L
Liu Jicong 已提交
795
}
L
Liu Jicong 已提交
796 797 798 799 800 801 802 803 804

int32_t tqProcessTaskRetrieveReq(STQ* pTq, SRpcMsg* pMsg) {
  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 已提交
805 806 807 808 809 810 811 812 813 814
  int32_t       taskId = req.dstTaskId;
  SStreamTask** ppTask = (SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (ppTask) {
    SRpcMsg rsp = {
        .info = pMsg->info,
        .code = 0,
    };
    streamProcessRetrieveReq(*ppTask, &req, &rsp);
  } else {
    return -1;
L
Liu Jicong 已提交
815 816 817 818 819 820 821 822
  }
  return 0;
}

int32_t tqProcessTaskRetrieveRsp(STQ* pTq, SRpcMsg* pMsg) {
  //
  return 0;
}