vmWorker.c 13.8 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
    case TDMT_DND_CREATE_VNODE:
      code = vmProcessCreateVnodeReq(pMgmt, pMsg);
      break;
    case TDMT_DND_DROP_VNODE:
      code = vmProcessDropVnodeReq(pMgmt, pMsg);
      break;
S
Shengliang Guan 已提交
43 44 45
    case TDMT_VND_ALTER_REPLICA:
      code = vmProcessAlterVnodeReq(pMgmt, pMsg);
      break;
S
Shengliang Guan 已提交
46 47
    default:
      terrno = TSDB_CODE_MSG_NOT_PROCESSED;
S
Shengliang Guan 已提交
48
      dGError("msg:%p, not processed in vnode-mgmt queue", pMsg);
S
Shengliang Guan 已提交
49 50
  }

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

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

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

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

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

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

S
Shengliang Guan 已提交
85
  dGTrace("vgId:%d, msg:%p get from vnode-stream queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
86
  int32_t code = vnodeProcessFetchMsg(pVnode->pImpl, pMsg, pInfo);
S
Shengliang Guan 已提交
87
  if (code != 0) {
S
Shengliang Guan 已提交
88
    if (terrno != 0) code = terrno;
L
Liu Jicong 已提交
89 90 91 92 93 94
    if (pMsg) {
      dGError("vgId:%d, msg:%p failed to process stream msg %s since %s", pVnode->vgId, pMsg, TMSG_INFO(pMsg->msgType),
              terrstr(code));
    } else {
      dGError("vgId:%d, msg:%p failed to process stream empty msg since %s", pVnode->vgId, pMsg, terrstr(code));
    }
S
Shengliang Guan 已提交
95
    vmSendRsp(pMsg, code);
S
Shengliang Guan 已提交
96
  }
S
Shengliang Guan 已提交
97

S
Shengliang Guan 已提交
98
  dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
dengyihao's avatar
dengyihao 已提交
99 100
  rpcFreeCont(pMsg->pCont);
  taosFreeQitem(pMsg);
S
Shengliang Guan 已提交
101 102
}

103 104 105
static void vmProcessFetchQueue(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs) {
  SVnodeObj *pVnode = pInfo->ahandle;
  SRpcMsg   *pMsg = NULL;
S
Shengliang Guan 已提交
106

107 108 109 110
  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 已提交
111

112 113 114
    int32_t code = vnodeProcessFetchMsg(pVnode->pImpl, pMsg, pInfo);
    if (code != 0) {
      if (terrno != 0) code = terrno;
C
Cary Xu 已提交
115
      dGError("vgId:%d, msg:%p failed to fetch since %s", pVnode->vgId, pMsg, terrstr(code));
116 117 118 119 120 121 122
      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 已提交
123 124
}

S
Shengliang Guan 已提交
125 126
static void vmProcessSyncQueue(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs) {
  SVnodeObj *pVnode = pInfo->ahandle;
L
Liu Jicong 已提交
127
  SRpcMsg   *pMsg = NULL;
S
shm  
Shengliang Guan 已提交
128 129

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

134
    int32_t code = vnodeProcessSyncMsg(pVnode->pImpl, pMsg, NULL);  // no response here
S
Shengliang Guan 已提交
135
    dGTrace("vgId:%d, msg:%p is freed, code:0x%x", pVnode->vgId, pMsg, code);
S
Shengliang Guan 已提交
136
    rpcFreeCont(pMsg->pCont);
M
Minghao Li 已提交
137
    taosFreeQitem(pMsg);
S
shm  
Shengliang Guan 已提交
138 139 140
  }
}

