tq.c 22.5 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;
    }
L
Liu Jicong 已提交
31
    atomic_store_8(&tqMgmt.inited, 1);
32
  }
L
Liu Jicong 已提交
33 34
  return 0;
}
L
Liu Jicong 已提交
35

36
void tqCleanUp() {
L
Liu Jicong 已提交
37 38 39 40 41 42 43 44 45 46
  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);
    atomic_store_8(&tqMgmt.inited, 0);
  }
47
}
L
Liu Jicong 已提交
48

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

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

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

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

L
Liu Jicong 已提交
65
  if (tqMetaOpen(pTq) < 0) {
66 67 68
    ASSERT(0);
  }

69 70 71 72
  if (tqOffsetOpen(pTq) < 0) {
    ASSERT(0);
  }

L
Liu Jicong 已提交
73 74
  return pTq;
}
L
Liu Jicong 已提交
75

L
Liu Jicong 已提交
76
void tqClose(STQ* pTq) {
H
Hongze Cheng 已提交
77
  if (pTq) {
78
    tqOffsetClose(pTq->pOffsetStore);
L
Liu Jicong 已提交
79
    taosHashCleanup(pTq->handles);
L
Liu Jicong 已提交
80 81
    taosHashCleanup(pTq->pStreamTasks);
    taosHashCleanup(pTq->pushMgr);
82
    taosMemoryFree(pTq->path);
L
Liu Jicong 已提交
83
    tqMetaClose(pTq);
wafwerar's avatar
wafwerar 已提交
84
    taosMemoryFree(pTq);
H
Hongze Cheng 已提交
85
  }
L
Liu Jicong 已提交
86
}
L
Liu Jicong 已提交
87

L
Liu Jicong 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
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);

  tqDebug("vg %d from consumer %ld (epoch %d) send rsp, res msg type %d, reqOffset: %ld, rspOffset: %ld",
          TD_VID(pTq->pVnode), pReq->consumerId, pReq->epoch, pRsp->resMsgType, pRsp->reqOffset, pRsp->rspOffset);

  return 0;
}

L
Liu Jicong 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
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 已提交
133 134 135 136 137 138 139 140 141 142 143
  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 已提交
144
  SEncoder encoder;
L
Liu Jicong 已提交
145
  tEncoderInit(&encoder, abuf, len);
L
Liu Jicong 已提交
146 147 148 149
  tEncodeSMqDataRsp(&encoder, pRsp);
  /*tEncodeSMqDataBlkRsp(&abuf, pRsp);*/

  SRpcMsg rsp = {
L
Liu Jicong 已提交
150 151 152 153 154
      .info = pMsg->info,
      .pCont = buf,
      .contLen = tlen,
      .code = 0,
  };
L
Liu Jicong 已提交
155
  tmsgSendRsp(&rsp);
L
Liu Jicong 已提交
156

L
Liu Jicong 已提交
157 158 159 160
  char buf1[80];
  char buf2[80];
  tFormatOffset(buf1, 80, &pRsp->reqOffset);
  tFormatOffset(buf2, 80, &pRsp->rspOffset);
L
Liu Jicong 已提交
161 162
  tqDebug("vg %d from consumer %ld (epoch %d) send rsp, block num: %d, reqOffset: %s, rspOffset: %s",
          TD_VID(pTq->pVnode), pReq->consumerId, pReq->epoch, pRsp->blockNum, buf1, buf2);
L
Liu Jicong 已提交
163 164 165 166

  return 0;
}

167 168 169 170 171 172 173 174 175 176
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 已提交
177
  if (offset.val.type == TMQ_OFFSET__SNAPSHOT_DATA) {
L
Liu Jicong 已提交
178
    tqDebug("receive offset commit msg to %s on vg %d, offset(type:snapshot) uid: %ld, ts: %ld", offset.subKey,
L
Liu Jicong 已提交
179 180
            TD_VID(pTq->pVnode), offset.val.uid, offset.val.ts);
  } else if (offset.val.type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
181
    tqDebug("receive offset commit msg to %s on vg %d, offset(type:log) version: %ld", offset.subKey,
L
Liu Jicong 已提交
182
            TD_VID(pTq->pVnode), offset.val.version);
183 184 185
  } else {
    ASSERT(0);
  }
