tqPush.c 10.8 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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 已提交
15 16

#include "tq.h"
17
#include "vnd.h"
L
Liu Jicong 已提交
18

L
Liu Jicong 已提交
19
#if 0
L
Liu Jicong 已提交
20 21 22 23 24
void tqTmrRspFunc(void* param, void* tmrId) {
  STqHandle* pHandle = (STqHandle*)param;
  atomic_store_8(&pHandle->pushHandle.tmrStopped, 1);
}

L
Liu Jicong 已提交
25
static int32_t tqLoopExecFromQueue(STQ* pTq, STqHandle* pHandle, SStreamDataSubmit** ppSubmit, SMqDataRsp* pRsp) {
26 27 28
  SStreamDataSubmit* pSubmit = *ppSubmit;
  while (pSubmit != NULL) {
    ASSERT(pSubmit->ver == pHandle->pushHandle.processedVer + 1);
L
Liu Jicong 已提交
29
    if (tqLogScanExec(pTq, &pHandle->execHandle, pSubmit->data, pRsp, 0) < 0) {
30 31 32 33
      /*ASSERT(0);*/
    }
    // update processed
    atomic_store_64(&pHandle->pushHandle.processedVer, pSubmit->ver);
L
Liu Jicong 已提交
34
    streamQueueProcessSuccess(&pHandle->pushHandle.inputQ);
35 36 37 38 39
    streamDataSubmitRefDec(pSubmit);
    if (pRsp->blockNum > 0) {
      *ppSubmit = pSubmit;
      return 0;
    } else {
L
Liu Jicong 已提交
40
      pSubmit = streamQueueNextItem(&pHandle->pushHandle.inputQ);
41 42 43 44 45 46
    }
  }
  *ppSubmit = pSubmit;
  return -1;
}

L
Liu Jicong 已提交
47
int32_t tqExecFromInputQ(STQ* pTq, STqHandle* pHandle) {
L
Liu Jicong 已提交
48
  SMqDataRsp rsp = {0};
L
Liu Jicong 已提交
49
  // 1. guard and set status executing
L
Liu Jicong 已提交
50 51 52
  int8_t execStatus = atomic_val_compare_exchange_8(&pHandle->pushHandle.execStatus, TASK_EXEC_STATUS__IDLE,
                                                    TASK_EXEC_STATUS__EXECUTING);
  if (execStatus == TASK_EXEC_STATUS__IDLE) {
L
Liu Jicong 已提交
53 54 55 56
    SStreamDataSubmit* pSubmit = NULL;
    // 2. check processedVer
    // 2.1. if not missed, get msg from queue
    // 2.2. if missed, scan wal
L
Liu Jicong 已提交
57
    pSubmit = streamQueueNextItem(&pHandle->pushHandle.inputQ);
L
Liu Jicong 已提交
58 59 60 61
    while (pHandle->pushHandle.processedVer <= pSubmit->ver) {
      // read from wal
    }
    while (pHandle->pushHandle.processedVer > pSubmit->ver + 1) {
L
Liu Jicong 已提交
62
      streamQueueProcessSuccess(&pHandle->pushHandle.inputQ);
L
Liu Jicong 已提交
63
      streamDataSubmitRefDec(pSubmit);
L
Liu Jicong 已提交
64
      pSubmit = streamQueueNextItem(&pHandle->pushHandle.inputQ);
L
Liu Jicong 已提交
65 66 67 68
      if (pSubmit == NULL) break;
    }
    // 3. exec, after each success, update processed ver
    // first run
69 70
    if (tqLoopExecFromQueue(pTq, pHandle, &pSubmit, &rsp) == 0) {
      goto SEND_RSP;
L
Liu Jicong 已提交
71 72
    }
    // set exec status closing
L
Liu Jicong 已提交
73
    atomic_store_8(&pHandle->pushHandle.execStatus, TASK_EXEC_STATUS__CLOSING);
L
Liu Jicong 已提交
74
    // second run
75 76
    if (tqLoopExecFromQueue(pTq, pHandle, &pSubmit, &rsp) == 0) {
      goto SEND_RSP;
L
Liu Jicong 已提交
77 78
    }
    // set exec status idle
L
Liu Jicong 已提交
79
    atomic_store_8(&pHandle->pushHandle.execStatus, TASK_EXEC_STATUS__IDLE);
L
Liu Jicong 已提交
80 81
  }
SEND_RSP:
L
Liu Jicong 已提交
82 83
  // 4. if get result
  // 4.1 set exec input status blocked and exec status idle
L
Liu Jicong 已提交
84
  atomic_store_8(&pHandle->pushHandle.execStatus, TASK_EXEC_STATUS__IDLE);
L
Liu Jicong 已提交
85
  // 4.2 rpc send
L
Liu Jicong 已提交
86 87 88 89
  rsp.rspOffset = pHandle->pushHandle.processedVer;
  /*if (tqSendPollRsp(pTq, pMsg, pReq, &rsp) < 0) {*/
  /*return -1;*/
  /*}*/
L
Liu Jicong 已提交
90
  // 4.3 clear rpc info
L
Liu Jicong 已提交
91
  memset(&pHandle->pushHandle.rpcInfo, 0, sizeof(SRpcHandleInfo));
L
Liu Jicong 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  return 0;
}

