vmWorker.c 14.6 KB
Newer Older
S
shm  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
S
shm  
Shengliang Guan 已提交
17
#include "vmInt.h"
S
shm  
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
static inline void vmSendRsp(SRpcMsg *pMsg, int32_t code) {
S
Shengliang Guan 已提交
20
  if (pMsg->info.handle == NULL) return;
S
Shengliang Guan 已提交
21 22
  SRpcMsg rsp = {
      .code = code,
S
Shengliang Guan 已提交
23 24
      .pCont = pMsg->info.rsp,
      .contLen = pMsg->info.rspLen,
S
Shengliang Guan 已提交
25
      .info = pMsg->info,
S
Shengliang Guan 已提交
26
  };
S
Shengliang Guan 已提交
27
  tmsgSendRsp(&rsp);
S
Shengliang Guan 已提交
28 29
}

S
Shengliang Guan 已提交
30
static void vmProcessMgmtQueue(SQueueInfo *pInfo, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
31 32 33
  SVnodeMgmt     *pMgmt = pInfo->ahandle;
  int32_t         code = -1;
  const STraceId *trace = &pMsg->info.traceId;
S
Shengliang Guan 已提交
34

dengyihao's avatar
dengyihao 已提交
35
  dGTrace("msg:%p, get from vnode-mgmt queue", pMsg);
S
Shengliang Guan 已提交
36
  switch (pMsg->msgType) {
S
Shengliang Guan 已提交
37 38 39 40 41 42 43 44
    case TDMT_DND_CREATE_VNODE:
      code = vmProcessCreateVnodeReq(pMgmt, pMsg);
      break;
    case TDMT_DND_DROP_VNODE:
      code = vmProcessDropVnodeReq(pMgmt, pMsg);
      break;
    default:
      terrno = TSDB_CODE_MSG_NOT_PROCESSED;
S
Shengliang Guan 已提交
45
      dGError("msg:%p, not processed in vnode-mgmt queue", pMsg);
S
Shengliang Guan 已提交
46 47
  }

S
Shengliang Guan 已提交
48
  if (IsReq(pMsg)) {
49 50
    if (code != 0) {
      if (terrno != 0) code = terrno;
C
Cary Xu 已提交
51
      dGError("msg:%p, failed to process since %s", pMsg, terrstr(code));
S
Shengliang Guan 已提交
52
    }
S
Shengliang Guan 已提交
53
    vmSendRsp(pMsg, code);
S
Shengliang Guan 已提交
54 55
  }

S
Shengliang Guan 已提交
56
  dGTrace("msg:%p, is freed, code:0x%x", pMsg, code);
S
Shengliang Guan 已提交
57
  rpcFreeCont(pMsg->pCont);
S
Shengliang Guan 已提交
58 59 60
  taosFreeQitem(pMsg);
}

