dmHandle.c 9.3 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
Shengliang Guan 已提交
17
#include "dmImp.h"
S
shm  
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19 20 21 22 23 24 25 26 27 28
static void dmUpdateDnodeCfg(SDnode *pDnode, SDnodeCfg *pCfg) {
  if (pDnode->data.dnodeId == 0) {
    dInfo("set dnodeId:%d clusterId:%" PRId64, pCfg->dnodeId, pCfg->clusterId);
    taosWLockLatch(&pDnode->data.latch);
    pDnode->data.dnodeId = pCfg->dnodeId;
    pDnode->data.clusterId = pCfg->clusterId;
    dmWriteEps(pDnode);
    taosWUnLockLatch(&pDnode->data.latch);
  }
}
S
Shengliang Guan 已提交
29

S
Shengliang Guan 已提交
30
static int32_t dmProcessStatusRsp(SDnode *pDnode, SRpcMsg *pRsp) {
S
Shengliang Guan 已提交
31 32 33 34
  if (pRsp->code != TSDB_CODE_SUCCESS) {
    if (pRsp->code == TSDB_CODE_MND_DNODE_NOT_EXIST && !pDnode->data.dropped && pDnode->data.dnodeId > 0) {
      dInfo("dnode:%d, set to dropped since not exist in mnode", pDnode->data.dnodeId);
      pDnode->data.dropped = 1;
S
Shengliang Guan 已提交
35
      dmWriteEps(pDnode);
S
Shengliang Guan 已提交
36 37 38
    }
  } else {
    SStatusRsp statusRsp = {0};
S
Shengliang Guan 已提交
39 40
    if (pRsp->pCont != NULL && pRsp->contLen > 0 &&
        tDeserializeSStatusRsp(pRsp->pCont, pRsp->contLen, &statusRsp) == 0) {
S
Shengliang Guan 已提交
41 42 43
      pDnode->data.dnodeVer = statusRsp.dnodeVer;
      dmUpdateDnodeCfg(pDnode, &statusRsp.dnodeCfg);
      dmUpdateEps(pDnode, statusRsp.pDnodeEps);
S
Shengliang Guan 已提交
44
    }
dengyihao's avatar
dengyihao 已提交
45
    rpcFreeCont(pRsp->pCont);
S
Shengliang Guan 已提交
46 47 48 49 50 51 52
    tFreeSStatusRsp(&statusRsp);
  }

  return TSDB_CODE_SUCCESS;
}