S
Shengliang Guan 已提交
141
static int32_t vmPutMsgToQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg, EQueueType qtype) {
S
Shengliang Guan 已提交
142 143 144
  const STraceId *trace = &pMsg->info.traceId;
  SMsgHead       *pHead = pMsg->pCont;
  int32_t         code = 0;
S
Shengliang Guan 已提交
145

D
dapan1121 已提交
146 147
  pHead->contLen = ntohl(pHead->contLen);
  pHead->vgId = ntohl(pHead->vgId);
S
shm  
Shengliang Guan 已提交
148 149 150

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

S
Shengliang Guan 已提交
156
  switch (qtype) {
S
Shengliang Guan 已提交
157
    case QUERY_QUEUE:
158 159 160 161 162 163 164
      code = vnodePreprocessQueryMsg(pVnode->pImpl, pMsg);
      if (code) {
        dError("vgId:%d, msg:%p preprocess query msg failed since %s", pVnode->vgId, pMsg, terrstr(code));
      } else {
        dGTrace("vgId:%d, msg:%p put into vnode-query queue", pVnode->vgId, pMsg);
        taosWriteQitem(pVnode->pQueryQ, pMsg);
      }
S
Shengliang Guan 已提交
165
      break;
S
Shengliang Guan 已提交
166 167
    case STREAM_QUEUE:
      dGTrace("vgId:%d, msg:%p put into vnode-stream queue", pVnode->vgId, pMsg);
L
Liu Jicong 已提交
168 169 170 171 172
      if (pMsg->msgType == TDMT_STREAM_TASK_DISPATCH) {
        vnodeEnqueueStreamMsg(pVnode->pImpl, pMsg);
      } else {
        taosWriteQitem(pVnode->pStreamQ, pMsg);
      }
S
Shengliang Guan 已提交
173
      break;
S
Shengliang Guan 已提交
174
    case FETCH_QUEUE:
S
Shengliang Guan 已提交
175
      dGTrace("vgId:%d, msg:%p put into vnode-fetch queue", pVnode->vgId, pMsg);
S
Shengliang Guan 已提交
176
      taosWriteQitem(pVnode->pFetchQ, pMsg);
S
Shengliang Guan 已提交
177
      break;
S
Shengliang Guan 已提交
178
    case WRITE_QUEUE:
wafwerar's avatar
wafwerar 已提交
179
      if (!osDataSpaceAvailable()) {
180
        terrno = TSDB_CODE_NO_DISKSPACE;
wafwerar's avatar
wafwerar 已提交
181
        code = terrno;
C
Cary Xu 已提交
182
        dError("vgId:%d, msg:%p put into vnode-write queue failed since %s", pVnode->vgId, pMsg, terrstr(code));
wafwerar's avatar
wafwerar 已提交
183
      } else if ((pMsg->msgType == TDMT_VND_SUBMIT) && (grantCheck(TSDB_GRANT_STORAGE) != TSDB_CODE_SUCCESS)) {
C
Cary Xu 已提交
184 185
        terrno = TSDB_CODE_VND_NO_WRITE_AUTH;
        code = terrno;
C
Cary Xu 已提交
186
        dDebug("vgId:%d, msg:%p put into vnode-write queue failed since %s", pVnode->vgId, pMsg, terrstr(code));
C
Cary Xu 已提交
187 188
      } else {
        dGTrace("vgId:%d, msg:%p put into vnode-write queue", pVnode->vgId, pMsg);
189
        taosWriteQitem(pVnode->pWriteW.queue, pMsg);
C
Cary Xu 已提交
190
      }
S
Shengliang Guan 已提交
191 192
      break;
    case SYNC_QUEUE:
S
Shengliang Guan 已提交
193
      dGTrace("vgId:%d, msg:%p put into vnode-sync queue", pVnode->vgId, pMsg);
194
      taosWriteQitem(pVnode->pSyncW.queue, pMsg);
S
Shengliang Guan 已提交
195
      break;
196 197
    case SYNC_CTRL_QUEUE:
      dGTrace("vgId:%d, msg:%p put into vnode-sync-ctrl queue", pVnode->vgId, pMsg);
198
      taosWriteQitem(pVnode->pSyncCtrlW.queue, pMsg);
199
      break;
S
Shengliang Guan 已提交
200
    case APPLY_QUEUE:
S
Shengliang Guan 已提交
201
      dGTrace("vgId:%d, msg:%p put into vnode-apply queue", pVnode->vgId, pMsg);
202
      taosWriteQitem(pVnode->pApplyW.queue, pMsg);
S
Shengliang Guan 已提交
203
      break;
S
Shengliang Guan 已提交
204
    default:
S
Shengliang Guan 已提交
205
      code = -1;
S
Shengliang Guan 已提交
206 207 208
      terrno = TSDB_CODE_INVALID_PARA;
      break;
  }
S
shm  
Shengliang Guan 已提交
209 210 211

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

214 215 216
int32_t vmPutMsgToSyncCtrlQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) {
  return vmPutMsgToQueue(pMgmt, pMsg, SYNC_CTRL_QUEUE);
}
S
shm  
Shengliang Guan 已提交
217

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

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

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

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

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