S
Shengliang Guan 已提交
61
static void vmProcessQueryQueue(SQueueInfo *pInfo, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
62 63
  SVnodeObj      *pVnode = pInfo->ahandle;
  const STraceId *trace = &pMsg->info.traceId;
S
Shengliang Guan 已提交
64

S
Shengliang Guan 已提交
65
  dGTrace("vgId:%d, msg:%p get from vnode-query queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
66
  int32_t code = vnodeProcessQueryMsg(pVnode->pImpl, pMsg);
S
Shengliang Guan 已提交
67
  if (code != 0) {
S
Shengliang Guan 已提交
68
    if (terrno != 0) code = terrno;
C
Cary Xu 已提交
69
    dGError("vgId:%d, msg:%p failed to query since %s", pVnode->vgId, pMsg, terrstr(code));
S
Shengliang Guan 已提交
70
    vmSendRsp(pMsg, code);
S
Shengliang Guan 已提交
71
  }
S
Shengliang Guan 已提交
72

S
Shengliang Guan 已提交
73
  dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
dengyihao's avatar
dengyihao 已提交
74 75
  rpcFreeCont(pMsg->pCont);
  taosFreeQitem(pMsg);
S
shm  
Shengliang Guan 已提交
76
}
S
shm  
Shengliang Guan 已提交
77

S
Shengliang Guan 已提交
78
static void vmProcessStreamQueue(SQueueInfo *pInfo, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
79 80
  SVnodeObj      *pVnode = pInfo->ahandle;
  const STraceId *trace = &pMsg->info.traceId;
S
Shengliang Guan 已提交
81

S
Shengliang Guan 已提交
82
  dGTrace("vgId:%d, msg:%p get from vnode-stream queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
83
  int32_t code = vnodeProcessFetchMsg(pVnode->pImpl, pMsg, pInfo);
S
Shengliang Guan 已提交
84
  if (code != 0) {
S
Shengliang Guan 已提交
85
    if (terrno != 0) code = terrno;
C
Cary Xu 已提交
86
    dGError("vgId:%d, msg:%p failed to process stream since %s", pVnode->vgId, pMsg, terrstr(code));
S
Shengliang Guan 已提交
87
    vmSendRsp(pMsg, code);
S
Shengliang Guan 已提交
88
  }
S
Shengliang Guan 已提交
89

S
Shengliang Guan 已提交
90
  dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
dengyihao's avatar
dengyihao 已提交
91 92
  rpcFreeCont(pMsg->pCont);
  taosFreeQitem(pMsg);
S
Shengliang Guan 已提交
93 94
}

95 96 97
static void vmProcessFetchQueue(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs) {
  SVnodeObj *pVnode = pInfo->ahandle;
  SRpcMsg   *pMsg = NULL;
S
Shengliang Guan 已提交
98

99 100 101 102
  for (int32_t i = 0; i < numOfMsgs; ++i) {
    if (taosGetQitem(qall, (void **)&pMsg) == 0) continue;
    const STraceId *trace = &pMsg->info.traceId;
    dGTrace("vgId:%d, msg:%p get from vnode-fetch queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
103

104 105 106
    int32_t code = vnodeProcessFetchMsg(pVnode->pImpl, pMsg, pInfo);
    if (code != 0) {
      if (terrno != 0) code = terrno;
C
Cary Xu 已提交
107
      dGError("vgId:%d, msg:%p failed to fetch since %s", pVnode->vgId, pMsg, terrstr(code));
108 109 110 111 112 113 114
      vmSendRsp(pMsg, code);
    }

    dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
    rpcFreeCont(pMsg->pCont);
    taosFreeQitem(pMsg);
  }
S
Shengliang Guan 已提交
115 116
}

S
Shengliang Guan 已提交
117 118
static void vmProcessSyncQueue(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs) {
  SVnodeObj *pVnode = pInfo->ahandle;
L
Liu Jicong 已提交
119
  SRpcMsg   *pMsg = NULL;
S
shm  
Shengliang Guan 已提交
120 121

  for (int32_t i = 0; i < numOfMsgs; ++i) {
S
Shengliang Guan 已提交
122
    if (taosGetQitem(qall, (void **)&pMsg) == 0) continue;
S
Shengliang Guan 已提交
123 124
    const STraceId *trace = &pMsg->info.traceId;
    dGTrace("vgId:%d, msg:%p get from vnode-sync queue", pVnode->vgId, pMsg);
S
shm  
Shengliang Guan 已提交
125

126
    int32_t code = vnodeProcessSyncMsg(pVnode->pImpl, pMsg, NULL);  // no response here
S
Shengliang Guan 已提交
127
    dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
S
Shengliang Guan 已提交
128
    rpcFreeCont(pMsg->pCont);
M
Minghao Li 已提交
129
    taosFreeQitem(pMsg);
S
shm  
Shengliang Guan 已提交
130 131 132
  }
}

133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
static void vmProcessSyncCtrlQueue(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs) {
  SVnodeObj *pVnode = pInfo->ahandle;
  SRpcMsg   *pMsg = NULL;

  for (int32_t i = 0; i < numOfMsgs; ++i) {
    if (taosGetQitem(qall, (void **)&pMsg) == 0) continue;
    const STraceId *trace = &pMsg->info.traceId;
    dGTrace("vgId:%d, msg:%p get from vnode-sync queue", pVnode->vgId, pMsg);

    int32_t code = vnodeProcessSyncCtrlMsg(pVnode->pImpl, pMsg, NULL);  // no response here
    dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
    rpcFreeCont(pMsg->pCont);
    taosFreeQitem(pMsg);
  }
}

S
Shengliang Guan 已提交
149
static int32_t vmPutMsgToQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg, EQueueType qtype) {
S
Shengliang Guan 已提交
150 151 152
  const STraceId *trace = &pMsg->info.traceId;
  SMsgHead       *pHead = pMsg->pCont;
  int32_t         code = 0;
S
Shengliang Guan 已提交
153

D
dapan1121 已提交
154 155
  pHead->contLen = ntohl(pHead->contLen);
  pHead->vgId = ntohl(pHead->vgId);
S
shm  
Shengliang Guan 已提交
156 157 158

  SVnodeObj *pVnode = vmAcquireVnode(pMgmt, pHead->vgId);
  if (pVnode == NULL) {
159 160
    dGError("vgId:%d, msg:%p failed to put into vnode queue since %s, type:%s qtype:%d", pHead->vgId, pMsg, terrstr(),
            TMSG_INFO(pMsg->msgType), qtype);
S
Shengliang Guan 已提交
161
    return terrno != 0 ? terrno : -1;
S
shm  
Shengliang Guan 已提交
162 163
  }

S
Shengliang Guan 已提交
164
  switch (qtype) {
S
Shengliang Guan 已提交
165
    case QUERY_QUEUE:
C
Cary Xu 已提交
166 167 168
      if ((pMsg->msgType == TDMT_SCH_QUERY) && (grantCheck(TSDB_GRANT_TIME) != TSDB_CODE_SUCCESS)) {
        terrno = TSDB_CODE_GRANT_EXPIRED;
        code = terrno;
C
Cary Xu 已提交
169
        dDebug("vgId:%d, msg:%p put into vnode-query queue failed since %s", pVnode->vgId, pMsg, terrstr(code));
C
Cary Xu 已提交
170 171 172 173 174
      } else {
        vnodePreprocessQueryMsg(pVnode->pImpl, pMsg);
        dGTrace("vgId:%d, msg:%p put into vnode-query queue", pVnode->vgId, pMsg);
        taosWriteQitem(pVnode->pQueryQ, pMsg);
      }
S
Shengliang Guan 已提交
175
      break;
S
Shengliang Guan 已提交
176 177
    case STREAM_QUEUE:
      dGTrace("vgId:%d, msg:%p put into vnode-stream queue", pVnode->vgId, pMsg);
L
Liu Jicong 已提交
178 179 180 181 182
      if (pMsg->msgType == TDMT_STREAM_TASK_DISPATCH) {
        vnodeEnqueueStreamMsg(pVnode->pImpl, pMsg);
      } else {
        taosWriteQitem(pVnode->pStreamQ, pMsg);
      }
S
Shengliang Guan 已提交
183
      break;
S
Shengliang Guan 已提交
184
    case FETCH_QUEUE:
S
Shengliang Guan 已提交
185
      dGTrace("vgId:%d, msg:%p put into vnode-fetch queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
186
      taosWriteQitem(pVnode->pFetchQ, pMsg);
S
Shengliang Guan 已提交
187
      break;
S
Shengliang Guan 已提交
188
    case WRITE_QUEUE:
wafwerar's avatar
wafwerar 已提交
189 190 191
      if (!osDataSpaceAvailable()) {
        terrno = TSDB_CODE_VND_NO_DISKSPACE;
        code = terrno;
C
Cary Xu 已提交
192
        dError("vgId:%d, msg:%p put into vnode-write queue failed since %s", pVnode->vgId, pMsg, terrstr(code));
wafwerar's avatar
wafwerar 已提交
193
      } else if ((pMsg->msgType == TDMT_VND_SUBMIT) && (grantCheck(TSDB_GRANT_STORAGE) != TSDB_CODE_SUCCESS)) {
C
Cary Xu 已提交
194 195
        terrno = TSDB_CODE_VND_NO_WRITE_AUTH;
        code = terrno;
C
Cary Xu 已提交
196
        dDebug("vgId:%d, msg:%p put into vnode-write queue failed since %s", pVnode->vgId, pMsg, terrstr(code));
C
Cary Xu 已提交
197 198 199
      } else {
        dGTrace("vgId:%d, msg:%p put into vnode-write queue", pVnode->vgId, pMsg);
        taosWriteQitem(pVnode->pWriteQ, pMsg);
200 201 202 203 204 205 206 207 208 209
#if 0  // tests for batch writes
        if (pMsg->msgType == TDMT_VND_CREATE_TABLE) {
          SRpcMsg *pDup = taosAllocateQitem(sizeof(SRpcMsg), RPC_QITEM);
          memcpy(pDup, pMsg, sizeof(SRpcMsg));
          pDup->pCont = rpcMallocCont(pMsg->contLen);
          memcpy(pDup->pCont, pMsg->pCont, pMsg->contLen);
          pDup->info.handle = NULL;
          taosWriteQitem(pVnode->pWriteQ, pDup);
        }
#endif
C
Cary Xu 已提交
210
      }
S
Shengliang Guan 已提交
211 212
      break;
    case SYNC_QUEUE:
S
Shengliang Guan 已提交
213
      dGTrace("vgId:%d, msg:%p put into vnode-sync queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
214
      taosWriteQitem(pVnode->pSyncQ, pMsg);
S
Shengliang Guan 已提交
215
      break;
216 217 218 219
    case SYNC_CTRL_QUEUE:
      dGTrace("vgId:%d, msg:%p put into vnode-sync-ctrl queue", pVnode->vgId, pMsg);
      taosWriteQitem(pVnode->pSyncCtrlQ, pMsg);
      break;
S
Shengliang Guan 已提交
220
    case APPLY_QUEUE:
S
Shengliang Guan 已提交
221
      dGTrace("vgId:%d, msg:%p put into vnode-apply queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
222 223
      taosWriteQitem(pVnode->pApplyQ, pMsg);
      break;
S
Shengliang Guan 已提交
224
    default:
S
Shengliang Guan 已提交
225
      code = -1;
S
Shengliang Guan 已提交
226 227 228
      terrno = TSDB_CODE_INVALID_PARA;
      break;
  }
S
shm  
Shengliang Guan 已提交
229 230 231

  vmReleaseVnode(pMgmt, pVnode);
  return code;
S
shm  
Shengliang Guan 已提交
232 233
}

S
Shengliang Guan 已提交
234
int32_t vmPutMsgToSyncQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) { return vmPutMsgToQueue(pMgmt, pMsg, SYNC_QUEUE); }
S
shm  
Shengliang Guan 已提交
235

236 237 238 239
int32_t vmPutMsgToSyncCtrlQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) {
  return vmPutMsgToQueue(pMgmt, pMsg, SYNC_CTRL_QUEUE);
}

S
Shengliang Guan 已提交
240
int32_t vmPutMsgToWriteQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) { return vmPutMsgToQueue(pMgmt, pMsg, WRITE_QUEUE); }
S
shm  
Shengliang Guan 已提交
241

S
Shengliang Guan 已提交
242
int32_t vmPutMsgToQueryQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) { return vmPutMsgToQueue(pMgmt, pMsg, QUERY_QUEUE); }
S
shm  
Shengliang Guan 已提交
243

S
Shengliang Guan 已提交
244
int32_t vmPutMsgToFetchQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) { return vmPutMsgToQueue(pMgmt, pMsg, FETCH_QUEUE); }
S
shm  
Shengliang Guan 已提交
245

