mndQnode.c 16.1 KB
Newer Older
S
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 "mndQnode.h"
#include "mndDnode.h"
H
Hongze Cheng 已提交
19
#include "mndPrivilege.h"
S
Shengliang Guan 已提交
20 21
#include "mndShow.h"
#include "mndTrans.h"
S
Shengliang Guan 已提交
22
#include "mndUser.h"
S
Shengliang Guan 已提交
23

24 25
#define QNODE_VER_NUMBER   1
#define QNODE_RESERVE_SIZE 64
S
Shengliang Guan 已提交
26 27 28 29

static SSdbRaw *mndQnodeActionEncode(SQnodeObj *pObj);
static SSdbRow *mndQnodeActionDecode(SSdbRaw *pRaw);
static int32_t  mndQnodeActionInsert(SSdb *pSdb, SQnodeObj *pObj);
S
Shengliang Guan 已提交
30
static int32_t  mndQnodeActionUpdate(SSdb *pSdb, SQnodeObj *pOld, SQnodeObj *pNew);
31
static int32_t  mndQnodeActionDelete(SSdb *pSdb, SQnodeObj *pObj);
S
Shengliang Guan 已提交
32 33 34 35
static int32_t  mndProcessCreateQnodeReq(SRpcMsg *pReq);
static int32_t  mndProcessDropQnodeReq(SRpcMsg *pReq);
static int32_t  mndProcessQnodeListReq(SRpcMsg *pReq);
static int32_t  mndRetrieveQnodes(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows);
S
Shengliang Guan 已提交
36 37 38
static void     mndCancelGetNextQnode(SMnode *pMnode, void *pIter);

int32_t mndInitQnode(SMnode *pMnode) {
39 40 41 42 43 44 45 46 47
  SSdbTable table = {
      .sdbType = SDB_QNODE,
      .keyType = SDB_KEY_INT32,
      .encodeFp = (SdbEncodeFp)mndQnodeActionEncode,
      .decodeFp = (SdbDecodeFp)mndQnodeActionDecode,
      .insertFp = (SdbInsertFp)mndQnodeActionInsert,
      .updateFp = (SdbUpdateFp)mndQnodeActionUpdate,
      .deleteFp = (SdbDeleteFp)mndQnodeActionDelete,
  };
S
Shengliang Guan 已提交
48 49 50

  mndSetMsgHandle(pMnode, TDMT_MND_CREATE_QNODE, mndProcessCreateQnodeReq);
  mndSetMsgHandle(pMnode, TDMT_MND_DROP_QNODE, mndProcessDropQnodeReq);
51 52
  mndSetMsgHandle(pMnode, TDMT_DND_CREATE_QNODE_RSP, mndTransProcessRsp);
  mndSetMsgHandle(pMnode, TDMT_DND_DROP_QNODE_RSP, mndTransProcessRsp);
53
  mndSetMsgHandle(pMnode, TDMT_MND_QNODE_LIST, mndProcessQnodeListReq);
S
Shengliang Guan 已提交
54 55 56 57 58 59 60 61 62

  mndAddShowRetrieveHandle(pMnode, TSDB_MGMT_TABLE_QNODE, mndRetrieveQnodes);
  mndAddShowFreeIterHandle(pMnode, TSDB_MGMT_TABLE_QNODE, mndCancelGetNextQnode);

  return sdbSetTable(pMnode->pSdb, table);
}

void mndCleanupQnode(SMnode *pMnode) {}

D
dapan1121 已提交
63
SQnodeObj *mndAcquireQnode(SMnode *pMnode, int32_t qnodeId) {
64 65
  SQnodeObj *pObj = sdbAcquire(pMnode->pSdb, SDB_QNODE, &qnodeId);
  if (pObj == NULL && terrno == TSDB_CODE_SDB_OBJ_NOT_THERE) {
S
Shengliang Guan 已提交
66 67 68 69 70
    terrno = TSDB_CODE_MND_QNODE_NOT_EXIST;
  }
  return pObj;
}

D
dapan1121 已提交
71
void mndReleaseQnode(SMnode *pMnode, SQnodeObj *pObj) {
S
Shengliang Guan 已提交
72 73 74 75 76
  SSdb *pSdb = pMnode->pSdb;
  sdbRelease(pSdb, pObj);
}