S
Shengliang Guan 已提交
228
int32_t vmPutMsgToMgmtQueue(SVnodeMgmt *pMgmt, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
229 230
  const STraceId *trace = &pMsg->info.traceId;
  dGTrace("msg:%p, put into vnode-mgmt queue", pMsg);
S
Shengliang Guan 已提交
231
  taosWriteQitem(pMgmt->mgmtWorker.queue, pMsg);
S
Shengliang Guan 已提交
232
  return 0;
S
shm  
Shengliang Guan 已提交
233 234
}

S
Shengliang Guan 已提交
235
int32_t vmPutRpcMsgToQueue(SVnodeMgmt *pMgmt, EQueueType qtype, SRpcMsg *pRpc) {
236 237 238 239 240 241 242 243
  if (pRpc->contLen < sizeof(SMsgHead)) {
    dError("invalid rpc msg since no msg head at pCont. pRpc:%p, type:%s, len:%d", pRpc, TMSG_INFO(pRpc->msgType),
           pRpc->contLen);
    rpcFreeCont(pRpc->pCont);
    pRpc->pCont = NULL;
    return -1;
  }

S
Shengliang Guan 已提交
244
  SRpcMsg *pMsg = taosAllocateQitem(sizeof(SRpcMsg), RPC_QITEM, pRpc->contLen);
S
Shengliang Guan 已提交
245
  if (pMsg == NULL) {
dengyihao's avatar
dengyihao 已提交
246
    rpcFreeCont(pRpc->pCont);
S
Shengliang Guan 已提交
247 248 249
    pRpc->pCont = NULL;
    return -1;
  }
S
Shengliang Guan 已提交
250

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

S
Shengliang Guan 已提交
254 255 256
  pHead->contLen = htonl(pHead->contLen);
  pHead->vgId = htonl(pHead->vgId);
  memcpy(pMsg, pRpc, sizeof(SRpcMsg));
257
  pRpc->pCont = NULL;
S
Shengliang Guan 已提交
258 259 260 261 262

  int32_t code = vmPutMsgToQueue(pMgmt, pMsg, qtype);
  if (code != 0) {
    dTrace("msg:%p, is freed", pMsg);
    rpcFreeCont(pMsg->pCont);
263
    taosFreeQitem(pMsg);
S
Shengliang Guan 已提交
264 265 266
  }

  return code;
S
shm  
Shengliang Guan 已提交
267 268
}