S
Shengliang Guan 已提交
246 247
int32_t vmPutMsgToStreamQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) { return vmPutMsgToQueue(pMgmt, pMsg, STREAM_QUEUE); }

S
Shengliang Guan 已提交
248
int32_t vmPutMsgToMgmtQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
249 250
  const STraceId *trace = &pMsg->info.traceId;
  dGTrace("msg:%p, put into vnode-mgmt queue", pMsg);
S
Shengliang Guan 已提交
251
  taosWriteQitem(pMgmt->mgmtWorker.queue, pMsg);
S
Shengliang Guan 已提交
252
  return 0;
S
shm  
Shengliang Guan 已提交
253 254
}

S
Shengliang Guan 已提交
255
int32_t vmPutRpcMsgToQueue(SVnodeMgmt *pMgmt, EQueueType qtype, SRpcMsg *pRpc) {
S
Shengliang Guan 已提交
256
  SRpcMsg *pMsg = taosAllocateQitem(sizeof(SRpcMsg), RPC_QITEM);
S
Shengliang Guan 已提交
257
  if (pMsg == NULL) {
dengyihao's avatar
dengyihao 已提交
258
    rpcFreeCont(pRpc->pCont);
S
Shengliang Guan 已提交
259 260 261
    pRpc->pCont = NULL;
    return -1;
  }
S
Shengliang Guan 已提交
262

S
Shengliang Guan 已提交
263
  SMsgHead *pHead = pRpc->pCont;
264
  dTrace("vgId:%d, msg:%p is created, type:%s", pHead->vgId, pMsg, TMSG_INFO(pRpc->msgType));
S
Shengliang Guan 已提交
265

S
Shengliang Guan 已提交
266 267 268
  pHead->contLen = htonl(pHead->contLen);
  pHead->vgId = htonl(pHead->vgId);
  memcpy(pMsg, pRpc, sizeof(SRpcMsg));
S
Shengliang Guan 已提交
269 270 271 272 273 274

  int32_t code = vmPutMsgToQueue(pMgmt, pMsg, qtype);
  if (code != 0) {
    dTrace("msg:%p, is freed", pMsg);
    rpcFreeCont(pMsg->pCont);
    pRpc->pCont = NULL;
275
    taosFreeQitem(pMsg);
S
Shengliang Guan 已提交
276 277 278
  }

  return code;
S
shm  
Shengliang Guan 已提交
279 280
}