static SSdbRaw *mndQnodeActionEncode(SQnodeObj *pObj) {
77 78
  terrno = TSDB_CODE_OUT_OF_MEMORY;

79 80
  SSdbRaw *pRaw = sdbAllocRaw(SDB_QNODE, QNODE_VER_NUMBER, sizeof(SQnodeObj) + QNODE_RESERVE_SIZE);
  if (pRaw == NULL) goto _OVER;
S
Shengliang Guan 已提交
81 82

  int32_t dataPos = 0;
83 84 85 86
  SDB_SET_INT32(pRaw, dataPos, pObj->id, _OVER)
  SDB_SET_INT64(pRaw, dataPos, pObj->createdTime, _OVER)
  SDB_SET_INT64(pRaw, dataPos, pObj->updateTime, _OVER)
  SDB_SET_RESERVE(pRaw, dataPos, QNODE_RESERVE_SIZE, _OVER)
87 88

  terrno = 0;
S
Shengliang Guan 已提交
89

90
_OVER:
91 92 93 94 95 96 97
  if (terrno != 0) {
    mError("qnode:%d, failed to encode to raw:%p since %s", pObj->id, pRaw, terrstr());
    sdbFreeRaw(pRaw);
    return NULL;
  }

  mTrace("qnode:%d, encode to raw:%p, row:%p", pObj->id, pRaw, pObj);
S
Shengliang Guan 已提交
98 99 100 101
  return pRaw;
}

static SSdbRow *mndQnodeActionDecode(SSdbRaw *pRaw) {
102
  terrno = TSDB_CODE_OUT_OF_MEMORY;
103 104
  SSdbRow   *pRow = NULL;
  SQnodeObj *pObj = NULL;
105

S
Shengliang Guan 已提交
106
  int8_t sver = 0;
107
  if (sdbGetRawSoftVer(pRaw, &sver) != 0) goto _OVER;
S
Shengliang Guan 已提交
108

109
  if (sver != QNODE_VER_NUMBER) {
S
Shengliang Guan 已提交
110
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
111
    goto _OVER;
S
Shengliang Guan 已提交
112 113
  }

114
  pRow = sdbAllocRow(sizeof(SQnodeObj));
115
  if (pRow == NULL) goto _OVER;
116

117
  pObj = sdbGetRowObj(pRow);
118
  if (pObj == NULL) goto _OVER;
S
Shengliang Guan 已提交
119 120

  int32_t dataPos = 0;
121 122 123 124
  SDB_GET_INT32(pRaw, dataPos, &pObj->id, _OVER)
  SDB_GET_INT64(pRaw, dataPos, &pObj->createdTime, _OVER)
  SDB_GET_INT64(pRaw, dataPos, &pObj->updateTime, _OVER)
  SDB_GET_RESERVE(pRaw, dataPos, QNODE_RESERVE_SIZE, _OVER)
125 126

  terrno = 0;
S
Shengliang Guan 已提交
127

128
_OVER:
129
  if (terrno != 0) {
130
    mError("qnode:%d, failed to decode from raw:%p since %s", pObj == NULL ? 0 : pObj->id, pRaw, terrstr());
wafwerar's avatar
wafwerar 已提交
131
    taosMemoryFreeClear(pRow);
132 133 134 135
    return NULL;
  }

  mTrace("qnode:%d, decode from raw:%p, row:%p", pObj->id, pRaw, pObj);
S
Shengliang Guan 已提交
136 137 138 139
  return pRow;
}

static int32_t mndQnodeActionInsert(SSdb *pSdb, SQnodeObj *pObj) {
140
  mTrace("qnode:%d, perform insert action, row:%p", pObj->id, pObj);
S
Shengliang Guan 已提交
141 142 143 144 145 146 147 148 149 150 151
  pObj->pDnode = sdbAcquire(pSdb, SDB_DNODE, &pObj->id);
  if (pObj->pDnode == NULL) {
    terrno = TSDB_CODE_MND_DNODE_NOT_EXIST;
    mError("qnode:%d, failed to perform insert action since %s", pObj->id, terrstr());
    return -1;
  }

  return 0;
}

static int32_t mndQnodeActionDelete(SSdb *pSdb, SQnodeObj *pObj) {
152
  mTrace("qnode:%d, perform delete action, row:%p", pObj->id, pObj);
S
Shengliang Guan 已提交
153 154 155 156 157 158 159 160
  if (pObj->pDnode != NULL) {
    sdbRelease(pSdb, pObj->pDnode);
    pObj->pDnode = NULL;
  }

  return 0;
}