186 187 188 189 190 191
  /*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;
192
  }
193 194
  /*}*/
  /*}*/
195 196 197 198

  return 0;
}

L
Liu Jicong 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
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;
L
Liu Jicong 已提交
220
  } else {
L
Liu Jicong 已提交
221 222 223 224 225
    pRsp->withSchema = true;
    pRsp->blockSchema = taosArrayInit(0, sizeof(void*));
    if (pRsp->blockSchema == NULL) {
      // TODO free
      return -1;
L
Liu Jicong 已提交
226
    }
L
Liu Jicong 已提交
227
  }
L
Liu Jicong 已提交
228 229 230 231
  return 0;
}

static int32_t tqInitMetaRsp(SMqMetaRsp* pRsp, const SMqPollReq* pReq) { return 0; }
L
Liu Jicong 已提交
232

L
Liu Jicong 已提交
233 234 235 236 237 238 239 240 241 242
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;

  // 1.find handle
L
Liu Jicong 已提交
243 244
  char buf[80];
  tFormatOffset(buf, 80, &reqOffset);
L
Liu Jicong 已提交
245 246
  tqDebug("tmq poll: consumer %ld (epoch %d) recv poll req in vg %d, req offset %s", consumerId, pReq->epoch,
          TD_VID(pTq->pVnode), buf);
L
fix  
Liu Jicong 已提交
247

L
Liu Jicong 已提交
248
  STqHandle* pHandle = taosHashGet(pTq->handles, pReq->subKey, strlen(pReq->subKey));
L
Liu Jicong 已提交
249 250
  /*ASSERT(pHandle);*/
  if (pHandle == NULL) {
L
Liu Jicong 已提交
251
    tqError("tmq poll: no consumer handle for consumer %ld in vg %d, subkey %s", consumerId, TD_VID(pTq->pVnode),
L
Liu Jicong 已提交
252 253 254
            pReq->subKey);
    return -1;
  }
255

L
Liu Jicong 已提交
256
  // check rebalance
L
Liu Jicong 已提交
257 258
  if (pHandle->consumerId != consumerId) {
    tqError("tmq poll: consumer handle mismatch for consumer %ld in vg %d, subkey %s, handle consumer id %ld",
L
Liu Jicong 已提交
259
            consumerId, TD_VID(pTq->pVnode), pReq->subKey, pHandle->consumerId);
L
Liu Jicong 已提交
260 261
    return -1;
  }
L
Liu Jicong 已提交
262

L
Liu Jicong 已提交
263
  // update epoch if need
L
Liu Jicong 已提交
264
  int32_t consumerEpoch = atomic_load_32(&pHandle->epoch);
L
Liu Jicong 已提交
265
  while (consumerEpoch < reqEpoch) {
L
Liu Jicong 已提交
266
    consumerEpoch = atomic_val_compare_exchange_32(&pHandle->epoch, consumerEpoch, reqEpoch);
L
Liu Jicong 已提交
267 268
  }

