qmWorker.c 4.5 KB
Newer Older
S
shm  
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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
#include "qmInt.h"

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

S
Shengliang Guan 已提交
29
static void qmProcessQueue(SQueueInfo *pInfo, SRpcMsg *pMsg) {
30
  SQnodeMgmt *pMgmt = pInfo->ahandle;
S
Shengliang Guan 已提交
31 32
  int32_t     code = -1;
  dTrace("msg:%p, get from qnode queue", pMsg);
33

S
Shengliang Guan 已提交
34 35 36 37 38 39 40 41 42 43 44
  switch (pMsg->msgType) {
    case TDMT_MON_QM_INFO:
      code = qmProcessGetMonitorInfoReq(pMgmt, pMsg);
      break;
    case TDMT_VND_QUERY:
    case TDMT_VND_QUERY_CONTINUE:
      code = qndProcessQueryMsg(pMgmt->pQnode, pMsg);
      break;
    default:
      code = qndProcessFetchMsg(pMgmt->pQnode, pMsg);
      break;
45 46
  }

S
Shengliang Guan 已提交
47
  if (IsReq(pMsg) && code != TSDB_CODE_ACTION_IN_PROGRESS) {
48
    if (code != 0 && terrno != 0) code = terrno;
49
    qmSendRsp(pMsg, code);
50 51
  }

S
Shengliang Guan 已提交
52
  dTrace("msg:%p, is freed, code:0x%x", pMsg, code);
S
Shengliang Guan 已提交
53
  rpcFreeCont(pMsg->pCont);
S
Shengliang Guan 已提交
54 55
  taosFreeQitem(pMsg);
}
S
shm  
Shengliang Guan 已提交
56

S
Shengliang Guan 已提交
57
static int32_t qmPutNodeMsgToWorker(SSingleWorker *pWorker, SRpcMsg *pMsg) {
S
Shengliang Guan 已提交
58
  dTrace("msg:%p, put into worker %s, type:%s", pMsg, pWorker->name, TMSG_INFO(pMsg->msgType));
S
Shengliang Guan 已提交
59
  taosWriteQitem(pWorker->queue, pMsg);
S
Shengliang 已提交
60
  return 0;
S
shm  
Shengliang Guan 已提交
61 62
}

S
Shengliang Guan 已提交
63
int32_t qmPutNodeMsgToQueryQueue(SQnodeMgmt *pMgmt, SRpcMsg *pMsg) {
S
Shengliang 已提交
64
  return qmPutNodeMsgToWorker(&pMgmt->queryWorker, pMsg);
S
Shengliang Guan 已提交
65
}
S
shm  
Shengliang Guan 已提交
66

S
Shengliang Guan 已提交
67
int32_t qmPutNodeMsgToFetchQueue(SQnodeMgmt *pMgmt, SRpcMsg *pMsg) {
S
Shengliang 已提交
68
  return qmPutNodeMsgToWorker(&pMgmt->fetchWorker, pMsg);
S
Shengliang Guan 已提交
69
}
S
Shengliang Guan 已提交
70

S
Shengliang Guan 已提交
71
int32_t qmPutNodeMsgToMonitorQueue(SQnodeMgmt *pMgmt, SRpcMsg *pMsg) {
S
Shengliang 已提交
72
  return qmPutNodeMsgToWorker(&pMgmt->monitorWorker, pMsg);
73 74
}

S
Shengliang Guan 已提交
75
static int32_t qmPutRpcMsgToWorker(SQnodeMgmt *pMgmt, SSingleWorker *pWorker, SRpcMsg *pRpc) {
S
Shengliang Guan 已提交
76
  SRpcMsg *pMsg = taosAllocateQitem(sizeof(SRpcMsg), RPC_QITEM);
S
Shengliang Guan 已提交
77
  if (pMsg == NULL) return -1;
S
Shengliang Guan 已提交
78

S
Shengliang Guan 已提交
79
  dTrace("msg:%p, create and put into worker:%s, type:%s", pMsg, pWorker->name, TMSG_INFO(pRpc->msgType));
S
Shengliang Guan 已提交
80
  memcpy(pMsg, pRpc, sizeof(SRpcMsg));
S
Shengliang Guan 已提交
81 82
  taosWriteQitem(pWorker->queue, pMsg);
  return 0;
S
Shengliang Guan 已提交
83 84
}