S
Shengliang Guan 已提交
161
static int32_t mndQnodeActionUpdate(SSdb *pSdb, SQnodeObj *pOld, SQnodeObj *pNew) {
S
Shengliang Guan 已提交
162
  mTrace("qnode:%d, perform update action, old row:%p new row:%p", pOld->id, pOld, pNew);
S
Shengliang Guan 已提交
163
  pOld->updateTime = pNew->updateTime;
S
Shengliang Guan 已提交
164 165 166 167 168 169 170 171 172 173 174
  return 0;
}

static int32_t mndSetCreateQnodeRedoLogs(STrans *pTrans, SQnodeObj *pObj) {
  SSdbRaw *pRedoRaw = mndQnodeActionEncode(pObj);
  if (pRedoRaw == NULL) return -1;
  if (mndTransAppendRedolog(pTrans, pRedoRaw) != 0) return -1;
  if (sdbSetRawStatus(pRedoRaw, SDB_STATUS_CREATING) != 0) return -1;
  return 0;
}

175 176 177 178 179 180 181 182
static int32_t mndSetCreateQnodeUndoLogs(STrans *pTrans, SQnodeObj *pObj) {
  SSdbRaw *pUndoRaw = mndQnodeActionEncode(pObj);
  if (pUndoRaw == NULL) return -1;
  if (mndTransAppendUndolog(pTrans, pUndoRaw) != 0) return -1;
  if (sdbSetRawStatus(pUndoRaw, SDB_STATUS_DROPPED) != 0) return -1;
  return 0;
}

S
Shengliang Guan 已提交
183 184 185 186 187 188 189 190 191
static int32_t mndSetCreateQnodeCommitLogs(STrans *pTrans, SQnodeObj *pObj) {
  SSdbRaw *pCommitRaw = mndQnodeActionEncode(pObj);
  if (pCommitRaw == NULL) return -1;
  if (mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) return -1;
  if (sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY) != 0) return -1;
  return 0;
}