void dmSendStatusReq(SDnode *pDnode) {
S
shm  
Shengliang Guan 已提交
53 54
  SStatusReq req = {0};

S
Shengliang Guan 已提交
55
  taosRLockLatch(&pDnode->data.latch);
S
shm  
Shengliang Guan 已提交
56
  req.sver = tsVersion;
S
Shengliang Guan 已提交
57
  req.dnodeVer = pDnode->data.dnodeVer;
S
Shengliang Guan 已提交
58 59 60
  req.dnodeId = pDnode->data.dnodeId;
  req.clusterId = pDnode->data.clusterId;
  req.rebootTime = pDnode->data.rebootTime;
S
Shengliang Guan 已提交
61
  req.updateTime = pDnode->data.updateTime;
S
shm  
Shengliang Guan 已提交
62
  req.numOfCores = tsNumOfCores;
S
Shengliang Guan 已提交
63 64
  req.numOfSupportVnodes = pDnode->data.supportVnodes;
  tstrncpy(req.dnodeEp, pDnode->data.localEp, TSDB_EP_LEN);
S
shm  
Shengliang Guan 已提交
65 66 67 68 69

  req.clusterCfg.statusInterval = tsStatusInterval;
  req.clusterCfg.checkTime = 0;
  char timestr[32] = "1970-01-01 00:00:00.00";
  (void)taosParseTime(timestr, &req.clusterCfg.checkTime, (int32_t)strlen(timestr), TSDB_TIME_PRECISION_MILLI, 0);
wafwerar's avatar
wafwerar 已提交
70
  memcpy(req.clusterCfg.timezone, tsTimezoneStr, TD_TIMEZONE_LEN);
S
shm  
Shengliang Guan 已提交
71 72
  memcpy(req.clusterCfg.locale, tsLocale, TD_LOCALE_LEN);
  memcpy(req.clusterCfg.charset, tsCharset, TD_LOCALE_LEN);
S
Shengliang Guan 已提交
73
  taosRUnLockLatch(&pDnode->data.latch);
S
shm  
Shengliang Guan 已提交
74

S
Shengliang Guan 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  SMonVloadInfo vinfo = {0};
  dmGetVnodeLoads(pDnode, &vinfo);
  req.pVloads = vinfo.pVloads;
  pDnode->data.unsyncedVgId = 0;
  pDnode->data.vndState = TAOS_SYNC_STATE_LEADER;
  for (int32_t i = 0; i < taosArrayGetSize(req.pVloads); ++i) {
    SVnodeLoad *pLoad = taosArrayGet(req.pVloads, i);
    if (pLoad->syncState != TAOS_SYNC_STATE_LEADER && pLoad->syncState != TAOS_SYNC_STATE_FOLLOWER) {
      pDnode->data.unsyncedVgId = pLoad->vgId;
      pDnode->data.vndState = pLoad->syncState;
    }
  }

  SMonMloadInfo minfo = {0};
  dmGetMnodeLoads(pDnode, &minfo);
  pDnode->data.isMnode = minfo.isMnode;
  pDnode->data.mndState = minfo.load.syncState;
S
shm  
Shengliang Guan 已提交
92 93

  int32_t contLen = tSerializeSStatusReq(NULL, 0, &req);
S
Shengliang Guan 已提交
94
  void   *pHead = rpcMallocCont(contLen);
S
shm  
Shengliang Guan 已提交
95
  tSerializeSStatusReq(pHead, contLen, &req);
S
Shengliang Guan 已提交
96
  tFreeSStatusReq(&req);
S
shm  
Shengliang Guan 已提交
97

S
shm  
Shengliang Guan 已提交
98
  SRpcMsg rpcMsg = {.pCont = pHead, .contLen = contLen, .msgType = TDMT_MND_STATUS, .ahandle = (void *)0x9527};
S
Shengliang Guan 已提交
99 100
  SRpcMsg rpcRsp = {0};

S
shm  
Shengliang Guan 已提交
101
  dTrace("send req:%s to mnode, app:%p", TMSG_INFO(rpcMsg.msgType), rpcMsg.ahandle);
S
Shengliang Guan 已提交
102
  dmSendToMnodeRecv(pDnode, &rpcMsg, &rpcRsp);
S
Shengliang Guan 已提交
103
  dmProcessStatusRsp(pDnode, &rpcRsp);
S
shm  
Shengliang Guan 已提交
104 105
}

S
Shengliang Guan 已提交
106
int32_t dmProcessAuthRsp(SDnode *pDnode, SNodeMsg *pMsg) {
S
shm  
Shengliang Guan 已提交
107 108 109 110
  SRpcMsg *pRsp = &pMsg->rpcMsg;
  dError("auth rsp is received, but not supported yet");
  return 0;
}
S
shm  
Shengliang Guan 已提交
111

S
Shengliang Guan 已提交
112
int32_t dmProcessGrantRsp(SDnode *pDnode, SNodeMsg *pMsg) {
S
shm  
Shengliang Guan 已提交
113 114 115 116
  SRpcMsg *pRsp = &pMsg->rpcMsg;
  dError("grant rsp is received, but not supported yet");
  return 0;
}
S
shm  
Shengliang Guan 已提交
117

S
Shengliang Guan 已提交
118
int32_t dmProcessConfigReq(SDnode *pDnode, SNodeMsg *pMsg) {
S
Shengliang Guan 已提交
119
  SRpcMsg       *pReq = &pMsg->rpcMsg;
S
shm  
Shengliang Guan 已提交
120
  SDCfgDnodeReq *pCfg = pReq->pCont;
S
shm  
Shengliang Guan 已提交
121
  dError("config req is received, but not supported yet");
S
shm  
Shengliang Guan 已提交
122 123 124
  return TSDB_CODE_OPS_NOT_SUPPORT;
}