L
Liu Jicong 已提交
269 270 271
  // 2.reset offset if needed
  if (reqOffset.type > 0) {
    fetchOffsetNew = reqOffset;
L
Liu Jicong 已提交
272
  } else {
L
Liu Jicong 已提交
273 274 275
    STqOffset* pOffset = tqOffsetRead(pTq->pOffsetStore, pReq->subKey);
    if (pOffset != NULL) {
      fetchOffsetNew = pOffset->val;
L
Liu Jicong 已提交
276 277
      char formatBuf[80];
      tFormatOffset(formatBuf, 80, &fetchOffsetNew);
L
Liu Jicong 已提交
278 279 280
      tqDebug("tmq poll: consumer %ld, offset reset to %s", consumerId, formatBuf);
    } else {
      if (reqOffset.type == TMQ_OFFSET__RESET_EARLIEAST) {
281
        if (pReq->useSnapshot && pHandle->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
          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) {
        tqOffsetResetToLog(&fetchOffsetNew, walGetLastVer(pTq->pVnode->pWal));
      } else if (reqOffset.type == TMQ_OFFSET__RESET_NONE) {
        tqError("tmq poll: no offset committed for consumer %ld in vg %d, subkey %s, reset none failed", consumerId,
                TD_VID(pTq->pVnode), pReq->subKey);
        terrno = TSDB_CODE_TQ_NO_COMMITTED_OFFSET;
        return -1;
L
Liu Jicong 已提交
298 299 300 301
      }
    }
  }

L
Liu Jicong 已提交
302 303 304
  // 3.query
  SMqDataRsp dataRsp = {0};
  tqInitDataRsp(&dataRsp, pReq, pHandle->execHandle.subType);
L
Liu Jicong 已提交
305

L
Liu Jicong 已提交
306
  if (fetchOffsetNew.type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
307 308 309
    int64_t     fetchVer = fetchOffsetNew.version + 1;
    SWalCkHead* pCkHead = taosMemoryMalloc(sizeof(SWalCkHead) + 2048);
    if (pCkHead == NULL) {
L
Liu Jicong 已提交
310
      return -1;
311 312
    }

L
Liu Jicong 已提交
313
    walSetReaderCapacity(pHandle->pWalReader, 2048);
314

L
Liu Jicong 已提交
315 316 317 318 319 320 321
    while (1) {
      consumerEpoch = atomic_load_32(&pHandle->epoch);
      if (consumerEpoch > reqEpoch) {
        tqWarn("tmq poll: consumer %ld (epoch %d) vg %d offset %ld, found new consumer epoch %d, discard req epoch %d",
               consumerId, pReq->epoch, TD_VID(pTq->pVnode), fetchVer, consumerEpoch, reqEpoch);
        break;
      }
L
Liu Jicong 已提交
322

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

L
Liu Jicong 已提交
326 327
        tqOffsetResetToLog(&dataRsp.rspOffset, fetchVer);
        ASSERT(dataRsp.rspOffset.version >= dataRsp.reqOffset.version);
L
Liu Jicong 已提交
328 329 330 331
        if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
          code = -1;
        }
        goto OVER;
L
Liu Jicong 已提交
332
      }
L
Liu Jicong 已提交
333

L
Liu Jicong 已提交
334
      SWalCont* pHead = &pCkHead->head;
L
Liu Jicong 已提交
335 336 337 338 339 340 341 342

      tqDebug("tmq poll: consumer %ld (epoch %d) iter log, vg %d offset %ld msgType %d", consumerId, pReq->epoch,
              TD_VID(pTq->pVnode), fetchVer, pHead->msgType);

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

        if (tqLogScanExec(pTq, &pHandle->execHandle, pCont, &dataRsp, workerId) < 0) {
L
Liu Jicong 已提交
343
          /*ASSERT(0);*/
L
Liu Jicong 已提交
344 345 346 347 348
        }
        // TODO batch optimization:
        // TODO continue scan until meeting batch requirement
        if (dataRsp.blockNum > 0 /* threshold */) {
          tqOffsetResetToLog(&dataRsp.rspOffset, fetchVer);
L
Liu Jicong 已提交
349
          ASSERT(dataRsp.rspOffset.version >= dataRsp.reqOffset.version);
L
Liu Jicong 已提交
350 351 352 353

          if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
            code = -1;
          }
L
Liu Jicong 已提交
354
          goto OVER;
L
Liu Jicong 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
        } else {
          fetchVer++;
        }

      } else {
        ASSERT(pHandle->fetchMeta);
        ASSERT(IS_META_MSG(pHead->msgType));
        tqInfo("fetch meta msg, ver: %ld, type: %d", pHead->version, pHead->msgType);
        SMqMetaRsp metaRsp = {0};
        metaRsp.reqOffset = pReq->reqOffset.version;
        metaRsp.rspOffset = fetchVer;
        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;
L
Liu Jicong 已提交
374
        goto OVER;
L
Liu Jicong 已提交
375
      }