static int32_t mndSetCreateQnodeRedoActions(STrans *pTrans, SDnodeObj *pDnode, SQnodeObj *pObj) {
S
Shengliang Guan 已提交
192 193 194
  SDCreateQnodeReq createReq = {0};
  createReq.dnodeId = pDnode->id;

S
Shengliang Guan 已提交
195
  int32_t contLen = tSerializeSCreateDropMQSNodeReq(NULL, 0, &createReq);
wafwerar's avatar
wafwerar 已提交
196
  void   *pReq = taosMemoryMalloc(contLen);
S
Shengliang Guan 已提交
197
  if (pReq == NULL) {
S
Shengliang Guan 已提交
198 199 200
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
S
Shengliang Guan 已提交
201
  tSerializeSCreateDropMQSNodeReq(pReq, contLen, &createReq);
S
Shengliang Guan 已提交
202 203 204

  STransAction action = {0};
  action.epSet = mndGetDnodeEpset(pDnode);
S
Shengliang Guan 已提交
205
  action.pCont = pReq;
S
Shengliang Guan 已提交
206
  action.contLen = contLen;
S
Shengliang Guan 已提交
207
  action.msgType = TDMT_DND_CREATE_QNODE;
208
  action.acceptableCode = TSDB_CODE_QNODE_ALREADY_DEPLOYED;
S
Shengliang Guan 已提交
209 210

  if (mndTransAppendRedoAction(pTrans, &action) != 0) {
wafwerar's avatar
wafwerar 已提交
211
    taosMemoryFree(pReq);
S
Shengliang Guan 已提交
212 213 214 215 216 217
    return -1;
  }

  return 0;
}

218
static int32_t mndSetCreateQnodeUndoActions(STrans *pTrans, SDnodeObj *pDnode, SQnodeObj *pObj) {
S
Shengliang Guan 已提交
219 220 221
  SDDropQnodeReq dropReq = {0};
  dropReq.dnodeId = pDnode->id;

S
Shengliang Guan 已提交
222
  int32_t contLen = tSerializeSCreateDropMQSNodeReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
223
  void   *pReq = taosMemoryMalloc(contLen);
S
Shengliang Guan 已提交
224
  if (pReq == NULL) {
225 226 227
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
S
Shengliang Guan 已提交
228
  tSerializeSCreateDropMQSNodeReq(pReq, contLen, &dropReq);
229 230 231

  STransAction action = {0};
  action.epSet = mndGetDnodeEpset(pDnode);
S
Shengliang Guan 已提交
232
  action.pCont = pReq;
S
Shengliang Guan 已提交
233
  action.contLen = contLen;
234
  action.msgType = TDMT_DND_DROP_QNODE;
235
  action.acceptableCode = TSDB_CODE_QNODE_NOT_DEPLOYED;
236 237

  if (mndTransAppendUndoAction(pTrans, &action) != 0) {
wafwerar's avatar
wafwerar 已提交
238
    taosMemoryFree(pReq);
239 240 241 242 243 244
    return -1;
  }

  return 0;
}

S
Shengliang Guan 已提交
245
static int32_t mndCreateQnode(SMnode *pMnode, SRpcMsg *pReq, SDnodeObj *pDnode, SMCreateQnodeReq *pCreate) {
246 247
  int32_t code = -1;

S
Shengliang Guan 已提交
248 249 250 251 252
  SQnodeObj qnodeObj = {0};
  qnodeObj.id = pDnode->id;
  qnodeObj.createdTime = taosGetTimestampMs();
  qnodeObj.updateTime = qnodeObj.createdTime;

253
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pReq, "create-qnode");
254
  if (pTrans == NULL) goto _OVER;
S
Shengliang Guan 已提交
255

256
  mInfo("trans:%d, used to create qnode:%d", pTrans->id, pCreate->dnodeId);
257 258 259 260 261 262
  if (mndSetCreateQnodeRedoLogs(pTrans, &qnodeObj) != 0) goto _OVER;
  if (mndSetCreateQnodeUndoLogs(pTrans, &qnodeObj) != 0) goto _OVER;
  if (mndSetCreateQnodeCommitLogs(pTrans, &qnodeObj) != 0) goto _OVER;
  if (mndSetCreateQnodeRedoActions(pTrans, pDnode, &qnodeObj) != 0) goto _OVER;
  if (mndSetCreateQnodeUndoActions(pTrans, pDnode, &qnodeObj) != 0) goto _OVER;
  if (mndTransPrepare(pMnode, pTrans) != 0) goto _OVER;
S
Shengliang Guan 已提交
263 264 265

  code = 0;

266
_OVER:
S
Shengliang Guan 已提交
267 268 269 270
  mndTransDrop(pTrans);
  return code;
}

S
Shengliang Guan 已提交
271 272
static int32_t mndProcessCreateQnodeReq(SRpcMsg *pReq) {
  SMnode          *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
273 274 275 276 277
  int32_t          code = -1;
  SQnodeObj       *pObj = NULL;
  SDnodeObj       *pDnode = NULL;
  SMCreateQnodeReq createReq = {0};

S
Shengliang Guan 已提交
278
  if (tDeserializeSCreateDropMQSNodeReq(pReq->pCont, pReq->contLen, &createReq) != 0) {
S
Shengliang Guan 已提交
279
    terrno = TSDB_CODE_INVALID_MSG;
280
    goto _OVER;
S
Shengliang Guan 已提交
281
  }
S
Shengliang Guan 已提交
282

283
  mInfo("qnode:%d, start to create", createReq.dnodeId);
284
  if (mndCheckOperPrivilege(pMnode, pReq->info.conn.user, MND_OPER_CREATE_QNODE) != 0) {
S
Shengliang Guan 已提交
285 286
    goto _OVER;
  }
S
Shengliang Guan 已提交
287

S
Shengliang Guan 已提交
288
  pObj = mndAcquireQnode(pMnode, createReq.dnodeId);
S
Shengliang Guan 已提交
289
  if (pObj != NULL) {
S
Shengliang Guan 已提交
290
    terrno = TSDB_CODE_MND_QNODE_ALREADY_EXIST;
291
    goto _OVER;
292
  } else if (terrno != TSDB_CODE_MND_QNODE_NOT_EXIST) {
293
    goto _OVER;
S
Shengliang Guan 已提交
294 295
  }

S
Shengliang Guan 已提交
296
  pDnode = mndAcquireDnode(pMnode, createReq.dnodeId);
S
Shengliang Guan 已提交
297 298
  if (pDnode == NULL) {
    terrno = TSDB_CODE_MND_DNODE_NOT_EXIST;
299
    goto _OVER;
S
Shengliang Guan 已提交
300 301
  }

S
Shengliang Guan 已提交
302
  code = mndCreateQnode(pMnode, pReq, pDnode, &createReq);
S
Shengliang Guan 已提交
303
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
304

305
_OVER:
S
Shengliang Guan 已提交
306
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
Shengliang Guan 已提交
307
    mError("qnode:%d, failed to create since %s", createReq.dnodeId, terrstr());
S
Shengliang Guan 已提交
308 309
  }

S
Shengliang Guan 已提交
310 311 312
  mndReleaseQnode(pMnode, pObj);
  mndReleaseDnode(pMnode, pDnode);
  return code;
S
Shengliang Guan 已提交
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
}