S
Shengliang Guan 已提交
125 126
int32_t dmProcessCreateNodeReq(SDnode *pDnode, EDndNodeType ntype, SNodeMsg *pMsg) {
  SMgmtWrapper *pWrapper = dmAcquireWrapper(pDnode, ntype);
S
Shengliang Guan 已提交
127
  if (pWrapper != NULL) {
S
Shengliang Guan 已提交
128
    dmReleaseWrapper(pWrapper);
S
Shengliang Guan 已提交
129 130 131 132 133
    terrno = TSDB_CODE_NODE_ALREADY_DEPLOYED;
    dError("failed to create node since %s", terrstr());
    return -1;
  }

134
  taosThreadMutexLock(&pDnode->mutex);
S
Shengliang Guan 已提交
135 136 137 138 139 140 141 142
  pWrapper = &pDnode->wrappers[ntype];

  if (taosMkDir(pWrapper->path) != 0) {
    terrno = TAOS_SYSTEM_ERROR(errno);
    dError("failed to create dir:%s since %s", pWrapper->path, terrstr());
    return -1;
  }

S
Shengliang Guan 已提交
143
  int32_t code = (*pWrapper->fp.createFp)(pWrapper, pMsg);
S
Shengliang Guan 已提交
144
  if (code != 0) {
S
Shengliang Guan 已提交
145
    dError("node:%s, failed to create since %s", pWrapper->name, terrstr());
S
Shengliang Guan 已提交
146
  } else {
S
Shengliang Guan 已提交
147 148
    dDebug("node:%s, has been created", pWrapper->name);
    pWrapper->required = true;
S
Shengliang Guan 已提交
149
    pWrapper->deployed = true;
150
    pWrapper->procType = pDnode->ptype;
S
Shengliang Guan 已提交
151
    (void)dmOpenNode(pWrapper);
S
Shengliang Guan 已提交
152 153
  }

154
  taosThreadMutexUnlock(&pDnode->mutex);
S
Shengliang Guan 已提交
155 156 157
  return code;
}

S
Shengliang Guan 已提交
158 159
int32_t dmProcessDropNodeReq(SDnode *pDnode, EDndNodeType ntype, SNodeMsg *pMsg) {
  SMgmtWrapper *pWrapper = dmAcquireWrapper(pDnode, ntype);
S
Shengliang Guan 已提交
160 161 162 163 164 165
  if (pWrapper == NULL) {
    terrno = TSDB_CODE_NODE_NOT_DEPLOYED;
    dError("failed to drop node since %s", terrstr());
    return -1;
  }

166
  taosThreadMutexLock(&pDnode->mutex);
S
Shengliang Guan 已提交
167

S
Shengliang Guan 已提交
168
  int32_t code = (*pWrapper->fp.dropFp)(pWrapper, pMsg);
S
Shengliang Guan 已提交
169 170 171 172 173 174
  if (code != 0) {
    dError("node:%s, failed to drop since %s", pWrapper->name, terrstr());
  } else {
    dDebug("node:%s, has been dropped", pWrapper->name);
  }

S
Shengliang Guan 已提交
175
  dmReleaseWrapper(pWrapper);
S
Shengliang Guan 已提交
176 177 178

  if (code == 0) {
    dmCloseNode(pWrapper);
179 180 181
    pWrapper->required = false;
    pWrapper->deployed = false;
    taosRemoveDir(pWrapper->path);
S
Shengliang Guan 已提交
182
  }
183
  taosThreadMutexUnlock(&pDnode->mutex);
S
Shengliang Guan 已提交
184
  return code;
S
Shengliang Guan 已提交
185 186
}

S
Shengliang Guan 已提交
187
static void dmSetMgmtMsgHandle(SMgmtWrapper *pWrapper) {
S
shm  
Shengliang Guan 已提交
188
  // Requests handled by DNODE
S
Shengliang Guan 已提交
189 190 191 192 193 194 195 196 197
  dmSetMsgHandle(pWrapper, TDMT_DND_CREATE_MNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_DROP_MNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_CREATE_QNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_DROP_QNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_CREATE_SNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_DROP_SNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_CREATE_BNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_DROP_BNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_DND_CONFIG_DNODE, dmProcessMgmtMsg, DEFAULT_HANDLE);
S
shm  
Shengliang Guan 已提交
198 199

  // Requests handled by MNODE
S
Shengliang Guan 已提交
200 201
  dmSetMsgHandle(pWrapper, TDMT_MND_GRANT_RSP, dmProcessMgmtMsg, DEFAULT_HANDLE);
  dmSetMsgHandle(pWrapper, TDMT_MND_AUTH_RSP, dmProcessMgmtMsg, DEFAULT_HANDLE);
S
shm  
Shengliang Guan 已提交
202
}
S
Shengliang Guan 已提交
203