S
Shengliang 已提交
281
int32_t vmGetQueueSize(SVnodeMgmt *pMgmt, int32_t vgId, EQueueType qtype) {
S
Shengliang Guan 已提交
282
  int32_t    size = -1;
S
Shengliang 已提交
283
  SVnodeObj *pVnode = vmAcquireVnode(pMgmt, vgId);
S
Shengliang Guan 已提交
284 285 286
  if (pVnode != NULL) {
    switch (qtype) {
      case WRITE_QUEUE:
287
        size = taosQueueItemSize(pVnode->pWriteQ);
S
Shengliang Guan 已提交
288 289
        break;
      case SYNC_QUEUE:
290
        size = taosQueueItemSize(pVnode->pSyncQ);
S
Shengliang Guan 已提交
291 292
        break;
      case APPLY_QUEUE:
293
        size = taosQueueItemSize(pVnode->pApplyQ);
S
Shengliang Guan 已提交
294
        break;
S
Shengliang Guan 已提交
295
      case QUERY_QUEUE:
296
        size = taosQueueItemSize(pVnode->pQueryQ);
S
Shengliang Guan 已提交
297 298
        break;
      case FETCH_QUEUE:
299
        size = taosQueueItemSize(pVnode->pFetchQ);
S
Shengliang Guan 已提交
300
        break;
S
Shengliang Guan 已提交
301 302 303
      case STREAM_QUEUE:
        size = taosQueueItemSize(pVnode->pStreamQ);
        break;
S
Shengliang Guan 已提交
304 305 306
      default:
        break;
    }
307
    vmReleaseVnode(pMgmt, pVnode);
S
Shengliang Guan 已提交
308 309 310 311
  }
  return size;
}