L
Liu Jicong 已提交
376
    }
377

L
Liu Jicong 已提交
378
    taosMemoryFree(pCkHead);
L
Liu Jicong 已提交
379
  } else if (fetchOffsetNew.type == TMQ_OFFSET__SNAPSHOT_DATA) {
380
    tqInfo("retrieve using snapshot actual offset: uid %ld ts %ld", fetchOffsetNew.uid, fetchOffsetNew.ts);
L
Liu Jicong 已提交
381
    if (tqScanSnapshot(pTq, &pHandle->execHandle, &dataRsp, fetchOffsetNew, workerId) < 0) {
L
Liu Jicong 已提交
382
      ASSERT(0);
L
Liu Jicong 已提交
383
    }
384

L
Liu Jicong 已提交
385
    // 4. send rsp
L
Liu Jicong 已提交
386 387
    if (tqSendDataRsp(pTq, pMsg, pReq, &dataRsp) < 0) {
      code = -1;
L
Liu Jicong 已提交
388 389 390
    }
  } else if (fetchOffsetNew.type == TMQ_OFFSET__SNAPSHOT_META) {
    ASSERT(0);
L
Liu Jicong 已提交
391
  }
L
fix  
Liu Jicong 已提交
392

L
Liu Jicong 已提交
393
OVER:
L
Liu Jicong 已提交
394
  // TODO wrap in destroy func
L
Liu Jicong 已提交
395 396
  taosArrayDestroy(dataRsp.blockDataLen);
  taosArrayDestroyP(dataRsp.blockData, (FDelete)taosMemoryFree);
397

L
Liu Jicong 已提交
398 399
  if (dataRsp.withSchema) {
    taosArrayDestroyP(dataRsp.blockSchema, (FDelete)tDeleteSSchemaWrapper);
400 401
  }

L
Liu Jicong 已提交
402 403
  if (dataRsp.withTbName) {
    taosArrayDestroyP(dataRsp.blockTbName, (FDelete)taosMemoryFree);
404
  }
L
Liu Jicong 已提交
405

L
Liu Jicong 已提交
406
  return code;
407
}
L
Liu Jicong 已提交
408

L
Liu Jicong 已提交
409 410
int32_t tqProcessVgDeleteReq(STQ* pTq, char* msg, int32_t msgLen) {
  SMqVDeleteReq* pReq = (SMqVDeleteReq*)msg;
L
Liu Jicong 已提交
411

L
Liu Jicong 已提交
412
  int32_t code = taosHashRemove(pTq->handles, pReq->subKey, strlen(pReq->subKey));
L
Liu Jicong 已提交
413
  ASSERT(code == 0);
414

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

L
Liu Jicong 已提交
417
  if (tqMetaDeleteHandle(pTq, pReq->subKey) < 0) {
418 419
    ASSERT(0);
  }
L
Liu Jicong 已提交
420
  return 0;
L
Liu Jicong 已提交
421 422
}

