qmMgmt.c 10.3 KB
Newer Older
S
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 "dndQnode.h"
S
shm  
Shengliang Guan 已提交
18
// #include "dm.h"
S
shm  
Shengliang Guan 已提交
19 20
// #include "dndTransport.h"
// #include "dndWorker.h"
S
Shengliang Guan 已提交
21

S
shm  
Shengliang Guan 已提交
22
#if 0
S
Shengliang Guan 已提交
23
static void dndProcessQnodeQueue(SDnode *pDnode, SRpcMsg *pMsg);
S
Shengliang Guan 已提交
24 25 26 27 28 29 30

static SQnode *dndAcquireQnode(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
  SQnode     *pQnode = NULL;
  int32_t     refCount = 0;

  taosRLockLatch(&pMgmt->latch);
S
Shengliang Guan 已提交
31
  if (pMgmt->deployed && !pMgmt->dropped && pMgmt->pQnode != NULL) {
S
Shengliang Guan 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45
    refCount = atomic_add_fetch_32(&pMgmt->refCount, 1);
    pQnode = pMgmt->pQnode;
  } else {
    terrno = TSDB_CODE_DND_QNODE_NOT_DEPLOYED;
  }
  taosRUnLockLatch(&pMgmt->latch);

  if (pQnode != NULL) {
    dTrace("acquire qnode, refCount:%d", refCount);
  }
  return pQnode;
}

static void dndReleaseQnode(SDnode *pDnode, SQnode *pQnode) {
S
Shengliang Guan 已提交
46
  if (pQnode == NULL) return;
S
Shengliang Guan 已提交
47

S
Shengliang Guan 已提交
48
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
S
Shengliang Guan 已提交
49
  taosRLockLatch(&pMgmt->latch);
S
Shengliang Guan 已提交
50
  int32_t refCount = atomic_sub_fetch_32(&pMgmt->refCount, 1);
S
Shengliang Guan 已提交
51
  taosRUnLockLatch(&pMgmt->latch);
S
Shengliang Guan 已提交
52
  dTrace("release qnode, refCount:%d", refCount);
S
Shengliang Guan 已提交
53 54 55 56 57 58
}

static int32_t dndReadQnodeFile(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
  int32_t     code = TSDB_CODE_DND_QNODE_READ_FILE_ERROR;
  int32_t     len = 0;
S
Shengliang Guan 已提交
59
  int32_t     maxLen = 1024;
S
Shengliang Guan 已提交
60 61 62
  char       *content = calloc(1, maxLen + 1);
  cJSON      *root = NULL;

S
Shengliang Guan 已提交
63 64 65
  char file[PATH_MAX + 20];
  snprintf(file, PATH_MAX + 20, "%s/qnode.json", pDnode->dir.dnode);

66 67 68
  // FILE *fp = fopen(file, "r");
  TdFilePtr pFile = taosOpenFile(file, TD_FILE_READ);
  if (pFile == NULL) {
S
Shengliang Guan 已提交
69
    dDebug("file %s not exist", file);
S
Shengliang Guan 已提交
70
    code = 0;
S
Shengliang Guan 已提交
71
    goto PRASE_QNODE_OVER;
S
Shengliang Guan 已提交
72 73
  }

74
  len = (int32_t)taosReadFile(pFile, content, maxLen);
S
Shengliang Guan 已提交
75
  if (len <= 0) {
S
Shengliang Guan 已提交
76 77
    dError("failed to read %s since content is null", file);
    goto PRASE_QNODE_OVER;
S
Shengliang Guan 已提交
78 79 80 81 82
  }

  content[len] = 0;
  root = cJSON_Parse(content);
  if (root == NULL) {
S
Shengliang Guan 已提交
83 84
    dError("failed to read %s since invalid json format", file);
    goto PRASE_QNODE_OVER;
S
Shengliang Guan 已提交
85 86 87 88
  }

  cJSON *deployed = cJSON_GetObjectItem(root, "deployed");
  if (!deployed || deployed->type != cJSON_Number) {
S
Shengliang Guan 已提交
89 90
    dError("failed to read %s since deployed not found", file);
    goto PRASE_QNODE_OVER;
S
Shengliang Guan 已提交
91 92 93 94 95
  }
  pMgmt->deployed = deployed->valueint;

  cJSON *dropped = cJSON_GetObjectItem(root, "dropped");
  if (!dropped || dropped->type != cJSON_Number) {
S
Shengliang Guan 已提交
96 97
    dError("failed to read %s since dropped not found", file);
    goto PRASE_QNODE_OVER;
S
Shengliang Guan 已提交
98 99 100 101
  }
  pMgmt->dropped = dropped->valueint;

  code = 0;
S
Shengliang Guan 已提交
102
  dDebug("succcessed to read file %s, deployed:%d dropped:%d", file, pMgmt->deployed, pMgmt->dropped);
S
Shengliang Guan 已提交
103

S
Shengliang Guan 已提交
104
PRASE_QNODE_OVER:
S
Shengliang Guan 已提交
105 106
  if (content != NULL) free(content);
  if (root != NULL) cJSON_Delete(root);
107
  if (pFile != NULL) taosCloseFile(&pFile);
S
Shengliang Guan 已提交
108 109 110 111 112 113 114 115

  terrno = code;
  return code;
}