S
Shengliang Guan 已提交
204 205 206 207 208 209 210 211 212
static int32_t dmStartMgmt(SMgmtWrapper *pWrapper) {
  if (dmStartStatusThread(pWrapper->pDnode) != 0) {
    return -1;
  }
  if (dmStartMonitorThread(pWrapper->pDnode) != 0) {
    return -1;
  }
  return 0;
}
S
Shengliang Guan 已提交
213

S
Shengliang Guan 已提交
214 215 216 217
static void dmStopMgmt(SMgmtWrapper *pWrapper) {
  dmStopMonitorThread(pWrapper->pDnode);
  dmStopStatusThread(pWrapper->pDnode);
}
S
Shengliang Guan 已提交
218

S
Shengliang Guan 已提交
219
static int32_t dmInitMgmt(SMgmtWrapper *pWrapper) {
S
Shengliang Guan 已提交
220
  dInfo("dnode-mgmt start to init");
S
Shengliang Guan 已提交
221 222 223 224 225 226 227 228 229
  SDnode *pDnode = pWrapper->pDnode;

  pDnode->data.dnodeHash = taosHashInit(4, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_NO_LOCK);
  if (pDnode->data.dnodeHash == NULL) {
    dError("failed to init dnode hash");
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

S
Shengliang Guan 已提交
230
  if (dmReadEps(pDnode) != 0) {
S
Shengliang Guan 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    dError("failed to read file since %s", terrstr());
    return -1;
  }

  if (pDnode->data.dropped) {
    dError("dnode will not start since its already dropped");
    return -1;
  }

  if (dmStartWorker(pDnode) != 0) {
    return -1;
  }

  if (dmInitTrans(pDnode) != 0) {
    dError("failed to init transport since %s", terrstr());
    return -1;
  }
S
Shengliang Guan 已提交
248
  dmReportStartup(pDnode, "dnode-transport", "initialized");
S
Shengliang Guan 已提交
249

S
Shengliang Guan 已提交
250
  dInfo("dnode-mgmt is initialized");
S
Shengliang Guan 已提交
251 252 253
  return 0;
}

S
Shengliang Guan 已提交
254
static void dmCleanupMgmt(SMgmtWrapper *pWrapper) {
S
Shengliang Guan 已提交
255
  dInfo("dnode-mgmt start to clean up");
S
Shengliang Guan 已提交
256 257 258 259
  SDnode *pDnode = pWrapper->pDnode;
  dmStopWorker(pDnode);

  taosWLockLatch(&pDnode->data.latch);
S
Shengliang Guan 已提交
260 261 262
  if (pDnode->data.dnodeEps != NULL) {
    taosArrayDestroy(pDnode->data.dnodeEps);
    pDnode->data.dnodeEps = NULL;
S
Shengliang Guan 已提交
263
  }
S
Shengliang Guan 已提交
264 265 266
  if (pDnode->data.dnodeHash != NULL) {
    taosHashCleanup(pDnode->data.dnodeHash);
    pDnode->data.dnodeHash = NULL;
S
Shengliang Guan 已提交
267 268 269
  }
  taosWUnLockLatch(&pDnode->data.latch);

S
Shengliang Guan 已提交
270
  dmCleanupTrans(pDnode);
S
Shengliang Guan 已提交
271
  dInfo("dnode-mgmt is cleaned up");
S
Shengliang Guan 已提交
272 273
}

S
Shengliang Guan 已提交
274
static int32_t dmRequireMgmt(SMgmtWrapper *pWrapper, bool *required) {
S
Shengliang Guan 已提交
275 276 277 278 279 280
  *required = true;
  return 0;
}

void dmSetMgmtFp(SMgmtWrapper *pWrapper) {
  SMgmtFp mgmtFp = {0};
S
Shengliang Guan 已提交
281 282 283 284 285
  mgmtFp.openFp = dmInitMgmt;
  mgmtFp.closeFp = dmCleanupMgmt;
  mgmtFp.startFp = dmStartMgmt;
  mgmtFp.stopFp = dmStopMgmt;
  mgmtFp.requiredFp = dmRequireMgmt;
S
Shengliang Guan 已提交
286

S
Shengliang Guan 已提交
287
  dmSetMgmtMsgHandle(pWrapper);
S
Shengliang Guan 已提交
288 289 290
  pWrapper->name = "dnode";
  pWrapper->fp = mgmtFp;
}