L
Liu Jicong 已提交
423
int32_t tqProcessVgChangeReq(STQ* pTq, char* msg, int32_t msgLen) {
L
Liu Jicong 已提交
424
  SMqRebVgReq req = {0};
L
Liu Jicong 已提交
425 426
  tDecodeSMqRebVgReq(msg, &req);
  // todo lock
L
Liu Jicong 已提交
427 428
  STqHandle* pHandle = taosHashGet(pTq->handles, req.subKey, strlen(req.subKey));
  if (pHandle == NULL) {
L
Liu Jicong 已提交
429 430
    ASSERT(req.oldConsumerId == -1);
    ASSERT(req.newConsumerId != -1);
L
Liu Jicong 已提交
431 432
    STqHandle tqHandle = {0};
    pHandle = &tqHandle;
L
Liu Jicong 已提交
433 434
    /*taosInitRWLatch(&pExec->lock);*/

L
Liu Jicong 已提交
435 436 437
    memcpy(pHandle->subKey, req.subKey, TSDB_SUBSCRIBE_KEY_LEN);
    pHandle->consumerId = req.newConsumerId;
    pHandle->epoch = -1;
L
Liu Jicong 已提交
438

L
Liu Jicong 已提交
439
    pHandle->execHandle.subType = req.subType;
L
Liu Jicong 已提交
440
    pHandle->fetchMeta = req.withMeta;
L
Liu Jicong 已提交
441

L
Liu Jicong 已提交
442 443 444 445 446
    pHandle->pWalReader = walOpenReadHandle(pTq->pVnode->pWal);
    for (int32_t i = 0; i < 5; i++) {
      pHandle->execHandle.pExecReader[i] = tqInitSubmitMsgScanner(pTq->pVnode->pMeta);
    }
    if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__COLUMN) {
L
Liu Jicong 已提交
447
      pHandle->execHandle.execCol.qmsg = req.qmsg;
L
Liu Jicong 已提交
448
      req.qmsg = NULL;
449
      for (int32_t i = 0; i < 5; i++) {
L
Liu Jicong 已提交
450
        SReadHandle handle = {
L
Liu Jicong 已提交
451
            .reader = pHandle->execHandle.pExecReader[i],
L
Liu Jicong 已提交
452
            .meta = pTq->pVnode->pMeta,
L
Liu Jicong 已提交
453
            .vnode = pTq->pVnode,
L
Liu Jicong 已提交
454
            .tqReader = true,
L
Liu Jicong 已提交
455
        };
L
Liu Jicong 已提交
456 457
        pHandle->execHandle.execCol.task[i] = qCreateStreamExecTaskInfo(pHandle->execHandle.execCol.qmsg, &handle);
        ASSERT(pHandle->execHandle.execCol.task[i]);
458
      }
L
Liu Jicong 已提交
459
    } else if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__DB) {
L
Liu Jicong 已提交
460
      pHandle->execHandle.execDb.pFilterOutTbUid =
L
Liu Jicong 已提交
461 462
          taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
    } else if (pHandle->execHandle.subType == TOPIC_SUB_TYPE__TABLE) {
L
Liu Jicong 已提交
463
      pHandle->execHandle.execTb.suid = req.suid;
L
Liu Jicong 已提交
464
      SArray* tbUidList = taosArrayInit(0, sizeof(int64_t));
H
Hongze Cheng 已提交
465
      vnodeGetCtbIdList(pTq->pVnode, req.suid, tbUidList);
L
Liu Jicong 已提交
466 467 468
      tqDebug("vg %d, tq try get suid: %ld", pTq->pVnode->config.vgId, req.suid);
      for (int32_t i = 0; i < taosArrayGetSize(tbUidList); i++) {
        int64_t tbUid = *(int64_t*)taosArrayGet(tbUidList, i);
L
Liu Jicong 已提交
469
        tqDebug("vg %d, idx %d, uid: %ld", TD_VID(pTq->pVnode), i, tbUid);
L
Liu Jicong 已提交
470
      }
L
Liu Jicong 已提交
471 472 473
      for (int32_t i = 0; i < 5; i++) {
        tqReadHandleSetTbUidList(pHandle->execHandle.pExecReader[i], tbUidList);
      }
L
Liu Jicong 已提交
474
      taosArrayDestroy(tbUidList);
L
Liu Jicong 已提交
475
    }
L
Liu Jicong 已提交
476
    taosHashPut(pTq->handles, req.subKey, strlen(req.subKey), pHandle, sizeof(STqHandle));
L
Liu Jicong 已提交
477 478 479
    if (tqMetaSaveHandle(pTq, req.subKey, pHandle) < 0) {
      // TODO
    }