static int32_t mndSetDropQnodeRedoLogs(STrans *pTrans, SQnodeObj *pObj) {
  SSdbRaw *pRedoRaw = mndQnodeActionEncode(pObj);
  if (pRedoRaw == NULL) return -1;
  if (mndTransAppendRedolog(pTrans, pRedoRaw) != 0) return -1;
  if (sdbSetRawStatus(pRedoRaw, SDB_STATUS_DROPPING) != 0) return -1;
  return 0;
}

static int32_t mndSetDropQnodeCommitLogs(STrans *pTrans, SQnodeObj *pObj) {
  SSdbRaw *pCommitRaw = mndQnodeActionEncode(pObj);
  if (pCommitRaw == NULL) return -1;
  if (mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) return -1;
  if (sdbSetRawStatus(pCommitRaw, SDB_STATUS_DROPPED) != 0) return -1;
  return 0;
}

static int32_t mndSetDropQnodeRedoActions(STrans *pTrans, SDnodeObj *pDnode, SQnodeObj *pObj) {
S
Shengliang Guan 已提交
332 333 334
  SDDropQnodeReq dropReq = {0};
  dropReq.dnodeId = pDnode->id;

S
Shengliang Guan 已提交
335
  int32_t contLen = tSerializeSCreateDropMQSNodeReq(NULL, 0, &dropReq);
wafwerar's avatar
wafwerar 已提交
336
  void   *pReq = taosMemoryMalloc(contLen);
S
Shengliang Guan 已提交
337
  if (pReq == NULL) {
S
Shengliang Guan 已提交
338 339 340
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
S
Shengliang Guan 已提交
341
  tSerializeSCreateDropMQSNodeReq(pReq, contLen, &dropReq);
S
Shengliang Guan 已提交
342 343 344

  STransAction action = {0};
  action.epSet = mndGetDnodeEpset(pDnode);
S
Shengliang Guan 已提交
345
  action.pCont = pReq;
S
Shengliang Guan 已提交
346
  action.contLen = contLen;
S
Shengliang Guan 已提交
347
  action.msgType = TDMT_DND_DROP_QNODE;
348
  action.acceptableCode = TSDB_CODE_QNODE_NOT_DEPLOYED;
S
Shengliang Guan 已提交
349 350

  if (mndTransAppendRedoAction(pTrans, &action) != 0) {
wafwerar's avatar
wafwerar 已提交
351
    taosMemoryFree(pReq);
S
Shengliang Guan 已提交
352 353 354 355 356 357
    return -1;
  }

  return 0;
}

S
Shengliang Guan 已提交
358
int32_t mndSetDropQnodeInfoToTrans(SMnode *pMnode, STrans *pTrans, SQnodeObj *pObj, bool force) {
359 360 361
  if (pObj == NULL) return 0;
  if (mndSetDropQnodeRedoLogs(pTrans, pObj) != 0) return -1;
  if (mndSetDropQnodeCommitLogs(pTrans, pObj) != 0) return -1;
S
Shengliang Guan 已提交
362 363 364
  if (!force) {
    if (mndSetDropQnodeRedoActions(pTrans, pObj->pDnode, pObj) != 0) return -1;
  }
365 366 367
  return 0;
}

S
Shengliang Guan 已提交
368
static int32_t mndDropQnode(SMnode *pMnode, SRpcMsg *pReq, SQnodeObj *pObj) {
S
Shengliang Guan 已提交
369
  int32_t code = -1;
370

371
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_RETRY, TRN_CONFLICT_NOTHING, pReq, "drop-qnode");
372
  if (pTrans == NULL) goto _OVER;
S
Shengliang Guan 已提交
373

374
  mInfo("trans:%d, used to drop qnode:%d", pTrans->id, pObj->id);
S
Shengliang Guan 已提交
375
  if (mndSetDropQnodeInfoToTrans(pMnode, pTrans, pObj, false) != 0) goto _OVER;
376
  if (mndTransPrepare(pMnode, pTrans) != 0) goto _OVER;
S
Shengliang Guan 已提交
377 378 379

  code = 0;

380
_OVER:
S
Shengliang Guan 已提交
381 382 383 384
  mndTransDrop(pTrans);
  return code;
}