S
Shengliang 已提交
269
int32_t vmGetQueueSize(SVnodeMgmt *pMgmt, int32_t vgId, EQueueType qtype) {
S
Shengliang Guan 已提交
270
  int32_t    size = -1;
S
Shengliang 已提交
271
  SVnodeObj *pVnode = vmAcquireVnode(pMgmt, vgId);
S
Shengliang Guan 已提交
272 273 274
  if (pVnode != NULL) {
    switch (qtype) {
      case WRITE_QUEUE:
275
        size = taosQueueItemSize(pVnode->pWriteW.queue);
S
Shengliang Guan 已提交
276 277
        break;
      case SYNC_QUEUE:
278
        size = taosQueueItemSize(pVnode->pSyncW.queue);
S
Shengliang Guan 已提交
279 280
        break;
      case APPLY_QUEUE:
281
        size = taosQueueItemSize(pVnode->pApplyW.queue);
S
Shengliang Guan 已提交
282
        break;
S
Shengliang Guan 已提交
283
      case QUERY_QUEUE:
284
        size = taosQueueItemSize(pVnode->pQueryQ);
S
Shengliang Guan 已提交
285 286
        break;
      case FETCH_QUEUE:
287
        size = taosQueueItemSize(pVnode->pFetchQ);
S
Shengliang Guan 已提交
288
        break;
S
Shengliang Guan 已提交
289 290 291
      case STREAM_QUEUE:
        size = taosQueueItemSize(pVnode->pStreamQ);
        break;
S
Shengliang Guan 已提交
292 293 294
      default:
        break;
    }
295
    vmReleaseVnode(pMgmt, pVnode);
S
Shengliang Guan 已提交
296
  }
S
Shengliang Guan 已提交
297
  if (size < 0) {
S
Shengliang Guan 已提交
298
    dTrace("vgId:%d, can't get size from queue since %s, qtype:%d", vgId, terrstr(), qtype);
S
Shengliang Guan 已提交
299 300
    size = 0;
  }
S
Shengliang Guan 已提交
301 302 303
  return size;
}