L
Liu Jicong 已提交
480
  } else {
L
Liu Jicong 已提交
481
    /*ASSERT(pExec->consumerId == req.oldConsumerId);*/
L
Liu Jicong 已提交
482
    // TODO handle qmsg and exec modification
L
Liu Jicong 已提交
483 484 485
    atomic_store_32(&pHandle->epoch, -1);
    atomic_store_64(&pHandle->consumerId, req.newConsumerId);
    atomic_add_fetch_32(&pHandle->epoch, 1);
L
Liu Jicong 已提交
486 487 488
    if (tqMetaSaveHandle(pTq, req.subKey, pHandle) < 0) {
      // TODO
    }
L
Liu Jicong 已提交
489
  }
L
Liu Jicong 已提交
490

L
Liu Jicong 已提交
491
  return 0;
L
Liu Jicong 已提交
492
}
493

L
Liu Jicong 已提交
494
int32_t tqProcessTaskDeployReq(STQ* pTq, char* msg, int32_t msgLen) {
L
Liu Jicong 已提交
495 496 497 498 499 500 501 502 503 504
  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);
505
  ASSERT(pTask->isDataScan == 0 || pTask->isDataScan == 1);
L
Liu Jicong 已提交
506 507 508
  if (pTask->isDataScan == 0 && pTask->sinkType == TASK_SINK__NONE) {
    ASSERT(taosArrayGetSize(pTask->childEpInfo) != 0);
  }
L
Liu Jicong 已提交
509

L
Liu Jicong 已提交
510
  pTask->execStatus = TASK_EXEC_STATUS__IDLE;
L
Liu Jicong 已提交
511 512 513

  pTask->inputQueue = streamQueueOpen();
  pTask->outputQueue = streamQueueOpen();
L
Liu Jicong 已提交
514 515 516
  pTask->inputStatus = TASK_INPUT_STATUS__NORMAL;
  pTask->outputStatus = TASK_OUTPUT_STATUS__NORMAL;

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

519 520
  pTask->pMsgCb = &pTq->pVnode->msgCb;

L
Liu Jicong 已提交
521
  // exec
L
Liu Jicong 已提交
522 523
  if (pTask->execType != TASK_EXEC__NONE) {
    // expand runners
L
Liu Jicong 已提交
524
    if (pTask->isDataScan) {
L
Liu Jicong 已提交
525
      SStreamReader* pStreamReader = tqInitSubmitMsgScanner(pTq->pVnode->pMeta);
L
Liu Jicong 已提交
526 527 528 529 530 531 532 533 534 535 536 537
      SReadHandle    handle = {
             .reader = pStreamReader,
             .meta = pTq->pVnode->pMeta,
             .vnode = pTq->pVnode,
      };
      /*pTask->exec.inputHandle = pStreamReader;*/
      pTask->exec.executor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, &handle);
      ASSERT(pTask->exec.executor);
    } else {
      pTask->exec.executor = qCreateStreamExecTaskInfo(pTask->exec.qmsg, NULL);
      ASSERT(pTask->exec.executor);
    }
L
Liu Jicong 已提交
538
  }
L
Liu Jicong 已提交
539 540

  // sink
L
Liu Jicong 已提交
541
  /*pTask->ahandle = pTq->pVnode;*/
L
Liu Jicong 已提交
542
  if (pTask->sinkType == TASK_SINK__SMA) {
L
Liu Jicong 已提交
543
    pTask->smaSink.vnode = pTq->pVnode;
L
Liu Jicong 已提交
544
    pTask->smaSink.smaSink = smaHandleRes;
L
Liu Jicong 已提交
545
  } else if (pTask->sinkType == TASK_SINK__TABLE) {
L
Liu Jicong 已提交
546 547 548
    pTask->tbSink.vnode = pTq->pVnode;
    pTask->tbSink.tbSinkFunc = tqTableSink;

L
Liu Jicong 已提交
549 550
    ASSERT(pTask->tbSink.pSchemaWrapper);
    ASSERT(pTask->tbSink.pSchemaWrapper->pSchema);
L
Liu Jicong 已提交
551

L
Liu Jicong 已提交
552 553 554
    pTask->tbSink.pTSchema =
        tdGetSTSChemaFromSSChema(&pTask->tbSink.pSchemaWrapper->pSchema, pTask->tbSink.pSchemaWrapper->nCols);
    ASSERT(pTask->tbSink.pTSchema);
L
Liu Jicong 已提交
555
  }