static int32_t dndWriteQnodeFile(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;

S
Shengliang Guan 已提交
116 117
  char file[PATH_MAX + 20];
  snprintf(file, PATH_MAX + 20, "%s/qnode.json", pDnode->dir.dnode);
S
Shengliang Guan 已提交
118

119 120 121
  // FILE *fp = fopen(file, "w");
  TdFilePtr pFile = taosOpenFile(file, TD_FILE_CTEATE | TD_FILE_WRITE | TD_FILE_TRUNC);
  if (pFile == NULL) {
S
Shengliang Guan 已提交
122 123 124 125 126 127
    terrno = TSDB_CODE_DND_QNODE_WRITE_FILE_ERROR;
    dError("failed to write %s since %s", file, terrstr());
    return -1;
  }

  int32_t len = 0;
S
Shengliang Guan 已提交
128
  int32_t maxLen = 1024;
S
Shengliang Guan 已提交
129 130 131 132 133 134 135
  char   *content = calloc(1, maxLen + 1);

  len += snprintf(content + len, maxLen - len, "{\n");
  len += snprintf(content + len, maxLen - len, "  \"deployed\": %d,\n", pMgmt->deployed);
  len += snprintf(content + len, maxLen - len, "  \"dropped\": %d\n", pMgmt->dropped);
  len += snprintf(content + len, maxLen - len, "}\n");

136 137 138
  taosWriteFile(pFile, content, len);
  taosFsyncFile(pFile);
  taosCloseFile(&pFile);
S
Shengliang Guan 已提交
139 140
  free(content);

S
Shengliang Guan 已提交
141 142 143 144
  char realfile[PATH_MAX + 20];
  snprintf(realfile, PATH_MAX + 20, "%s/qnode.json", pDnode->dir.dnode);

  if (taosRenameFile(file, realfile) != 0) {
S
Shengliang Guan 已提交
145
    terrno = TSDB_CODE_DND_QNODE_WRITE_FILE_ERROR;
S
Shengliang Guan 已提交
146
    dError("failed to rename %s since %s", file, terrstr());
S
Shengliang Guan 已提交
147 148 149
    return -1;
  }

S
Shengliang Guan 已提交
150
  dInfo("successed to write %s, deployed:%d dropped:%d", realfile, pMgmt->deployed, pMgmt->dropped);
S
Shengliang Guan 已提交
151 152 153 154
  return 0;
}

static int32_t dndStartQnodeWorker(SDnode *pDnode) {
S
Shengliang Guan 已提交
155
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
S
Shengliang Guan 已提交
156
  if (dndInitWorker(pDnode, &pMgmt->queryWorker, DND_WORKER_SINGLE, "qnode-query", 0, 1, dndProcessQnodeQueue) != 0) {
S
Shengliang Guan 已提交
157 158 159 160
    dError("failed to start qnode query worker since %s", terrstr());
    return -1;
  }

S
Shengliang Guan 已提交
161
  if (dndInitWorker(pDnode, &pMgmt->fetchWorker, DND_WORKER_SINGLE, "qnode-fetch", 0, 1, dndProcessQnodeQueue) != 0) {
S
Shengliang Guan 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175
    dError("failed to start qnode fetch worker since %s", terrstr());
    return -1;
  }

  return 0;
}

static void dndStopQnodeWorker(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;

  taosWLockLatch(&pMgmt->latch);
  pMgmt->deployed = 0;
  taosWUnLockLatch(&pMgmt->latch);

S
Shengliang Guan 已提交
176
  while (pMgmt->refCount > 0) {
S
Shengliang Guan 已提交
177 178
    taosMsleep(10);
  }
S
Shengliang Guan 已提交
179

S
Shengliang Guan 已提交
180 181
  dndCleanupWorker(&pMgmt->queryWorker);
  dndCleanupWorker(&pMgmt->fetchWorker);
S
Shengliang Guan 已提交
182 183 184 185
}