S
Shengliang Guan 已提交
385 386
static int32_t mndProcessDropQnodeReq(SRpcMsg *pReq) {
  SMnode        *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
387 388 389 390
  int32_t        code = -1;
  SQnodeObj     *pObj = NULL;
  SMDropQnodeReq dropReq = {0};

S
Shengliang Guan 已提交
391
  if (tDeserializeSCreateDropMQSNodeReq(pReq->pCont, pReq->contLen, &dropReq) != 0) {
S
Shengliang Guan 已提交
392
    terrno = TSDB_CODE_INVALID_MSG;
393
    goto _OVER;
S
Shengliang Guan 已提交
394
  }
S
Shengliang Guan 已提交
395

396
  mInfo("qnode:%d, start to drop", dropReq.dnodeId);
397
  if (mndCheckOperPrivilege(pMnode, pReq->info.conn.user, MND_OPER_DROP_QNODE) != 0) {
S
Shengliang Guan 已提交
398 399
    goto _OVER;
  }
S
Shengliang Guan 已提交
400

S
Shengliang Guan 已提交
401
  if (dropReq.dnodeId <= 0) {
402
    terrno = TSDB_CODE_INVALID_MSG;
403
    goto _OVER;
S
Shengliang Guan 已提交
404 405
  }

S
Shengliang Guan 已提交
406
  pObj = mndAcquireQnode(pMnode, dropReq.dnodeId);
S
Shengliang Guan 已提交
407
  if (pObj == NULL) {
408
    goto _OVER;
S
Shengliang Guan 已提交
409 410 411
  }

  code = mndDropQnode(pMnode, pReq, pObj);
S
Shengliang Guan 已提交
412
  if (code == 0) code = TSDB_CODE_ACTION_IN_PROGRESS;
S
Shengliang Guan 已提交
413

414
_OVER:
S
Shengliang Guan 已提交
415
  if (code != 0 && code != TSDB_CODE_ACTION_IN_PROGRESS) {
S
shm  
Shengliang Guan 已提交
416
    mError("qnode:%d, failed to drop since %s", dropReq.dnodeId, terrstr());
S
Shengliang Guan 已提交
417 418
  }

S
Shengliang Guan 已提交
419 420
  mndReleaseQnode(pMnode, pObj);
  return code;
S
Shengliang Guan 已提交
421 422
}

S
Shengliang Guan 已提交
423 424 425 426 427
int32_t mndCreateQnodeList(SMnode *pMnode, SArray **pList, int32_t limit) {
  SSdb      *pSdb = pMnode->pSdb;
  void      *pIter = NULL;
  SQnodeObj *pObj = NULL;
  int32_t    numOfRows = 0;
D
dapan1121 已提交
428

S
Shengliang Guan 已提交
429
  SArray *qnodeList = taosArrayInit(5, sizeof(SQueryNodeLoad));
D
dapan1121 已提交
430
  if (NULL == qnodeList) {
431
    mError("failed to alloc epSet while process qnode list req");
D
dapan1121 已提交
432
    terrno = TSDB_CODE_OUT_OF_MEMORY;
D
dapan1121 已提交
433
    return terrno;
D
dapan1121 已提交
434
  }
S
Shengliang Guan 已提交
435

436
  while (1) {
D
dapan 已提交
437
    pIter = sdbFetch(pSdb, SDB_QNODE, pIter, (void **)&pObj);
D
dapan1121 已提交
438 439
    if (pIter == NULL) break;

D
dapan1121 已提交
440 441 442 443 444 445
    SQueryNodeLoad nodeLoad = {0};
    nodeLoad.addr.nodeId = QNODE_HANDLE;
    nodeLoad.addr.epSet.numOfEps = 1;
    tstrncpy(nodeLoad.addr.epSet.eps[0].fqdn, pObj->pDnode->fqdn, TSDB_FQDN_LEN);
    nodeLoad.addr.epSet.eps[0].port = pObj->pDnode->port;
    nodeLoad.load = QNODE_LOAD_VALUE(pObj);
D
dapan1121 已提交
446

D
dapan1121 已提交
447
    (void)taosArrayPush(qnodeList, &nodeLoad);
D
dapan1121 已提交
448 449 450 451

    numOfRows++;
    sdbRelease(pSdb, pObj);

D
dapan1121 已提交
452
    if (limit > 0 && numOfRows >= limit) {
D
dapan1121 已提交
453 454 455 456
      break;
    }
  }

D
dapan1121 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
  *pList = qnodeList;

  return TSDB_CODE_SUCCESS;
}