556 557 558

  streamSetupTrigger(pTask);

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

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

L
Liu Jicong 已提交
563 564
  return 0;
FAIL:
L
Liu Jicong 已提交
565 566
  if (pTask->inputQueue) streamQueueClose(pTask->inputQueue);
  if (pTask->outputQueue) streamQueueClose(pTask->outputQueue);
L
Liu Jicong 已提交
567
  if (pTask) taosMemoryFree(pTask);
L
Liu Jicong 已提交
568 569
  return -1;
}
L
Liu Jicong 已提交
570

L
Liu Jicong 已提交
571
int32_t tqProcessStreamTrigger(STQ* pTq, SSubmitReq* pReq) {
L
Liu Jicong 已提交
572 573 574
  void*              pIter = NULL;
  bool               failed = false;
  SStreamDataSubmit* pSubmit = NULL;
L
Liu Jicong 已提交
575

L
Liu Jicong 已提交
576
  pSubmit = streamDataSubmitNew(pReq);
L
Liu Jicong 已提交
577 578 579 580 581 582 583
  if (pSubmit == NULL) {
    failed = true;
  }

  while (1) {
    pIter = taosHashIterate(pTq->pStreamTasks, pIter);
    if (pIter == NULL) break;
584
    SStreamTask* pTask = *(SStreamTask**)pIter;
L
Liu Jicong 已提交
585 586 587
    if (atomic_load_8(&pTask->taskStatus) == TASK_STATUS__DROPPING) {
      continue;
    }
588
    if (!pTask->isDataScan) continue;
L
Liu Jicong 已提交
589

L
Liu Jicong 已提交
590 591
    if (!failed) {
      if (streamTaskInput(pTask, (SStreamQueueItem*)pSubmit) < 0) {
L
Liu Jicong 已提交
592 593 594
        continue;
      }

L
Liu Jicong 已提交
595
      if (streamLaunchByWrite(pTask, TD_VID(pTq->pVnode)) < 0) {
L
Liu Jicong 已提交
596 597
        continue;
      }
L
Liu Jicong 已提交
598
    } else {
L
Liu Jicong 已提交
599
      streamTaskInputFail(pTask);
L
Liu Jicong 已提交
600 601 602
    }
  }

L
Liu Jicong 已提交
603
  if (pSubmit) {
L
Liu Jicong 已提交
604
    streamDataSubmitRefDec(pSubmit);
L
Liu Jicong 已提交
605
    taosFreeQitem(pSubmit);
L
Liu Jicong 已提交
606
  }
L
Liu Jicong 已提交
607 608

  return failed ? -1 : 0;
L
Liu Jicong 已提交
609 610
}

L
Liu Jicong 已提交
611
int32_t tqProcessTaskRunReq(STQ* pTq, SRpcMsg* pMsg) {
L
Liu Jicong 已提交
612
  //
L
Liu Jicong 已提交
613 614
  SStreamTaskRunReq* pReq = pMsg->pCont;
  int32_t            taskId = pReq->taskId;
615
  SStreamTask*       pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
616
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
L
Liu Jicong 已提交
617 618
    return 0;
  }
L
Liu Jicong 已提交
619
  streamProcessRunReq(pTask);
L
Liu Jicong 已提交
620 621 622 623
  return 0;
}

int32_t tqProcessTaskDispatchReq(STQ* pTq, SRpcMsg* pMsg) {
624 625 626 627 628 629 630 631
  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);
  int32_t      taskId = req.taskId;