S
Shengliang 已提交
85
int32_t qmPutRpcMsgToQueryQueue(SQnodeMgmt *pMgmt, SRpcMsg *pRpc) {
S
Shengliang Guan 已提交
86 87 88
  return qmPutRpcMsgToWorker(pMgmt, &pMgmt->queryWorker, pRpc);
}

S
Shengliang 已提交
89
int32_t qmPutRpcMsgToFetchQueue(SQnodeMgmt *pMgmt, SRpcMsg *pRpc) {
S
Shengliang Guan 已提交
90
  return qmPutRpcMsgToWorker(pMgmt, &pMgmt->fetchWorker, pRpc);
S
shm  
Shengliang Guan 已提交
91 92
}

S
Shengliang 已提交
93 94
int32_t qmGetQueueSize(SQnodeMgmt *pMgmt, int32_t vgId, EQueueType qtype) {
  int32_t size = -1;
95

S
Shengliang Guan 已提交
96 97
  switch (qtype) {
    case QUERY_QUEUE:
98
      size = taosQueueItemSize(pMgmt->queryWorker.queue);
S
Shengliang Guan 已提交
99 100
      break;
    case FETCH_QUEUE:
101
      size = taosQueueItemSize(pMgmt->fetchWorker.queue);
S
Shengliang Guan 已提交
102 103 104 105 106 107 108 109
      break;
    default:
      break;
  }

  return size;
}

S
shm  
Shengliang Guan 已提交
110
int32_t qmStartWorker(SQnodeMgmt *pMgmt) {
S
Shengliang Guan 已提交
111 112 113 114
  SSingleWorkerCfg queryCfg = {
      .min = tsNumOfVnodeQueryThreads,
      .max = tsNumOfVnodeQueryThreads,
      .name = "qnode-query",
S
Shengliang Guan 已提交
115
      .fp = (FItem)qmProcessQueue,
S
Shengliang Guan 已提交
116 117
      .param = pMgmt,
  };
S
Shengliang Guan 已提交
118

S
Shengliang Guan 已提交
119
  if (tSingleWorkerInit(&pMgmt->queryWorker, &queryCfg) != 0) {
S
Shengliang Guan 已提交
120
    dError("failed to start qnode-query worker since %s", terrstr());
S
shm  
Shengliang Guan 已提交
121 122 123
    return -1;
  }

S
Shengliang Guan 已提交
124 125 126 127
  SSingleWorkerCfg fetchCfg = {
      .min = tsNumOfQnodeFetchThreads,
      .max = tsNumOfQnodeFetchThreads,
      .name = "qnode-fetch",
S
Shengliang Guan 已提交
128
      .fp = (FItem)qmProcessQueue,
S
Shengliang Guan 已提交
129 130
      .param = pMgmt,
  };
S
Shengliang Guan 已提交
131

S
Shengliang Guan 已提交
132
  if (tSingleWorkerInit(&pMgmt->fetchWorker, &fetchCfg) != 0) {
S
Shengliang Guan 已提交
133
    dError("failed to start qnode-fetch worker since %s", terrstr());
S
shm  
Shengliang Guan 已提交
134 135 136
    return -1;
  }

S
Shengliang Guan 已提交
137 138 139 140
  SSingleWorkerCfg mCfg = {
      .min = 1,
      .max = 1,
      .name = "qnode-monitor",
S
Shengliang Guan 已提交
141
      .fp = (FItem)qmProcessQueue,
S
Shengliang Guan 已提交
142 143 144 145 146
      .param = pMgmt,
  };
  if (tSingleWorkerInit(&pMgmt->monitorWorker, &mCfg) != 0) {
    dError("failed to start qnode-monitor worker since %s", terrstr());
    return -1;
147 148
  }

S
Shengliang Guan 已提交
149
  dDebug("qnode workers are initialized");
S
shm  
Shengliang Guan 已提交
150 151 152 153
  return 0;
}

void qmStopWorker(SQnodeMgmt *pMgmt) {
154
  tSingleWorkerCleanup(&pMgmt->monitorWorker);
S
Shengliang Guan 已提交
155 156
  tSingleWorkerCleanup(&pMgmt->queryWorker);
  tSingleWorkerCleanup(&pMgmt->fetchWorker);
S
Shengliang Guan 已提交
157
  dDebug("qnode workers are closed");
S
shm  
Shengliang Guan 已提交
158
}