static void dndBuildQnodeOption(SDnode *pDnode, SQnodeOpt *pOption) {
  pOption->pDnode = pDnode;
S
shm  
Shengliang Guan 已提交
186
  pOption->sendReqFp = dndSendReqToDnode;
S
shm  
Shengliang Guan 已提交
187
  pOption->sendMnodeReqFp = dndSendReqToMnode;
S
shm  
Shengliang Guan 已提交
188 189 190
  pOption->sendRedirectRspFp = dndSendRedirectRsp;
  pOption->dnodeId = pDnode->dnodeId;
  pOption->clusterId = pDnode->clusterId;
S
config  
Shengliang Guan 已提交
191
  pOption->sver = tsVersion;
S
Shengliang Guan 已提交
192 193 194 195
}

static int32_t dndOpenQnode(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
S
Shengliang Guan 已提交
196 197 198 199 200 201 202 203 204 205

  SQnode *pQnode = dndAcquireQnode(pDnode);
  if (pQnode != NULL) {
    dndReleaseQnode(pDnode, pQnode);
    terrno = TSDB_CODE_DND_QNODE_ALREADY_DEPLOYED;
    dError("failed to create qnode since %s", terrstr());
    return -1;
  }

  SQnodeOpt option = {0};
S
Shengliang Guan 已提交
206 207
  dndBuildQnodeOption(pDnode, &option);

S
Shengliang Guan 已提交
208
  pQnode = qndOpen(&option);
S
Shengliang Guan 已提交
209 210 211 212 213
  if (pQnode == NULL) {
    dError("failed to open qnode since %s", terrstr());
    return -1;
  }

S
Shengliang Guan 已提交
214 215
  if (dndStartQnodeWorker(pDnode) != 0) {
    dError("failed to start qnode worker since %s", terrstr());
S
Shengliang Guan 已提交
216 217 218 219
    qndClose(pQnode);
    return -1;
  }

S
Shengliang Guan 已提交
220
  pMgmt->deployed = 1;
S
Shengliang Guan 已提交
221
  if (dndWriteQnodeFile(pDnode) != 0) {
S
Shengliang Guan 已提交
222
    pMgmt->deployed = 0;
S
Shengliang Guan 已提交
223
    dError("failed to write qnode file since %s", terrstr());
S
Shengliang Guan 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
    dndStopQnodeWorker(pDnode);
    qndClose(pQnode);
    return -1;
  }

  taosWLockLatch(&pMgmt->latch);
  pMgmt->pQnode = pQnode;
  taosWUnLockLatch(&pMgmt->latch);

  dInfo("qnode open successfully");
  return 0;
}

static int32_t dndDropQnode(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;

  SQnode *pQnode = dndAcquireQnode(pDnode);
  if (pQnode == NULL) {
    dError("failed to drop qnode since %s", terrstr());
    return -1;
  }

  taosRLockLatch(&pMgmt->latch);
  pMgmt->dropped = 1;
  taosRUnLockLatch(&pMgmt->latch);

  if (dndWriteQnodeFile(pDnode) != 0) {
    taosRLockLatch(&pMgmt->latch);
    pMgmt->dropped = 0;
    taosRUnLockLatch(&pMgmt->latch);

    dndReleaseQnode(pDnode, pQnode);
    dError("failed to drop qnode since %s", terrstr());
    return -1;
  }

  dndReleaseQnode(pDnode, pQnode);
  dndStopQnodeWorker(pDnode);
S
Shengliang Guan 已提交
262 263
  pMgmt->deployed = 0;
  dndWriteQnodeFile(pDnode);
S
Shengliang Guan 已提交
264 265 266 267 268 269
  qndClose(pQnode);
  pMgmt->pQnode = NULL;

  return 0;
}

S
shm  
Shengliang Guan 已提交
270
int32_t qmProcessCreateReq(SDnode *pDnode, SRpcMsg *pReq) {
S
Shengliang Guan 已提交
271 272 273 274 275
  SDCreateQnodeReq createReq = {0};
  if (tDeserializeSMCreateDropQSBNodeReq(pReq->pCont, pReq->contLen, &createReq) != 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }
S
Shengliang Guan 已提交
276

S
shm  
Shengliang Guan 已提交
277
  if (createReq.dnodeId != pDnode->dnodeId) {
S
Shengliang Guan 已提交
278
    terrno = TSDB_CODE_DND_QNODE_INVALID_OPTION;
S
Shengliang Guan 已提交
279
    dError("failed to create qnode since %s", terrstr());
S
Shengliang Guan 已提交
280 281 282 283 284 285
    return -1;
  } else {
    return dndOpenQnode(pDnode);
  }
}