632
  SStreamTask* pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
633
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
L
Liu Jicong 已提交
634 635 636 637 638
    return 0;
  }
  SRpcMsg rsp = {
      .info = pMsg->info,
      .code = 0,
639
  };
L
Liu Jicong 已提交
640
  streamProcessDispatchReq(pTask, &req, &rsp);
L
Liu Jicong 已提交
641 642 643 644 645 646
  return 0;
}

int32_t tqProcessTaskRecoverReq(STQ* pTq, SRpcMsg* pMsg) {
  SStreamTaskRecoverReq* pReq = pMsg->pCont;
  int32_t                taskId = pReq->taskId;
647
  SStreamTask*           pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
648
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
L
Liu Jicong 已提交
649 650
    return 0;
  }
L
Liu Jicong 已提交
651
  streamProcessRecoverReq(pTask, pReq, pMsg);
L
Liu Jicong 已提交
652 653 654 655
  return 0;
}

int32_t tqProcessTaskDispatchRsp(STQ* pTq, SRpcMsg* pMsg) {
L
Liu Jicong 已提交
656
  SStreamDispatchRsp* pRsp = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
L
Liu Jicong 已提交
657
  int32_t             taskId = pRsp->taskId;
658
  SStreamTask*        pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
659
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
L
Liu Jicong 已提交
660 661
    return 0;
  }
L
Liu Jicong 已提交
662
  streamProcessDispatchRsp(pTask, pRsp);
L
Liu Jicong 已提交
663 664 665 666 667 668
  return 0;
}

int32_t tqProcessTaskRecoverRsp(STQ* pTq, SRpcMsg* pMsg) {
  SStreamTaskRecoverRsp* pRsp = pMsg->pCont;
  int32_t                taskId = pRsp->taskId;
669
  SStreamTask*           pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
L
Liu Jicong 已提交
670
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
L
Liu Jicong 已提交
671 672
    return 0;
  }
L
Liu Jicong 已提交
673
  streamProcessRecoverRsp(pTask, pRsp);
L
Liu Jicong 已提交
674 675
  return 0;
}
L
Liu Jicong 已提交
676 677 678

int32_t tqProcessTaskDropReq(STQ* pTq, char* msg, int32_t msgLen) {
  SVDropStreamTaskReq* pReq = (SVDropStreamTaskReq*)msg;
L
Liu Jicong 已提交
679 680 681 682 683 684 685 686 687 688 689

  SStreamTask* pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &pReq->taskId, sizeof(int32_t));
  atomic_store_8(&pTask->taskStatus, TASK_STATUS__DROPPING);
  // todo
  // clear queue
  // push drop req into queue
  // launch exec to free memory
  // remove from hash
  return 0;

#if 0
L
Liu Jicong 已提交
690
  int32_t              code = taosHashRemove(pTq->pStreamTasks, &pReq->taskId, sizeof(int32_t));
L
Liu Jicong 已提交
691
  // set status dropping
L
Liu Jicong 已提交
692
  ASSERT(code == 0);
L
Liu Jicong 已提交
693 694 695 696
  if (code == 0) {
    // sendrsp
  }
  return code;
L
Liu Jicong 已提交
697
#endif
L
Liu Jicong 已提交
698
}
L
Liu Jicong 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723

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);
  int32_t      taskId = req.dstTaskId;
  SStreamTask* pTask = *(SStreamTask**)taosHashGet(pTq->pStreamTasks, &taskId, sizeof(int32_t));
  if (atomic_load_8(&pTask->taskStatus) != TASK_STATUS__NORMAL) {
    return 0;
  }
  SRpcMsg rsp = {
      .info = pMsg->info,
      .code = 0,
  };
  streamProcessRetrieveReq(pTask, &req, &rsp);
  return 0;
}

int32_t tqProcessTaskRetrieveRsp(STQ* pTq, SRpcMsg* pMsg) {
  //
  return 0;
L
Liu Jicong 已提交
724
}