int32_t tqOpenPushHandle(STQ* pTq, STqHandle* pHandle) {
  memset(&pHandle->pushHandle, 0, sizeof(STqPushHandle));
  pHandle->pushHandle.inputQ.queue = taosOpenQueue();
  pHandle->pushHandle.inputQ.qall = taosAllocateQall();
  if (pHandle->pushHandle.inputQ.queue == NULL || pHandle->pushHandle.inputQ.qall == NULL) {
    if (pHandle->pushHandle.inputQ.queue) {
      taosCloseQueue(pHandle->pushHandle.inputQ.queue);
    }
    if (pHandle->pushHandle.inputQ.qall) {
      taosFreeQall(pHandle->pushHandle.inputQ.qall);
    }
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
111 112
int32_t tqPreparePush(STQ* pTq, STqHandle* pHandle, int64_t reqId, const SRpcHandleInfo* pInfo, int64_t processedVer,
                      int64_t timeout) {
L
Liu Jicong 已提交
113 114 115 116
  memcpy(&pHandle->pushHandle.rpcInfo, pInfo, sizeof(SRpcHandleInfo));
  atomic_store_64(&pHandle->pushHandle.reqId, reqId);
  atomic_store_64(&pHandle->pushHandle.processedVer, processedVer);
  atomic_store_8(&pHandle->pushHandle.inputStatus, TASK_INPUT_STATUS__NORMAL);
L
Liu Jicong 已提交
117 118 119
  atomic_store_8(&pHandle->pushHandle.tmrStopped, 0);
  taosTmrReset(tqTmrRspFunc, (int32_t)timeout, pHandle, tqMgmt.timer, &pHandle->pushHandle.timerId);
  return 0;
L
Liu Jicong 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
}

int32_t tqEnqueue(STqHandle* pHandle, SStreamDataSubmit* pSubmit) {
  int8_t inputStatus = atomic_load_8(&pHandle->pushHandle.inputStatus);
  if (inputStatus == TASK_INPUT_STATUS__NORMAL) {
    SStreamDataSubmit* pSubmitClone = streamSubmitRefClone(pSubmit);
    if (pSubmitClone == NULL) {
      return -1;
    }
    taosWriteQitem(pHandle->pushHandle.inputQ.queue, pSubmitClone);
    return 0;
  }
  return -1;
}

int32_t tqSendExecReq(STQ* pTq, STqHandle* pHandle) {
  //
  return 0;
}

int32_t tqPushMsgNew(STQ* pTq, void* msg, int32_t msgLen, tmsg_t msgType, int64_t ver, SRpcHandleInfo handleInfo) {
  if (msgType != TDMT_VND_SUBMIT) return 0;
  void*       pIter = NULL;
  STqHandle*  pHandle = NULL;
  SSubmitReq* pReq = (SSubmitReq*)msg;
  int32_t     workerId = 4;
  int64_t     fetchOffset = ver;

  while (1) {
    pIter = taosHashIterate(pTq->pushMgr, pIter);
    if (pIter == NULL) break;
    pHandle = *(STqHandle**)pIter;

    taosWLockLatch(&pHandle->pushHandle.lock);

L
Liu Jicong 已提交
155
    SMqDataRsp rsp = {0};
L
Liu Jicong 已提交
156 157 158 159 160
    rsp.reqOffset = pHandle->pushHandle.reqOffset;
    rsp.blockData = taosArrayInit(0, sizeof(void*));
    rsp.blockDataLen = taosArrayInit(0, sizeof(int32_t));

    if (msgType == TDMT_VND_SUBMIT) {
L
Liu Jicong 已提交
161
      tqLogScanExec(pTq, &pHandle->execHandle, pReq, &rsp, workerId);
L
Liu Jicong 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    } else {
      // TODO
      ASSERT(0);
    }

    if (rsp.blockNum == 0) {
      taosWUnLockLatch(&pHandle->pushHandle.lock);
      continue;
    }

    ASSERT(taosArrayGetSize(rsp.blockData) == rsp.blockNum);
    ASSERT(taosArrayGetSize(rsp.blockDataLen) == rsp.blockNum);

    rsp.rspOffset = fetchOffset;

    int32_t tlen = sizeof(SMqRspHead) + tEncodeSMqDataBlkRsp(NULL, &rsp);
    void*   buf = rpcMallocCont(tlen);
    if (buf == NULL) {
      // todo free
      return -1;
    }

    ((SMqRspHead*)buf)->mqMsgType = TMQ_MSG_TYPE__POLL_RSP;
    ((SMqRspHead*)buf)->epoch = pHandle->pushHandle.epoch;
    ((SMqRspHead*)buf)->consumerId = pHandle->pushHandle.consumerId;

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

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

    memset(&pHandle->pushHandle.rpcInfo, 0, sizeof(SRpcHandleInfo));
    taosWUnLockLatch(&pHandle->pushHandle.lock);

S
Shengliang Guan 已提交
202
    tqDebug("vgId:%d, offset %" PRId64 " from consumer:%" PRId64 ", (epoch %d) send rsp, block num: %d, reqOffset:%" PRId64 ", rspOffset:%" PRId64,
L
Liu Jicong 已提交
203 204 205 206 207 208 209 210 211 212
            TD_VID(pTq->pVnode), fetchOffset, pHandle->pushHandle.consumerId, pHandle->pushHandle.epoch, rsp.blockNum,
            rsp.reqOffset, rsp.rspOffset);

    // TODO destroy
    taosArrayDestroy(rsp.blockData);
    taosArrayDestroy(rsp.blockDataLen);
  }

  return 0;
}
L
Liu Jicong 已提交
213
#endif
L
Liu Jicong 已提交
214 215

int tqPushMsg(STQ* pTq, void* msg, int32_t msgLen, tmsg_t msgType, int64_t ver) {
L
Liu Jicong 已提交
216
  tqDebug("vgId:%d tq push msg ver %ld, type: %s", pTq->pVnode->config.vgId, ver, TMSG_INFO(msgType));
L
Liu Jicong 已提交
217

L
Liu Jicong 已提交
218 219 220
  if (msgType == TDMT_VND_SUBMIT) {
    // lock push mgr to avoid potential msg lost
    taosWLockLatch(&pTq->pushLock);
L
Liu Jicong 已提交
221
    tqDebug("vgId:%d push handle num %d", pTq->pVnode->config.vgId, taosHashGetSize(pTq->pPushMgr));
L
Liu Jicong 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    if (taosHashGetSize(pTq->pPushMgr) != 0) {
      SArray* cachedKeys = taosArrayInit(0, sizeof(void*));
      SArray* cachedKeyLens = taosArrayInit(0, sizeof(size_t));
      void*   data = taosMemoryMalloc(msgLen);
      if (data == NULL) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        tqError("failed to copy data for stream since out of memory");
        return -1;
      }
      memcpy(data, msg, msgLen);
      SSubmitReq* pReq = (SSubmitReq*)data;
      pReq->version = ver;

      void* pIter = NULL;
      while (1) {
        pIter = taosHashIterate(pTq->pPushMgr, pIter);
        if (pIter == NULL) break;
L
Liu Jicong 已提交
239 240 241 242 243 244 245 246
        STqPushEntry* pPushEntry = *(STqPushEntry**)pIter;

        STqHandle* pHandle = taosHashGet(pTq->pHandle, pPushEntry->subKey, strlen(pPushEntry->subKey));
        if (pHandle == NULL) {
          tqDebug("vgId:%d cannot find handle %s", pTq->pVnode->config.vgId, pPushEntry->subKey);
          continue;
        }
        STqExecHandle* pExec = &pHandle->execHandle;
L
Liu Jicong 已提交
247
        qTaskInfo_t    task = pExec->task;
L
Liu Jicong 已提交
248 249

        SMqDataRsp* pRsp = &pPushEntry->dataRsp;
L
Liu Jicong 已提交
250 251 252 253 254 255 256 257

        // prepare scan mem data
        qStreamScanMemData(task, pReq);

        // exec
        while (1) {
          SSDataBlock* pDataBlock = NULL;
          uint64_t     ts = 0;
L
Liu Jicong 已提交
258
          if (qExecTask(task, &pDataBlock, &ts) < 0) {
L
Liu Jicong 已提交
259 260 261 262 263 264 265 266 267 268
            ASSERT(0);
          }

          if (pDataBlock == NULL) {
            break;
          }

          tqAddBlockDataToRsp(pDataBlock, pRsp, pExec->numOfCols);
          pRsp->blockNum++;
        }
L
Liu Jicong 已提交
269

L
Liu Jicong 已提交
270 271
        tqDebug("vgId:%d tq handle push, subkey: %s, block num: %d", pTq->pVnode->config.vgId, pPushEntry->subKey,
                pRsp->blockNum);
L
Liu Jicong 已提交
272 273 274 275 276
        if (pRsp->blockNum > 0) {
          // set offset
          tqOffsetResetToLog(&pRsp->rspOffset, ver);
          // remove from hash
          size_t kLen;
L
Liu Jicong 已提交
277
          void*  key = taosHashGetKey(pIter, &kLen);
L
Liu Jicong 已提交
278 279 280 281 282 283 284 285 286 287 288 289 290
          void*  keyCopy = taosMemoryMalloc(kLen);
          memcpy(keyCopy, key, kLen);

          taosArrayPush(cachedKeys, &keyCopy);
          taosArrayPush(cachedKeyLens, &kLen);

          tqPushDataRsp(pTq, pPushEntry);
        }
      }
      // delete entry
      for (int32_t i = 0; i < taosArrayGetSize(cachedKeys); i++) {
        void*  key = taosArrayGetP(cachedKeys, i);
        size_t kLen = *(size_t*)taosArrayGet(cachedKeyLens, i);
L
Liu Jicong 已提交
291 292 293
        if (taosHashRemove(pTq->pPushMgr, key, kLen) != 0) {
          ASSERT(0);
        }
L
Liu Jicong 已提交
294 295 296 297 298 299 300 301
      }
      taosArrayDestroyP(cachedKeys, (FDelete)taosMemoryFree);
      taosArrayDestroy(cachedKeyLens);
    }
    // unlock
    taosWUnLockLatch(&pTq->pushLock);
  }

L
Liu Jicong 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  if (vnodeIsRoleLeader(pTq->pVnode)) {
    if (msgType == TDMT_VND_SUBMIT) {
      if (taosHashGetSize(pTq->pStreamMeta->pTasks) == 0) return 0;

      void* data = taosMemoryMalloc(msgLen);
      if (data == NULL) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        tqError("failed to copy data for stream since out of memory");
        return -1;
      }
      memcpy(data, msg, msgLen);
      SSubmitReq* pReq = (SSubmitReq*)data;
      pReq->version = ver;

      tqProcessSubmitReq(pTq, data, ver);
    }
    if (msgType == TDMT_VND_DELETE) {
      tqProcessDelReq(pTq, POINTER_SHIFT(msg, sizeof(SMsgHead)), msgLen - sizeof(SMsgHead), ver);
L
Liu Jicong 已提交
320 321 322 323 324
    }
  }

  return 0;
}