S
Shengliang 已提交
312
int32_t vmAllocQueue(SVnodeMgmt *pMgmt, SVnodeObj *pVnode) {
313
  pVnode->pWriteQ = tWWorkerAllocQueue(&pMgmt->writePool, pVnode->pImpl, (FItems)vnodeProposeWriteMsg);
S
shm  
Shengliang Guan 已提交
314
  pVnode->pSyncQ = tWWorkerAllocQueue(&pMgmt->syncPool, pVnode, (FItems)vmProcessSyncQueue);
315
  pVnode->pSyncCtrlQ = tWWorkerAllocQueue(&pMgmt->syncCtrlPool, pVnode, (FItems)vmProcessSyncCtrlQueue);
316
  pVnode->pApplyQ = tWWorkerAllocQueue(&pMgmt->applyPool, pVnode->pImpl, (FItems)vnodeApplyWriteMsg);
S
shm  
Shengliang Guan 已提交
317
  pVnode->pQueryQ = tQWorkerAllocQueue(&pMgmt->queryPool, pVnode, (FItem)vmProcessQueryQueue);
S
Shengliang Guan 已提交
318
  pVnode->pStreamQ = tQWorkerAllocQueue(&pMgmt->streamPool, pVnode, (FItem)vmProcessStreamQueue);
319
  pVnode->pFetchQ = tWWorkerAllocQueue(&pMgmt->fetchPool, pVnode, (FItems)vmProcessFetchQueue);
S
shm  
Shengliang Guan 已提交
320

S
Shengliang Guan 已提交
321
  if (pVnode->pWriteQ == NULL || pVnode->pSyncQ == NULL || pVnode->pApplyQ == NULL || pVnode->pQueryQ == NULL ||
S
Shengliang Guan 已提交
322
      pVnode->pStreamQ == NULL || pVnode->pFetchQ == NULL) {
S
shm  
Shengliang Guan 已提交
323 324 325 326
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

327 328 329 330
  dDebug("vgId:%d, write-queue:%p is alloced", pVnode->vgId, pVnode->pWriteQ);
  dDebug("vgId:%d, sync-queue:%p is alloced", pVnode->vgId, pVnode->pSyncQ);
  dDebug("vgId:%d, apply-queue:%p is alloced", pVnode->vgId, pVnode->pApplyQ);
  dDebug("vgId:%d, query-queue:%p is alloced", pVnode->vgId, pVnode->pQueryQ);
S
Shengliang Guan 已提交
331
  dDebug("vgId:%d, stream-queue:%p is alloced", pVnode->vgId, pVnode->pStreamQ);
332
  dDebug("vgId:%d, fetch-queue:%p is alloced", pVnode->vgId, pVnode->pFetchQ);
S
shm  
Shengliang Guan 已提交
333 334 335
  return 0;
}

S
Shengliang 已提交
336
void vmFreeQueue(SVnodeMgmt *pMgmt, SVnodeObj *pVnode) {
S
shm  
Shengliang Guan 已提交
337
  tWWorkerFreeQueue(&pMgmt->writePool, pVnode->pWriteQ);
S
Shengliang Guan 已提交
338
  tWWorkerFreeQueue(&pMgmt->applyPool, pVnode->pApplyQ);
339
  tWWorkerFreeQueue(&pMgmt->syncPool, pVnode->pSyncQ);
340
  tWWorkerFreeQueue(&pMgmt->syncCtrlPool, pVnode->pSyncCtrlQ);
S
Shengliang Guan 已提交
341
  tQWorkerFreeQueue(&pMgmt->queryPool, pVnode->pQueryQ);
S
Shengliang Guan 已提交
342
  tQWorkerFreeQueue(&pMgmt->streamPool, pVnode->pStreamQ);
343
  tWWorkerFreeQueue(&pMgmt->fetchPool, pVnode->pFetchQ);
S
shm  
Shengliang Guan 已提交
344 345
  pVnode->pWriteQ = NULL;
  pVnode->pSyncQ = NULL;
S
Shengliang Guan 已提交
346
  pVnode->pApplyQ = NULL;
S
shm  
Shengliang Guan 已提交
347
  pVnode->pQueryQ = NULL;
S
Shengliang Guan 已提交
348
  pVnode->pStreamQ = NULL;
S
Shengliang Guan 已提交
349
  pVnode->pFetchQ = NULL;
S
Shengliang Guan 已提交
350
  dDebug("vgId:%d, queue is freed", pVnode->vgId);
S
shm  
Shengliang Guan 已提交
351 352
}

S
Shengliang 已提交
353
int32_t vmStartWorker(SVnodeMgmt *pMgmt) {
S
shm  
Shengliang Guan 已提交
354 355
  SQWorkerPool *pQPool = &pMgmt->queryPool;
  pQPool->name = "vnode-query";
S
Shengliang Guan 已提交
356 357
  pQPool->min = tsNumOfVnodeQueryThreads;
  pQPool->max = tsNumOfVnodeQueryThreads;
S
shm  
Shengliang Guan 已提交
358 359
  if (tQWorkerInit(pQPool) != 0) return -1;

S
Shengliang Guan 已提交
360 361 362 363 364 365
  SQWorkerPool *pStreamPool = &pMgmt->streamPool;
  pStreamPool->name = "vnode-stream";
  pStreamPool->min = tsNumOfVnodeStreamThreads;
  pStreamPool->max = tsNumOfVnodeStreamThreads;
  if (tQWorkerInit(pStreamPool) != 0) return -1;

366
  SWWorkerPool *pFPool = &pMgmt->fetchPool;
S
shm  
Shengliang Guan 已提交
367
  pFPool->name = "vnode-fetch";
S
Shengliang Guan 已提交
368
  pFPool->max = tsNumOfVnodeFetchThreads;
369
  if (tWWorkerInit(pFPool) != 0) return -1;
S
shm  
Shengliang Guan 已提交
370 371 372

  SWWorkerPool *pWPool = &pMgmt->writePool;
  pWPool->name = "vnode-write";
S
Shengliang Guan 已提交
373
  pWPool->max = tsNumOfVnodeWriteThreads;
S
shm  
Shengliang Guan 已提交
374 375
  if (tWWorkerInit(pWPool) != 0) return -1;

S
Shengliang Guan 已提交
376 377 378 379 380
  SWWorkerPool *pAPool = &pMgmt->applyPool;
  pAPool->name = "vnode-apply";
  pAPool->max = tsNumOfVnodeWriteThreads;
  if (tWWorkerInit(pAPool) != 0) return -1;

S
Shengliang Guan 已提交
381 382 383 384 385
  SWWorkerPool *pSPool = &pMgmt->syncPool;
  pSPool->name = "vnode-sync";
  pSPool->max = tsNumOfVnodeSyncThreads;
  if (tWWorkerInit(pSPool) != 0) return -1;

386 387 388 389 390
  SWWorkerPool *pSCPool = &pMgmt->syncCtrlPool;
  pSCPool->name = "vnode-sync-ctrl";
  pSCPool->max = tsNumOfVnodeSyncThreads;
  if (tWWorkerInit(pSCPool) != 0) return -1;

S
Shengliang Guan 已提交
391
  SSingleWorkerCfg mgmtCfg = {
S
Shengliang Guan 已提交
392 393 394
      .min = 1,
      .max = 1,
      .name = "vnode-mgmt",
S
Shengliang Guan 已提交
395
      .fp = (FItem)vmProcessMgmtQueue,
S
Shengliang Guan 已提交
396 397
      .param = pMgmt,
  };
S
Shengliang Guan 已提交
398
  if (tSingleWorkerInit(&pMgmt->mgmtWorker, &mgmtCfg) != 0) return -1;
S
shm  
Shengliang Guan 已提交
399

S
Shengliang Guan 已提交
400
  dDebug("vnode workers are initialized");
S
shm  
Shengliang Guan 已提交
401 402 403
  return 0;
}

S
Shengliang 已提交
404
void vmStopWorker(SVnodeMgmt *pMgmt) {
S
Shengliang Guan 已提交
405
  tSingleWorkerCleanup(&pMgmt->mgmtWorker);
S
shm  
Shengliang Guan 已提交
406
  tWWorkerCleanup(&pMgmt->writePool);
S
Shengliang Guan 已提交
407
  tWWorkerCleanup(&pMgmt->applyPool);
S
shm  
Shengliang Guan 已提交
408
  tWWorkerCleanup(&pMgmt->syncPool);
409
  tWWorkerCleanup(&pMgmt->syncCtrlPool);
S
Shengliang Guan 已提交
410
  tQWorkerCleanup(&pMgmt->queryPool);
S
Shengliang Guan 已提交
411
  tQWorkerCleanup(&pMgmt->streamPool);
412
  tWWorkerCleanup(&pMgmt->fetchPool);
S
Shengliang Guan 已提交
413
  dDebug("vnode workers are closed");
S
shm  
Shengliang Guan 已提交
414
}