S
Shengliang 已提交
304
int32_t vmAllocQueue(SVnodeMgmt *pMgmt, SVnodeObj *pVnode) {
305 306 307
  SMultiWorkerCfg wcfg = {.max = 1, .name = "vnode-write", .fp = (FItems)vnodeProposeWriteMsg, .param = pVnode->pImpl};
  SMultiWorkerCfg scfg = {.max = 1, .name = "vnode-sync", .fp = (FItems)vmProcessSyncQueue, .param = pVnode};
  SMultiWorkerCfg sccfg = {.max = 1, .name = "vnode-sync-ctrl", .fp = (FItems)vmProcessSyncQueue, .param = pVnode};
308
  SMultiWorkerCfg acfg = {.max = 1, .name = "vnode-apply", .fp = (FItems)vnodeApplyWriteMsg, .param = pVnode->pImpl};
309 310 311 312 313
  (void)tMultiWorkerInit(&pVnode->pWriteW, &wcfg);
  (void)tMultiWorkerInit(&pVnode->pSyncW, &scfg);
  (void)tMultiWorkerInit(&pVnode->pSyncCtrlW, &sccfg);
  (void)tMultiWorkerInit(&pVnode->pApplyW, &acfg);

S
shm  
Shengliang Guan 已提交
314
  pVnode->pQueryQ = tQWorkerAllocQueue(&pMgmt->queryPool, pVnode, (FItem)vmProcessQueryQueue);
S
Shengliang Guan 已提交
315
  pVnode->pStreamQ = tQWorkerAllocQueue(&pMgmt->streamPool, pVnode, (FItem)vmProcessStreamQueue);
316
  pVnode->pFetchQ = tWWorkerAllocQueue(&pMgmt->fetchPool, pVnode, (FItems)vmProcessFetchQueue);
S
shm  
Shengliang Guan 已提交
317

318 319
  if (pVnode->pWriteW.queue == NULL || pVnode->pSyncW.queue == NULL || pVnode->pSyncCtrlW.queue == NULL ||
      pVnode->pApplyW.queue == NULL || pVnode->pQueryQ == NULL || pVnode->pStreamQ == NULL || pVnode->pFetchQ == NULL) {
S
shm  
Shengliang Guan 已提交
320 321 322 323
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

324 325 326 327 328 329 330 331
  dInfo("vgId:%d, write-queue:%p is alloced, thread:%08" PRId64, pVnode->vgId, pVnode->pWriteW.queue,
        pVnode->pWriteW.queue->threadId);
  dInfo("vgId:%d, sync-queue:%p is alloced, thread:%08" PRId64, pVnode->vgId, pVnode->pSyncW.queue,
        pVnode->pSyncW.queue->threadId);
  dInfo("vgId:%d, sync-ctrl-queue:%p is alloced, thread:%08" PRId64, pVnode->vgId, pVnode->pSyncCtrlW.queue,
        pVnode->pSyncCtrlW.queue->threadId);
  dInfo("vgId:%d, apply-queue:%p is alloced, thread:%08" PRId64, pVnode->vgId, pVnode->pApplyW.queue,
        pVnode->pApplyW.queue->threadId);
332 333 334 335
  dInfo("vgId:%d, query-queue:%p is alloced", pVnode->vgId, pVnode->pQueryQ);
  dInfo("vgId:%d, fetch-queue:%p is alloced, thread:%08" PRId64, pVnode->vgId, pVnode->pFetchQ,
        pVnode->pFetchQ->threadId);
  dInfo("vgId:%d, stream-queue:%p is alloced", pVnode->vgId, pVnode->pStreamQ);
S
shm  
Shengliang Guan 已提交
336 337 338
  return 0;
}

S
Shengliang 已提交
339
void vmFreeQueue(SVnodeMgmt *pMgmt, SVnodeObj *pVnode) {
S
Shengliang Guan 已提交
340
  tQWorkerFreeQueue(&pMgmt->queryPool, pVnode->pQueryQ);
S
Shengliang Guan 已提交
341
  tQWorkerFreeQueue(&pMgmt->streamPool, pVnode->pStreamQ);
342
  tWWorkerFreeQueue(&pMgmt->fetchPool, pVnode->pFetchQ);
S
shm  
Shengliang Guan 已提交
343
  pVnode->pQueryQ = NULL;
S
Shengliang Guan 已提交
344
  pVnode->pStreamQ = NULL;
S
Shengliang Guan 已提交
345
  pVnode->pFetchQ = NULL;
S
Shengliang Guan 已提交
346
  dDebug("vgId:%d, queue is freed", pVnode->vgId);
S
shm  
Shengliang Guan 已提交
347 348
}

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

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

362
  SWWorkerPool *pFPool = &pMgmt->fetchPool;
S
shm  
Shengliang Guan 已提交
363
  pFPool->name = "vnode-fetch";
S
Shengliang Guan 已提交
364
  pFPool->max = tsNumOfVnodeFetchThreads;
365
  if (tWWorkerInit(pFPool) != 0) return -1;
S
shm  
Shengliang Guan 已提交
366

S
Shengliang Guan 已提交
367
  SSingleWorkerCfg mgmtCfg = {
S
Shengliang Guan 已提交
368 369 370
      .min = 1,
      .max = 1,
      .name = "vnode-mgmt",
S
Shengliang Guan 已提交
371
      .fp = (FItem)vmProcessMgmtQueue,
S
Shengliang Guan 已提交
372 373
      .param = pMgmt,
  };
S
Shengliang Guan 已提交
374
  if (tSingleWorkerInit(&pMgmt->mgmtWorker, &mgmtCfg) != 0) return -1;
S
shm  
Shengliang Guan 已提交
375

S
Shengliang Guan 已提交
376
  dDebug("vnode workers are initialized");
S
shm  
Shengliang Guan 已提交
377 378 379
  return 0;
}

S
Shengliang 已提交
380
void vmStopWorker(SVnodeMgmt *pMgmt) {
S
Shengliang Guan 已提交
381
  tQWorkerCleanup(&pMgmt->queryPool);
S
Shengliang Guan 已提交
382
  tQWorkerCleanup(&pMgmt->streamPool);
383
  tWWorkerCleanup(&pMgmt->fetchPool);
S
Shengliang Guan 已提交
384
  dDebug("vnode workers are closed");
S
shm  
Shengliang Guan 已提交
385
}