S
shm  
Shengliang Guan 已提交
286
int32_t qmProcessDropReq(SDnode *pDnode, SRpcMsg *pReq) {
S
Shengliang Guan 已提交
287 288 289 290 291
  SDDropQnodeReq dropReq = {0};
  if (tDeserializeSMCreateDropQSBNodeReq(pReq->pCont, pReq->contLen, &dropReq) != 0) {
    terrno = TSDB_CODE_INVALID_MSG;
    return -1;
  }
S
Shengliang Guan 已提交
292

S
shm  
Shengliang Guan 已提交
293
  if (dropReq.dnodeId != pDnode->dnodeId) {
S
Shengliang Guan 已提交
294
    terrno = TSDB_CODE_DND_QNODE_INVALID_OPTION;
S
Shengliang Guan 已提交
295
    dError("failed to drop qnode since %s", terrstr());
S
Shengliang Guan 已提交
296 297 298 299 300 301 302 303 304
    return -1;
  } else {
    return dndDropQnode(pDnode);
  }
}

static void dndProcessQnodeQueue(SDnode *pDnode, SRpcMsg *pMsg) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
  SRpcMsg    *pRsp = NULL;
S
Shengliang Guan 已提交
305
  int32_t     code = TSDB_CODE_DND_QNODE_NOT_DEPLOYED;
S
Shengliang Guan 已提交
306 307

  SQnode *pQnode = dndAcquireQnode(pDnode);
S
Shengliang Guan 已提交
308 309
  if (pQnode != NULL) {
    code = qndProcessMsg(pQnode, pMsg, &pRsp);
S
Shengliang Guan 已提交
310
  }
S
Shengliang Guan 已提交
311
  dndReleaseQnode(pDnode, pQnode);
S
Shengliang Guan 已提交
312

313 314 315 316 317 318 319 320 321 322
  if (pMsg->msgType & 1u) {
    if (pRsp != NULL) {
      pRsp->ahandle = pMsg->ahandle;
      rpcSendResponse(pRsp);
      free(pRsp);
    } else {
      if (code != 0) code = terrno;
      SRpcMsg rpcRsp = {.handle = pMsg->handle, .ahandle = pMsg->ahandle, .code = code};
      rpcSendResponse(&rpcRsp);
    }
S
Shengliang Guan 已提交
323 324 325 326 327 328
  }

  rpcFreeCont(pMsg->pCont);
  taosFreeQitem(pMsg);
}

S
Shengliang Guan 已提交
329 330
static void dndWriteQnodeMsgToWorker(SDnode *pDnode, SDnodeWorker *pWorker, SRpcMsg *pMsg) {
  int32_t code = TSDB_CODE_DND_QNODE_NOT_DEPLOYED;
S
Shengliang Guan 已提交
331

S
Shengliang Guan 已提交
332 333 334
  SQnode *pQnode = dndAcquireQnode(pDnode);
  if (pQnode != NULL) {
    code = dndWriteMsgToWorker(pWorker, pMsg, sizeof(SRpcMsg));
S
Shengliang Guan 已提交
335
  }
S
Shengliang Guan 已提交
336
  dndReleaseQnode(pDnode, pQnode);
S
Shengliang Guan 已提交
337 338

  if (code != 0) {
S
Shengliang Guan 已提交
339 340
    if (pMsg->msgType & 1u) {
      SRpcMsg rsp = {.handle = pMsg->handle, .ahandle = pMsg->ahandle, .code = code};
S
Shengliang Guan 已提交
341 342
      rpcSendResponse(&rsp);
    }
S
Shengliang Guan 已提交
343
    rpcFreeCont(pMsg->pCont);
S
Shengliang Guan 已提交
344 345 346 347
  }
}

void dndProcessQnodeQueryMsg(SDnode *pDnode, SRpcMsg *pMsg, SEpSet *pEpSet) {
S
Shengliang Guan 已提交
348
  dndWriteQnodeMsgToWorker(pDnode, &pDnode->qmgmt.queryWorker, pMsg);
S
Shengliang Guan 已提交
349 350 351
}

void dndProcessQnodeFetchMsg(SDnode *pDnode, SRpcMsg *pMsg, SEpSet *pEpSet) {
S
Shengliang Guan 已提交
352
  dndWriteQnodeMsgToWorker(pDnode, &pDnode->qmgmt.queryWorker, pMsg);
S
Shengliang Guan 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
}

int32_t dndInitQnode(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
  taosInitRWLatch(&pMgmt->latch);

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

  if (pMgmt->dropped) return 0;
  if (!pMgmt->deployed) return 0;

  return dndOpenQnode(pDnode);
}

void dndCleanupQnode(SDnode *pDnode) {
  SQnodeMgmt *pMgmt = &pDnode->qmgmt;
S
Shengliang Guan 已提交
371 372 373 374 375
  if (pMgmt->pQnode) {
    dndStopQnodeWorker(pDnode);
    qndClose(pMgmt->pQnode);
    pMgmt->pQnode = NULL;
  }
S
Shengliang Guan 已提交
376
}
S
shm  
Shengliang Guan 已提交
377 378

#endif