static int32_t mndProcessQnodeListReq(SRpcMsg *pReq) {
  int32_t       code = -1;
  SMnode       *pMnode = pReq->info.node;
  SQnodeListReq qlistReq = {0};
  SQnodeListRsp qlistRsp = {0};

  if (tDeserializeSQnodeListReq(pReq->pCont, pReq->contLen, &qlistReq) != 0) {
    mError("failed to parse qnode list req");
    terrno = TSDB_CODE_INVALID_MSG;
    goto _OVER;
  }

  if (mndCreateQnodeList(pMnode, &qlistRsp.qnodeList, qlistReq.rowNum) != 0) {
    goto _OVER;
  }

D
dapan1121 已提交
478
  int32_t rspLen = tSerializeSQnodeListRsp(NULL, 0, &qlistRsp);
D
dapan 已提交
479
  void   *pRsp = rpcMallocCont(rspLen);
D
dapan1121 已提交
480 481
  if (pRsp == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
482
    goto _OVER;
D
dapan1121 已提交
483
  }
484

D
dapan1121 已提交
485
  tSerializeSQnodeListRsp(pRsp, rspLen, &qlistRsp);
486

S
Shengliang Guan 已提交
487 488
  pReq->info.rspLen = rspLen;
  pReq->info.rsp = pRsp;
D
dapan1121 已提交
489 490
  code = 0;

491
_OVER:
D
dapan1121 已提交
492 493 494 495
  tFreeSQnodeListRsp(&qlistRsp);
  return code;
}

S
Shengliang Guan 已提交
496 497
static int32_t mndRetrieveQnodes(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows) {
  SMnode    *pMnode = pReq->info.node;
S
Shengliang Guan 已提交
498 499 500 501 502 503 504 505 506 507 508
  SSdb      *pSdb = pMnode->pSdb;
  int32_t    numOfRows = 0;
  int32_t    cols = 0;
  SQnodeObj *pObj = NULL;
  char      *pWrite;

  while (numOfRows < rows) {
    pShow->pIter = sdbFetch(pSdb, SDB_QNODE, pShow->pIter, (void **)&pObj);
    if (pShow->pIter == NULL) break;

    cols = 0;
S
Shengliang Guan 已提交
509 510
    SColumnInfoData *pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
    colDataAppend(pColInfo, numOfRows, (const char *)&pObj->id, false);
S
Shengliang Guan 已提交
511

512
    char ep[TSDB_EP_LEN + VARSTR_HEADER_SIZE] = {0};
513
    STR_WITH_MAXSIZE_TO_VARSTR(ep, pObj->pDnode->ep, pShow->pMeta->pSchemas[cols].bytes);
514 515
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
    colDataAppend(pColInfo, numOfRows, (const char *)ep, false);
S
Shengliang Guan 已提交
516

517 518
    pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
    colDataAppend(pColInfo, numOfRows, (const char *)&pObj->createdTime, false);
S
Shengliang Guan 已提交
519 520 521 522 523

    numOfRows++;
    sdbRelease(pSdb, pObj);
  }

524
  pShow->numOfRows += numOfRows;
S
Shengliang Guan 已提交
525 526 527 528 529 530 531 532

  return numOfRows;
}

static void mndCancelGetNextQnode(SMnode *pMnode, void *pIter) {
  SSdb *pSdb = pMnode->pSdb;
  sdbCancelFetch(pSdb, pIter);
}