mndConsumer.c 40.9 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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 "mndConsumer.h"
L
Liu Jicong 已提交
18
#include "mndPrivilege.h"
L
Liu Jicong 已提交
19
#include "mndShow.h"
20
#include "mndSubscribe.h"
L
Liu Jicong 已提交
21 22
#include "mndTopic.h"
#include "mndTrans.h"
L
Liu Jicong 已提交
23
#include "tcompare.h"
L
Liu Jicong 已提交
24 25
#include "tname.h"

26
#define MND_CONSUMER_VER_NUMBER   1
L
Liu Jicong 已提交
27 28
#define MND_CONSUMER_RESERVE_SIZE 64

wmmhello's avatar
wmmhello 已提交
29
#define MND_MAX_GROUP_PER_TOPIC           100
H
Haojun Liao 已提交
30
#define MND_CONSUMER_LOST_HB_CNT          6
L
Liu Jicong 已提交
31
#define MND_CONSUMER_LOST_CLEAR_THRESHOLD 43200
32

H
Haojun Liao 已提交
33
static int32_t mqRebInExecCnt = 0;
34

L
Liu Jicong 已提交
35 36
static const char *mndConsumerStatusName(int status);

L
Liu Jicong 已提交
37 38
static int32_t mndConsumerActionInsert(SSdb *pSdb, SMqConsumerObj *pConsumer);
static int32_t mndConsumerActionDelete(SSdb *pSdb, SMqConsumerObj *pConsumer);
39
static int32_t mndConsumerActionUpdate(SSdb *pSdb, SMqConsumerObj *pOldConsumer, SMqConsumerObj *pNewConsumer);
S
Shengliang Guan 已提交
40
static int32_t mndProcessConsumerMetaMsg(SRpcMsg *pMsg);
41
static int32_t mndRetrieveConsumer(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rows);
L
Liu Jicong 已提交
42
static void    mndCancelGetNextConsumer(SMnode *pMnode, void *pIter);
L
Liu Jicong 已提交
43

S
Shengliang Guan 已提交
44 45
static int32_t mndProcessSubscribeReq(SRpcMsg *pMsg);
static int32_t mndProcessAskEpReq(SRpcMsg *pMsg);
46
static int32_t mndProcessMqHbReq(SRpcMsg *pMsg);
S
Shengliang Guan 已提交
47 48
static int32_t mndProcessMqTimerMsg(SRpcMsg *pMsg);
static int32_t mndProcessConsumerLostMsg(SRpcMsg *pMsg);
L
Liu Jicong 已提交
49
static int32_t mndProcessConsumerClearMsg(SRpcMsg *pMsg);
S
Shengliang Guan 已提交
50
static int32_t mndProcessConsumerRecoverMsg(SRpcMsg *pMsg);
51

L
Liu Jicong 已提交
52
int32_t mndInitConsumer(SMnode *pMnode) {
S
Shengliang Guan 已提交
53 54 55 56 57 58 59 60 61
  SSdbTable table = {
      .sdbType = SDB_CONSUMER,
      .keyType = SDB_KEY_INT64,
      .encodeFp = (SdbEncodeFp)mndConsumerActionEncode,
      .decodeFp = (SdbDecodeFp)mndConsumerActionDecode,
      .insertFp = (SdbInsertFp)mndConsumerActionInsert,
      .updateFp = (SdbUpdateFp)mndConsumerActionUpdate,
      .deleteFp = (SdbDeleteFp)mndConsumerActionDelete,
  };
L
Liu Jicong 已提交
62

L
Liu Jicong 已提交
63 64 65
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_SUBSCRIBE, mndProcessSubscribeReq);
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_HB, mndProcessMqHbReq);
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_ASK_EP, mndProcessAskEpReq);
L
Liu Jicong 已提交
66
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_TIMER, mndProcessMqTimerMsg);
wmmhello's avatar
wmmhello 已提交
67
//  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_CONSUMER_LOST, mndProcessConsumerLostMsg);
L
Liu Jicong 已提交
68
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_CONSUMER_RECOVER, mndProcessConsumerRecoverMsg);
L
Liu Jicong 已提交
69
  mndSetMsgHandle(pMnode, TDMT_MND_TMQ_LOST_CONSUMER_CLEAR, mndProcessConsumerClearMsg);
L
Liu Jicong 已提交
70 71 72 73

  mndAddShowRetrieveHandle(pMnode, TSDB_MGMT_TABLE_CONSUMERS, mndRetrieveConsumer);
  mndAddShowFreeIterHandle(pMnode, TSDB_MGMT_TABLE_CONSUMERS, mndCancelGetNextConsumer);

L
Liu Jicong 已提交
74 75 76 77 78
  return sdbSetTable(pMnode->pSdb, table);
}

void mndCleanupConsumer(SMnode *pMnode) {}

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
void mndDropConsumerFromSdb(SMnode *pMnode, int64_t consumerId){
  SMqConsumerClearMsg *pClearMsg = rpcMallocCont(sizeof(SMqConsumerClearMsg));
  if (pClearMsg == NULL) {
    mError("consumer:0x%"PRIx64" failed to clear consumer due to out of memory. alloc size:%d", consumerId, (int32_t)sizeof(SMqConsumerClearMsg));
    return;
  }

  pClearMsg->consumerId = consumerId;
  SRpcMsg rpcMsg = {
      .msgType = TDMT_MND_TMQ_LOST_CONSUMER_CLEAR, .pCont = pClearMsg, .contLen = sizeof(SMqConsumerClearMsg)};

  mInfo("consumer:0x%" PRIx64 " drop from sdb", consumerId);
  tmsgPutToQueue(&pMnode->msgCb, WRITE_QUEUE, &rpcMsg);
  return;
}

L
Liu Jicong 已提交
95
bool mndRebTryStart() {
H
Haojun Liao 已提交
96
  int32_t old = atomic_val_compare_exchange_32(&mqRebInExecCnt, 0, 1);
C
cadem 已提交
97
  mDebug("tq timer, rebalance counter old val:%d", old);
L
Liu Jicong 已提交
98 99 100
  return old == 0;
}

X
Xiaoyu Wang 已提交
101
void mndRebEnd() { mndRebCntDec(); }
L
Liu Jicong 已提交
102

S
Shengliang Guan 已提交
103 104
void mndRebCntInc() {
  int32_t val = atomic_add_fetch_32(&mqRebInExecCnt, 1);
105
  mInfo("rebalance trans start, rebalance counter:%d", val);
S
Shengliang Guan 已提交
106
}
L
Liu Jicong 已提交
107

S
Shengliang Guan 已提交
108
void mndRebCntDec() {
109 110 111 112 113 114 115 116 117 118
  while (1) {
    int32_t val = atomic_load_32(&mqRebInExecCnt);
    if (val <= 0) {
      mError("rebalance trans end, rebalance counter:%d should not be less equalled than 0, ignore counter desc", val);
      break;
    }

    int32_t newVal = val - 1;
    int32_t oldVal = atomic_val_compare_exchange_32(&mqRebInExecCnt, val, newVal);
    if (oldVal == val) {
C
cadem 已提交
119
      mDebug("rebalance trans end, rebalance counter:%d", newVal);
120 121 122
      break;
    }
  }
S
Shengliang Guan 已提交
123
}
L
Liu Jicong 已提交
124

wmmhello's avatar
wmmhello 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
//static int32_t mndProcessConsumerLostMsg(SRpcMsg *pMsg) {
//  SMnode             *pMnode = pMsg->info.node;
//  SMqConsumerLostMsg *pLostMsg = pMsg->pCont;
//  SMqConsumerObj     *pConsumer = mndAcquireConsumer(pMnode, pLostMsg->consumerId);
//  if (pConsumer == NULL) {
//    return 0;
//  }
//
//  mInfo("process consumer lost msg, consumer:0x%" PRIx64 " status:%d(%s)", pLostMsg->consumerId, pConsumer->status,
//        mndConsumerStatusName(pConsumer->status));
//
//  if (pConsumer->status != MQ_CONSUMER_STATUS_READY) {
//    mndReleaseConsumer(pMnode, pConsumer);
//    return -1;
//  }
//
//  SMqConsumerObj *pConsumerNew = tNewSMqConsumerObj(pConsumer->consumerId, pConsumer->cgroup);
//  pConsumerNew->updateType = CONSUMER_UPDATE_TIMER_LOST;
//
//  mndReleaseConsumer(pMnode, pConsumer);
//
//  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pMsg, "lost-csm");
//  if (pTrans == NULL) {
//    goto FAIL;
//  }
//
//  if (mndSetConsumerCommitLogs(pMnode, pTrans, pConsumerNew) != 0) {
//    goto FAIL;
//  }
//
//  if (mndTransPrepare(pMnode, pTrans) != 0) {
//    goto FAIL;
//  }
//
//  tDeleteSMqConsumerObj(pConsumerNew, true);
//  mndTransDrop(pTrans);
//  return 0;
//FAIL:
//  tDeleteSMqConsumerObj(pConsumerNew, true);
//  mndTransDrop(pTrans);
//  return -1;
//}
167

S
Shengliang Guan 已提交
168 169 170
static int32_t mndProcessConsumerRecoverMsg(SRpcMsg *pMsg) {
  SMnode                *pMnode = pMsg->info.node;
  SMqConsumerRecoverMsg *pRecoverMsg = pMsg->pCont;
L
Liu Jicong 已提交
171
  SMqConsumerObj        *pConsumer = mndAcquireConsumer(pMnode, pRecoverMsg->consumerId);
L
Liu Jicong 已提交
172 173 174 175
  if (pConsumer == NULL) {
    mError("cannot find consumer %" PRId64 " when processing consumer recover msg", pRecoverMsg->consumerId);
    return -1;
  }
L
Liu Jicong 已提交
176

H
Haojun Liao 已提交
177 178
  mInfo("receive consumer recover msg, consumer:0x%" PRIx64 " status:%d(%s)", pRecoverMsg->consumerId,
        pConsumer->status, mndConsumerStatusName(pConsumer->status));
L
Liu Jicong 已提交
179

wmmhello's avatar
wmmhello 已提交
180
  if (pConsumer->status != MQ_CONSUMER_STATUS_LOST) {
L
Liu Jicong 已提交
181
    mndReleaseConsumer(pMnode, pConsumer);
L
Liu Jicong 已提交
182
    terrno = TSDB_CODE_MND_CONSUMER_NOT_READY;
L
Liu Jicong 已提交
183 184 185
    return -1;
  }

L
Liu Jicong 已提交
186
  SMqConsumerObj *pConsumerNew = tNewSMqConsumerObj(pConsumer->consumerId, pConsumer->cgroup);
wmmhello's avatar
wmmhello 已提交
187
  pConsumerNew->updateType = CONSUMER_UPDATE_RECOVER;
L
Liu Jicong 已提交
188 189 190

  mndReleaseConsumer(pMnode, pConsumer);

191
  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_RETRY, TRN_CONFLICT_NOTHING, pMsg, "recover-csm");
H
Haojun Liao 已提交
192 193 194 195
  if (pTrans == NULL) {
    goto FAIL;
  }

L
Liu Jicong 已提交
196 197 198
  if (mndSetConsumerCommitLogs(pMnode, pTrans, pConsumerNew) != 0) goto FAIL;
  if (mndTransPrepare(pMnode, pTrans) != 0) goto FAIL;

wmmhello's avatar
wmmhello 已提交
199 200
  tDeleteSMqConsumerObj(pConsumerNew, true);

L
Liu Jicong 已提交
201 202 203
  mndTransDrop(pTrans);
  return 0;
FAIL:
wmmhello's avatar
wmmhello 已提交
204 205
  tDeleteSMqConsumerObj(pConsumerNew, true);

L
Liu Jicong 已提交
206 207 208 209
  mndTransDrop(pTrans);
  return -1;
}

210
// todo check the clear process
L
Liu Jicong 已提交
211 212 213
static int32_t mndProcessConsumerClearMsg(SRpcMsg *pMsg) {
  SMnode              *pMnode = pMsg->info.node;
  SMqConsumerClearMsg *pClearMsg = pMsg->pCont;
H
Haojun Liao 已提交
214 215

  SMqConsumerObj *pConsumer = mndAcquireConsumer(pMnode, pClearMsg->consumerId);
L
Liu Jicong 已提交
216
  if (pConsumer == NULL) {
H
Haojun Liao 已提交
217
    mError("consumer:0x%"PRIx64" failed to be found to clear it", pClearMsg->consumerId);
L
Liu Jicong 已提交
218 219 220
    return 0;
  }

H
Haojun Liao 已提交
221
  mInfo("consumer:0x%" PRIx64 " needs to be cleared, status %s", pClearMsg->consumerId,
L
Liu Jicong 已提交
222 223
        mndConsumerStatusName(pConsumer->status));

wmmhello's avatar
wmmhello 已提交
224 225 226 227
//  if (pConsumer->status != MQ_CONSUMER_STATUS_LOST) {
//    mndReleaseConsumer(pMnode, pConsumer);
//    return -1;
//  }
L
Liu Jicong 已提交
228 229

  SMqConsumerObj *pConsumerNew = tNewSMqConsumerObj(pConsumer->consumerId, pConsumer->cgroup);
wmmhello's avatar
wmmhello 已提交
230
//  pConsumerNew->updateType = CONSUMER_UPDATE_TIMER_LOST;
L
Liu Jicong 已提交
231 232 233 234 235

  mndReleaseConsumer(pMnode, pConsumer);

  STrans *pTrans = mndTransCreate(pMnode, TRN_POLICY_ROLLBACK, TRN_CONFLICT_NOTHING, pMsg, "clear-csm");
  if (pTrans == NULL) goto FAIL;
H
Haojun Liao 已提交
236 237

  // this is the drop action, not the update action
L
Liu Jicong 已提交
238 239 240
  if (mndSetConsumerDropLogs(pMnode, pTrans, pConsumerNew) != 0) goto FAIL;
  if (mndTransPrepare(pMnode, pTrans) != 0) goto FAIL;

wmmhello's avatar
wmmhello 已提交
241 242
  tDeleteSMqConsumerObj(pConsumerNew, true);

L
Liu Jicong 已提交
243 244
  mndTransDrop(pTrans);
  return 0;
245

L
Liu Jicong 已提交
246
FAIL:
wmmhello's avatar
wmmhello 已提交
247 248
  tDeleteSMqConsumerObj(pConsumerNew, true);

L
Liu Jicong 已提交
249 250 251 252
  mndTransDrop(pTrans);
  return -1;
}

L
Liu Jicong 已提交
253
static SMqRebInfo *mndGetOrCreateRebSub(SHashObj *pHash, const char *key) {
L
Liu Jicong 已提交
254 255 256 257
  SMqRebInfo *pRebInfo = taosHashGet(pHash, key, strlen(key) + 1);
  if (pRebInfo == NULL) {
    pRebInfo = tNewSMqRebSubscribe(key);
    if (pRebInfo == NULL) {
258 259 260
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return NULL;
    }
L
Liu Jicong 已提交
261 262 263
    taosHashPut(pHash, key, strlen(key) + 1, pRebInfo, sizeof(SMqRebInfo));
    taosMemoryFree(pRebInfo);
    pRebInfo = taosHashGet(pHash, key, strlen(key) + 1);
264
  }
L
Liu Jicong 已提交
265
  return pRebInfo;
266 267
}

X
Xiaoyu Wang 已提交
268 269
static void freeRebalanceItem(void *param) {
  SMqRebInfo *pInfo = param;
H
Haojun Liao 已提交
270 271 272 273
  taosArrayDestroy(pInfo->newConsumers);
  taosArrayDestroy(pInfo->removedConsumers);
}

S
Shengliang Guan 已提交
274 275
static int32_t mndProcessMqTimerMsg(SRpcMsg *pMsg) {
  SMnode         *pMnode = pMsg->info.node;
276 277 278 279
  SSdb           *pSdb = pMnode->pSdb;
  SMqConsumerObj *pConsumer;
  void           *pIter = NULL;

D
dapan1121 已提交
280
  mDebug("start to process mq timer");
281

282
  // rebalance cannot be parallel
L
Liu Jicong 已提交
283
  if (!mndRebTryStart()) {
D
dapan1121 已提交
284
    mDebug("mq rebalance already in progress, do nothing");
285 286 287 288
    return 0;
  }

  SMqDoRebalanceMsg *pRebMsg = rpcMallocCont(sizeof(SMqDoRebalanceMsg));
H
Haojun Liao 已提交
289
  if (pRebMsg == NULL) {
X
Xiaoyu Wang 已提交
290
    mError("failed to create the rebalance msg, size:%d, quit mq timer", (int32_t)sizeof(SMqDoRebalanceMsg));
H
Haojun Liao 已提交
291 292 293 294
    mndRebEnd();
    return TSDB_CODE_OUT_OF_MEMORY;
  }

295
  pRebMsg->rebSubHash = taosHashInit(64, MurmurHash3_32, true, HASH_NO_LOCK);
H
Haojun Liao 已提交
296 297 298 299 300 301 302 303
  if (pRebMsg->rebSubHash == NULL) {
    mError("failed to create rebalance hashmap");
    rpcFreeCont(pRebMsg);
    mndRebEnd();
    return TSDB_CODE_OUT_OF_MEMORY;
  }

  taosHashSetFreeFp(pRebMsg->rebSubHash, freeRebalanceItem);
304 305 306 307

  // iterate all consumers, find all modification
  while (1) {
    pIter = sdbFetch(pSdb, SDB_CONSUMER, pIter, (void **)&pConsumer);
308 309 310
    if (pIter == NULL) {
      break;
    }
311 312 313

    int32_t hbStatus = atomic_add_fetch_32(&pConsumer->hbStatus, 1);
    int32_t status = atomic_load_32(&pConsumer->status);
H
Haojun Liao 已提交
314

wmmhello's avatar
wmmhello 已提交
315 316
    mDebug("check for consumer:0x%" PRIx64 " status:%d(%s), sub-time:%" PRId64 ", createTime:%" PRId64 ", hbstatus:%d",
           pConsumer->consumerId, status, mndConsumerStatusName(status), pConsumer->subscribeTime, pConsumer->createTime,
X
Xiaoyu Wang 已提交
317
           hbStatus);
L
Liu Jicong 已提交
318

wmmhello's avatar
wmmhello 已提交
319
    if (status == MQ_CONSUMER_STATUS_READY) {
wmmhello's avatar
wmmhello 已提交
320 321 322
      if (taosArrayGetSize(pConsumer->assignedTopics) == 0) {   // unsubscribe or close
        mndDropConsumerFromSdb(pMnode, pConsumer->consumerId);
      } else if (hbStatus > MND_CONSUMER_LOST_HB_CNT) {
wmmhello's avatar
wmmhello 已提交
323 324 325 326 327 328 329 330
        taosRLockLatch(&pConsumer->lock);
        int32_t topicNum = taosArrayGetSize(pConsumer->currentTopics);
        for (int32_t i = 0; i < topicNum; i++) {
          char  key[TSDB_SUBSCRIBE_KEY_LEN];
          char *removedTopic = taosArrayGetP(pConsumer->currentTopics, i);
          mndMakeSubscribeKey(key, pConsumer->cgroup, removedTopic);
          SMqRebInfo *pRebSub = mndGetOrCreateRebSub(pRebMsg->rebSubHash, key);
          taosArrayPush(pRebSub->removedConsumers, &pConsumer->consumerId);
H
Haojun Liao 已提交
331
        }
wmmhello's avatar
wmmhello 已提交
332
        taosRUnLockLatch(&pConsumer->lock);
H
Haojun Liao 已提交
333
      }
wmmhello's avatar
wmmhello 已提交
334
    } else if (status == MQ_CONSUMER_STATUS_LOST) {
wmmhello's avatar
wmmhello 已提交
335
      if (hbStatus > MND_CONSUMER_LOST_CLEAR_THRESHOLD) {   // clear consumer if lost a day
336
        mndDropConsumerFromSdb(pMnode, pConsumer->consumerId);
L
Liu Jicong 已提交
337
      }
338
    } else {  // MQ_CONSUMER_STATUS_REBALANCE
L
Liu Jicong 已提交
339
      taosRLockLatch(&pConsumer->lock);
340

341 342 343 344 345
      int32_t newTopicNum = taosArrayGetSize(pConsumer->rebNewTopics);
      for (int32_t i = 0; i < newTopicNum; i++) {
        char  key[TSDB_SUBSCRIBE_KEY_LEN];
        char *newTopic = taosArrayGetP(pConsumer->rebNewTopics, i);
        mndMakeSubscribeKey(key, pConsumer->cgroup, newTopic);
L
Liu Jicong 已提交
346
        SMqRebInfo *pRebSub = mndGetOrCreateRebSub(pRebMsg->rebSubHash, key);
347 348 349 350 351 352 353 354
        taosArrayPush(pRebSub->newConsumers, &pConsumer->consumerId);
      }

      int32_t removedTopicNum = taosArrayGetSize(pConsumer->rebRemovedTopics);
      for (int32_t i = 0; i < removedTopicNum; i++) {
        char  key[TSDB_SUBSCRIBE_KEY_LEN];
        char *removedTopic = taosArrayGetP(pConsumer->rebRemovedTopics, i);
        mndMakeSubscribeKey(key, pConsumer->cgroup, removedTopic);
L
Liu Jicong 已提交
355
        SMqRebInfo *pRebSub = mndGetOrCreateRebSub(pRebMsg->rebSubHash, key);
356 357
        taosArrayPush(pRebSub->removedConsumers, &pConsumer->consumerId);
      }
L
Liu Jicong 已提交
358
      taosRUnLockLatch(&pConsumer->lock);
359 360 361 362 363 364 365 366
    }

    mndReleaseConsumer(pMnode, pConsumer);
  }

  if (taosHashGetSize(pRebMsg->rebSubHash) != 0) {
    mInfo("mq rebalance will be triggered");
    SRpcMsg rpcMsg = {
L
Liu Jicong 已提交
367
        .msgType = TDMT_MND_TMQ_DO_REBALANCE,
368 369 370 371 372 373 374
        .pCont = pRebMsg,
        .contLen = sizeof(SMqDoRebalanceMsg),
    };
    tmsgPutToQueue(&pMnode->msgCb, WRITE_QUEUE, &rpcMsg);
  } else {
    taosHashCleanup(pRebMsg->rebSubHash);
    rpcFreeCont(pRebMsg);
H
Haojun Liao 已提交
375
    mDebug("mq timer finished, no need to re-balance");
L
Liu Jicong 已提交
376
    mndRebEnd();
377 378 379 380
  }
  return 0;
}

381
static int32_t mndProcessMqHbReq(SRpcMsg *pMsg) {
L
Liu Jicong 已提交
382 383
  SMnode  *pMnode = pMsg->info.node;
  SMqHbReq req = {0};
384

D
dapan1121 已提交
385 386 387 388 389
  if (tDeserializeSMqHbReq(pMsg->pCont, pMsg->contLen, &req) < 0) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

L
Liu Jicong 已提交
390
  int64_t         consumerId = req.consumerId;
391
  SMqConsumerObj *pConsumer = mndAcquireConsumer(pMnode, consumerId);
L
Liu Jicong 已提交
392
  if (pConsumer == NULL) {
X
Xiaoyu Wang 已提交
393
    mError("consumer:0x%" PRIx64 " not exist", consumerId);
L
Liu Jicong 已提交
394 395 396
    terrno = TSDB_CODE_MND_CONSUMER_NOT_EXIST;
    return -1;
  }
397 398 399 400 401

  atomic_store_32(&pConsumer->hbStatus, 0);

  int32_t status = atomic_load_32(&pConsumer->status);

wmmhello's avatar
wmmhello 已提交
402
  if (status == MQ_CONSUMER_STATUS_LOST) {
X
Xiaoyu Wang 已提交
403
    mInfo("try to recover consumer:0x%" PRIx64 "", consumerId);
404 405 406
    SMqConsumerRecoverMsg *pRecoverMsg = rpcMallocCont(sizeof(SMqConsumerRecoverMsg));

    pRecoverMsg->consumerId = consumerId;
407
    SRpcMsg pRpcMsg = {
L
Liu Jicong 已提交
408
        .msgType = TDMT_MND_TMQ_CONSUMER_RECOVER,
409 410 411 412
        .pCont = pRecoverMsg,
        .contLen = sizeof(SMqConsumerRecoverMsg),
    };
    tmsgPutToQueue(&pMnode->msgCb, WRITE_QUEUE, &pRpcMsg);
413 414 415 416 417 418 419
  }

  mndReleaseConsumer(pMnode, pConsumer);

  return 0;
}

S
Shengliang Guan 已提交
420
static int32_t mndProcessAskEpReq(SRpcMsg *pMsg) {
L
Liu Jicong 已提交
421 422 423
  SMnode     *pMnode = pMsg->info.node;
  SMqAskEpReq req = {0};
  SMqAskEpRsp rsp = {0};
D
dapan1121 已提交
424 425 426 427 428 429

  if (tDeserializeSMqAskEpReq(pMsg->pCont, pMsg->contLen, &req) < 0) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }

L
Liu Jicong 已提交
430 431
  int64_t consumerId = req.consumerId;
  int32_t epoch = req.epoch;
432

433
  SMqConsumerObj *pConsumer = mndAcquireConsumer(pMnode, consumerId);
L
Liu Jicong 已提交
434
  if (pConsumer == NULL) {
H
Haojun Liao 已提交
435
    mError("consumer:0x%" PRIx64 " group:%s not exists in sdb", consumerId, req.cgroup);
436 437 438 439
    terrno = TSDB_CODE_MND_CONSUMER_NOT_EXIST;
    return -1;
  }

H
Haojun Liao 已提交
440 441 442 443 444
  int32_t ret = strncmp(req.cgroup, pConsumer->cgroup, tListLen(pConsumer->cgroup));
  if (ret != 0) {
    mError("consumer:0x%" PRIx64 " group:%s not consistent with data in sdb, saved cgroup:%s", consumerId, req.cgroup,
           pConsumer->cgroup);
    terrno = TSDB_CODE_MND_CONSUMER_NOT_EXIST;
wmmhello's avatar
wmmhello 已提交
445
    goto FAIL;
H
Haojun Liao 已提交
446
  }
447

448 449 450 451
  atomic_store_32(&pConsumer->hbStatus, 0);

  // 1. check consumer status
  int32_t status = atomic_load_32(&pConsumer->status);
L
Liu Jicong 已提交
452

wmmhello's avatar
wmmhello 已提交
453
  if (status == MQ_CONSUMER_STATUS_LOST) {
X
Xiaoyu Wang 已提交
454
    mInfo("try to recover consumer:0x%" PRIx64, consumerId);
L
Liu Jicong 已提交
455 456 457
    SMqConsumerRecoverMsg *pRecoverMsg = rpcMallocCont(sizeof(SMqConsumerRecoverMsg));

    pRecoverMsg->consumerId = consumerId;
458
    SRpcMsg pRpcMsg = {
L
Liu Jicong 已提交
459
        .msgType = TDMT_MND_TMQ_CONSUMER_RECOVER,
460 461 462
        .pCont = pRecoverMsg,
        .contLen = sizeof(SMqConsumerRecoverMsg),
    };
H
Haojun Liao 已提交
463

464
    tmsgPutToQueue(&pMnode->msgCb, WRITE_QUEUE, &pRpcMsg);
465 466
  }

wmmhello's avatar
wmmhello 已提交
467
  if (status != MQ_CONSUMER_STATUS_READY) {
X
Xiaoyu Wang 已提交
468
    mInfo("consumer:0x%" PRIx64 " not ready, status: %s", consumerId, mndConsumerStatusName(status));
469
    terrno = TSDB_CODE_MND_CONSUMER_NOT_READY;
wmmhello's avatar
wmmhello 已提交
470
    goto FAIL;
471 472 473 474
  }

  int32_t serverEpoch = atomic_load_32(&pConsumer->epoch);

475
  // 2. check epoch, only send ep info when epochs do not match
476 477
  if (epoch != serverEpoch) {
    taosRLockLatch(&pConsumer->lock);
X
Xiaoyu Wang 已提交
478 479
    mInfo("process ask ep, consumer:0x%" PRIx64 "(epoch %d) update with server epoch %d", consumerId, epoch,
          serverEpoch);
480 481 482 483 484
    int32_t numOfTopics = taosArrayGetSize(pConsumer->currentTopics);

    rsp.topics = taosArrayInit(numOfTopics, sizeof(SMqSubTopicEp));
    if (rsp.topics == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
485
      taosRUnLockLatch(&pConsumer->lock);
486 487 488
      goto FAIL;
    }

H
Haojun Liao 已提交
489
    // handle all topics subscribed by this consumer
490 491 492 493
    for (int32_t i = 0; i < numOfTopics; i++) {
      char            *topic = taosArrayGetP(pConsumer->currentTopics, i);
      SMqSubscribeObj *pSub = mndAcquireSubscribe(pMnode, pConsumer->cgroup, topic);
      // txn guarantees pSub is created
L
Liu Jicong 已提交
494

495 496 497 498 499 500 501 502
      taosRLockLatch(&pSub->lock);

      SMqSubTopicEp topicEp = {0};
      strcpy(topicEp.topic, topic);

      // 2.1 fetch topic schema
      SMqTopicObj *pTopic = mndAcquireTopic(pMnode, topic);
      taosRLockLatch(&pTopic->lock);
L
Liu Jicong 已提交
503
      tstrncpy(topicEp.db, pTopic->db, TSDB_DB_FNAME_LEN);
504
      topicEp.schema.nCols = pTopic->schema.nCols;
L
Liu Jicong 已提交
505 506 507 508
      if (topicEp.schema.nCols) {
        topicEp.schema.pSchema = taosMemoryCalloc(topicEp.schema.nCols, sizeof(SSchema));
        memcpy(topicEp.schema.pSchema, pTopic->schema.pSchema, topicEp.schema.nCols * sizeof(SSchema));
      }
509 510 511 512
      taosRUnLockLatch(&pTopic->lock);
      mndReleaseTopic(pMnode, pTopic);

      // 2.2 iterate all vg assigned to the consumer of that topic
513 514
      SMqConsumerEp *pConsumerEp = taosHashGet(pSub->consumerHash, &consumerId, sizeof(int64_t));
      int32_t        vgNum = taosArrayGetSize(pConsumerEp->vgs);
515

H
Haojun Liao 已提交
516
      // this customer assigned vgroups
517 518 519
      topicEp.vgs = taosArrayInit(vgNum, sizeof(SMqSubVgEp));
      if (topicEp.vgs == NULL) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
520
        taosRUnLockLatch(&pConsumer->lock);
L
Liu Jicong 已提交
521 522
        taosRUnLockLatch(&pSub->lock);
        mndReleaseSubscribe(pMnode, pSub);
523 524 525 526
        goto FAIL;
      }

      for (int32_t j = 0; j < vgNum; j++) {
527
        SMqVgEp *pVgEp = taosArrayGetP(pConsumerEp->vgs, j);
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
        char     offsetKey[TSDB_PARTITION_KEY_LEN];
        mndMakePartitionKey(offsetKey, pConsumer->cgroup, topic, pVgEp->vgId);
        // 2.2.1 build vg ep
        SMqSubVgEp vgEp = {
            .epSet = pVgEp->epSet,
            .vgId = pVgEp->vgId,
            .offset = -1,
        };

        taosArrayPush(topicEp.vgs, &vgEp);
      }
      taosArrayPush(rsp.topics, &topicEp);

      taosRUnLockLatch(&pSub->lock);
      mndReleaseSubscribe(pMnode, pSub);
    }
    taosRUnLockLatch(&pConsumer->lock);
  }
H
Haojun Liao 已提交
546

547
  // encode rsp
L
Liu Jicong 已提交
548
  int32_t tlen = sizeof(SMqRspHead) + tEncodeSMqAskEpRsp(NULL, &rsp);
549 550
  void   *buf = rpcMallocCont(tlen);
  if (buf == NULL) {
L
Liu Jicong 已提交
551
    terrno = TSDB_CODE_OUT_OF_MEMORY;
wmmhello's avatar
wmmhello 已提交
552
    goto FAIL;
L
Liu Jicong 已提交
553
  }
H
Haojun Liao 已提交
554

555 556 557 558 559 560 561 562
  SMqRspHead* pHead = buf;

  pHead->mqMsgType = TMQ_MSG_TYPE__EP_RSP;
  pHead->epoch = serverEpoch;
  pHead->consumerId = pConsumer->consumerId;
  pHead->walsver = 0;
  pHead->walever = 0;

S
Shengliang Guan 已提交
563

564
  void *abuf = POINTER_SHIFT(buf, sizeof(SMqRspHead));
L
Liu Jicong 已提交
565
  tEncodeSMqAskEpRsp(&abuf, &rsp);
566 567

  // release consumer and free memory
L
Liu Jicong 已提交
568
  tDeleteSMqAskEpRsp(&rsp);
569 570 571
  mndReleaseConsumer(pMnode, pConsumer);

  // send rsp
S
Shengliang Guan 已提交
572 573
  pMsg->info.rsp = buf;
  pMsg->info.rspLen = tlen;
574
  return 0;
H
Haojun Liao 已提交
575

576
FAIL:
L
Liu Jicong 已提交
577
  tDeleteSMqAskEpRsp(&rsp);
578 579 580 581
  mndReleaseConsumer(pMnode, pConsumer);
  return -1;
}

L
Liu Jicong 已提交
582 583 584 585 586 587 588 589
int32_t mndSetConsumerDropLogs(SMnode *pMnode, STrans *pTrans, SMqConsumerObj *pConsumer) {
  SSdbRaw *pCommitRaw = mndConsumerActionEncode(pConsumer);
  if (pCommitRaw == NULL) return -1;
  if (mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) return -1;
  if (sdbSetRawStatus(pCommitRaw, SDB_STATUS_DROPPED) != 0) return -1;
  return 0;
}

590 591 592 593 594 595 596 597
int32_t mndSetConsumerCommitLogs(SMnode *pMnode, STrans *pTrans, SMqConsumerObj *pConsumer) {
  SSdbRaw *pCommitRaw = mndConsumerActionEncode(pConsumer);
  if (pCommitRaw == NULL) return -1;
  if (mndTransAppendCommitlog(pTrans, pCommitRaw) != 0) return -1;
  if (sdbSetRawStatus(pCommitRaw, SDB_STATUS_READY) != 0) return -1;
  return 0;
}

X
Xiaoyu Wang 已提交
598
static int32_t validateTopics(const SArray *pTopicList, SMnode *pMnode, const char *pUser) {
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
  int32_t numOfTopics = taosArrayGetSize(pTopicList);

  for (int32_t i = 0; i < numOfTopics; i++) {
    char        *pOneTopic = taosArrayGetP(pTopicList, i);
    SMqTopicObj *pTopic = mndAcquireTopic(pMnode, pOneTopic);
    if (pTopic == NULL) {  // terrno has been set by callee function
      return -1;
    }

    if (mndCheckTopicPrivilege(pMnode, pUser, MND_OPER_SUBSCRIBE, pTopic) != 0) {
      mndReleaseTopic(pMnode, pTopic);
      return -1;
    }

    mndReleaseTopic(pMnode, pTopic);
  }

  return 0;
}

X
Xiaoyu Wang 已提交
619
static void *topicNameDup(void *p) { return taosStrdup((char *)p); }
620

X
Xiaoyu Wang 已提交
621 622
static void freeItem(void *param) {
  void *pItem = *(void **)param;
623 624 625
  if (pItem != NULL) {
    taosMemoryFree(pItem);
  }
626 627
}

628 629 630 631
int32_t mndProcessSubscribeReq(SRpcMsg *pMsg) {
  SMnode *pMnode = pMsg->info.node;
  char   *msgStr = pMsg->pCont;

632 633
  SCMSubscribeReq subscribe = {0};
  tDeserializeSCMSubscribeReq(msgStr, &subscribe);
634

635
  int64_t        consumerId = subscribe.consumerId;
636
  char           *cgroup = subscribe.cgroup;
H
Haojun Liao 已提交
637
  SMqConsumerObj *pExistedConsumer = NULL;
638
  SMqConsumerObj *pConsumerNew = NULL;
wmmhello's avatar
wmmhello 已提交
639
  STrans         *pTrans       = NULL;
640 641

  int32_t code = -1;
642 643
  SArray *pTopicList = subscribe.topicNames;
  taosArraySort(pTopicList, taosArrayCompareString);
644
  taosArrayRemoveDuplicate(pTopicList, taosArrayCompareString, freeItem);
645

646
  int32_t newTopicNum = taosArrayGetSize(pTopicList);
wmmhello's avatar
wmmhello 已提交
647
  for(int i = 0; i < newTopicNum; i++){
wmmhello's avatar
wmmhello 已提交
648 649
    int32_t gNum = mndGetGroupNumByTopic(pMnode, (const char*)taosArrayGetP(pTopicList, i));
    if(gNum > MND_MAX_GROUP_PER_TOPIC){
wmmhello's avatar
wmmhello 已提交
650 651 652 653 654
      terrno = TSDB_CODE_TMQ_GROUP_OUT_OF_RANGE;
      code = terrno;
      goto _over;
    }
  }
655

H
Haojun Liao 已提交
656
  // check topic existence
wmmhello's avatar
wmmhello 已提交
657
  pTrans = mndTransCreate(pMnode, TRN_POLICY_RETRY, TRN_CONFLICT_NOTHING, pMsg, "subscribe");
658 659 660
  if (pTrans == NULL) {
    goto _over;
  }
L
Liu Jicong 已提交
661

662 663 664
  code = validateTopics(pTopicList, pMnode, pMsg->info.conn.user);
  if (code != TSDB_CODE_SUCCESS) {
    goto _over;
665 666
  }

H
Haojun Liao 已提交
667 668
  pExistedConsumer = mndAcquireConsumer(pMnode, consumerId);
  if (pExistedConsumer == NULL) {
X
Xiaoyu Wang 已提交
669 670
    mInfo("receive subscribe request from new consumer:0x%" PRIx64 " cgroup:%s, numOfTopics:%d", consumerId,
          subscribe.cgroup, (int32_t)taosArrayGetSize(pTopicList));
L
Liu Jicong 已提交
671

672
    pConsumerNew = tNewSMqConsumerObj(consumerId, cgroup);
673
    tstrncpy(pConsumerNew->clientId, subscribe.clientId, tListLen(pConsumerNew->clientId));
674

wmmhello's avatar
wmmhello 已提交
675
//  pConsumerNew->updateType = CONSUMER_UPDATE_SUB_MODIFY;   // use insert logic
H
Haojun Liao 已提交
676
    taosArrayDestroy(pConsumerNew->assignedTopics);
677 678 679
    pConsumerNew->assignedTopics = taosArrayDup(pTopicList, topicNameDup);

    // all subscribed topics should re-balance.
L
Liu Jicong 已提交
680
    taosArrayDestroy(pConsumerNew->rebNewTopics);
681
    pConsumerNew->rebNewTopics = pTopicList;
682 683
    subscribe.topicNames = NULL;

684 685
    if (mndSetConsumerCommitLogs(pMnode, pTrans, pConsumerNew) != 0) goto _over;
    if (mndTransPrepare(pMnode, pTrans) != 0) goto _over;
686 687

  } else {
H
Haojun Liao 已提交
688
    int32_t status = atomic_load_32(&pExistedConsumer->status);
L
Liu Jicong 已提交
689

X
Xiaoyu Wang 已提交
690 691 692
    mInfo("receive subscribe request from existed consumer:0x%" PRIx64
          " cgroup:%s, current status:%d(%s), subscribe topic num: %d",
          consumerId, subscribe.cgroup, status, mndConsumerStatusName(status), newTopicNum);
L
Liu Jicong 已提交
693

wmmhello's avatar
wmmhello 已提交
694
    if (status != MQ_CONSUMER_STATUS_READY) {
695
      terrno = TSDB_CODE_MND_CONSUMER_NOT_READY;
696
      goto _over;
697 698 699 700
    }

    pConsumerNew = tNewSMqConsumerObj(consumerId, cgroup);
    if (pConsumerNew == NULL) {
701
      goto _over;
702
    }
H
Haojun Liao 已提交
703

704
    // set the update type
wmmhello's avatar
wmmhello 已提交
705
    pConsumerNew->updateType = CONSUMER_UPDATE_SUB_MODIFY;
H
Haojun Liao 已提交
706
    taosArrayDestroy(pConsumerNew->assignedTopics);
707
    pConsumerNew->assignedTopics = taosArrayDup(pTopicList, topicNameDup);
708

wmmhello's avatar
wmmhello 已提交
709
    int32_t oldTopicNum = taosArrayGetSize(pExistedConsumer->currentTopics);
710 711 712 713

    int32_t i = 0, j = 0;
    while (i < oldTopicNum || j < newTopicNum) {
      if (i >= oldTopicNum) {
H
Haojun Liao 已提交
714
        char *newTopicCopy = taosStrdup(taosArrayGetP(pTopicList, j));
715 716 717 718
        taosArrayPush(pConsumerNew->rebNewTopics, &newTopicCopy);
        j++;
        continue;
      } else if (j >= newTopicNum) {
H
Haojun Liao 已提交
719
        char *oldTopicCopy = taosStrdup(taosArrayGetP(pExistedConsumer->currentTopics, i));
720 721 722 723
        taosArrayPush(pConsumerNew->rebRemovedTopics, &oldTopicCopy);
        i++;
        continue;
      } else {
H
Haojun Liao 已提交
724
        char *oldTopic = taosArrayGetP(pExistedConsumer->currentTopics, i);
725
        char *newTopic = taosArrayGetP(pTopicList, j);
726
        int   comp = strcmp(oldTopic, newTopic);
727 728 729 730 731
        if (comp == 0) {
          i++;
          j++;
          continue;
        } else if (comp < 0) {
732
          char *oldTopicCopy = taosStrdup(oldTopic);
733 734 735 736
          taosArrayPush(pConsumerNew->rebRemovedTopics, &oldTopicCopy);
          i++;
          continue;
        } else {
737
          char *newTopicCopy = taosStrdup(newTopic);
738 739 740 741 742 743 744
          taosArrayPush(pConsumerNew->rebNewTopics, &newTopicCopy);
          j++;
          continue;
        }
      }
    }

745 746
    // no topics need to be rebalanced
    if (taosArrayGetSize(pConsumerNew->rebNewTopics) == 0 && taosArrayGetSize(pConsumerNew->rebRemovedTopics) == 0) {
747
      goto _over;
748 749
    }

750 751
    if (mndSetConsumerCommitLogs(pMnode, pTrans, pConsumerNew) != 0) goto _over;
    if (mndTransPrepare(pMnode, pTrans) != 0) goto _over;
752 753
  }

S
Shengliang Guan 已提交
754
  code = TSDB_CODE_ACTION_IN_PROGRESS;
755

756
_over:
L
Liu Jicong 已提交
757 758
  mndTransDrop(pTrans);

H
Haojun Liao 已提交
759 760 761
  if (pExistedConsumer) {
    /*taosRUnLockLatch(&pExistedConsumer->lock);*/
    mndReleaseConsumer(pMnode, pExistedConsumer);
762
  }
H
Haojun Liao 已提交
763

wmmhello's avatar
wmmhello 已提交
764
  tDeleteSMqConsumerObj(pConsumerNew, true);
765

766
  // TODO: replace with destroy subscribe msg
767
  taosArrayDestroyP(subscribe.topicNames, (FDelete)taosMemoryFree);
768
  return code;
L
Liu Jicong 已提交
769 770
}

L
Liu Jicong 已提交
771 772
SSdbRaw *mndConsumerActionEncode(SMqConsumerObj *pConsumer) {
  terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
773 774

  void   *buf = NULL;
L
Liu Jicong 已提交
775
  int32_t tlen = tEncodeSMqConsumerObj(NULL, pConsumer);
L
Liu Jicong 已提交
776 777 778
  int32_t size = sizeof(int32_t) + tlen + MND_CONSUMER_RESERVE_SIZE;

  SSdbRaw *pRaw = sdbAllocRaw(SDB_CONSUMER, MND_CONSUMER_VER_NUMBER, size);
779
  if (pRaw == NULL) goto CM_ENCODE_OVER;
L
Liu Jicong 已提交
780

wafwerar's avatar
wafwerar 已提交
781
  buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
782 783
  if (buf == NULL) goto CM_ENCODE_OVER;

L
Liu Jicong 已提交
784
  void *abuf = buf;
L
Liu Jicong 已提交
785 786
  tEncodeSMqConsumerObj(&abuf, pConsumer);

L
Liu Jicong 已提交
787
  int32_t dataPos = 0;
L
Liu Jicong 已提交
788 789
  SDB_SET_INT32(pRaw, dataPos, tlen, CM_ENCODE_OVER);
  SDB_SET_BINARY(pRaw, dataPos, buf, tlen, CM_ENCODE_OVER);
L
Liu Jicong 已提交
790 791
  SDB_SET_RESERVE(pRaw, dataPos, MND_CONSUMER_RESERVE_SIZE, CM_ENCODE_OVER);
  SDB_SET_DATALEN(pRaw, dataPos, CM_ENCODE_OVER);
L
Liu Jicong 已提交
792

L
Liu Jicong 已提交
793 794
  terrno = TSDB_CODE_SUCCESS;

795
CM_ENCODE_OVER:
wafwerar's avatar
wafwerar 已提交
796
  taosMemoryFreeClear(buf);
797
  if (terrno != 0) {
798
    mError("consumer:0x%" PRIx64 " failed to encode to raw:%p since %s", pConsumer->consumerId, pRaw, terrstr());
799 800 801 802
    sdbFreeRaw(pRaw);
    return NULL;
  }

803
  mTrace("consumer:0x%" PRIx64 ", encode to raw:%p, row:%p", pConsumer->consumerId, pRaw, pConsumer);
L
Liu Jicong 已提交
804 805 806
  return pRaw;
}

L
Liu Jicong 已提交
807
SSdbRow *mndConsumerActionDecode(SSdbRaw *pRaw) {
808 809 810
  SSdbRow        *pRow = NULL;
  SMqConsumerObj *pConsumer = NULL;
  void           *buf = NULL;
811

H
Haojun Liao 已提交
812
  terrno = 0;
L
Liu Jicong 已提交
813
  int8_t sver = 0;
H
Haojun Liao 已提交
814 815 816
  if (sdbGetRawSoftVer(pRaw, &sver) != 0) {
    goto CM_DECODE_OVER;
  }
L
Liu Jicong 已提交
817 818 819

  if (sver != MND_CONSUMER_VER_NUMBER) {
    terrno = TSDB_CODE_SDB_INVALID_DATA_VER;
L
Liu Jicong 已提交
820
    goto CM_DECODE_OVER;
L
Liu Jicong 已提交
821 822
  }

823
  pRow = sdbAllocRow(sizeof(SMqConsumerObj));
H
Haojun Liao 已提交
824 825 826
  if (pRow == NULL) {
    goto CM_DECODE_OVER;
  }
827

828
  pConsumer = sdbGetRowObj(pRow);
H
Haojun Liao 已提交
829 830 831
  if (pConsumer == NULL) {
    goto CM_DECODE_OVER;
  }
L
Liu Jicong 已提交
832 833

  int32_t dataPos = 0;
L
Liu Jicong 已提交
834
  int32_t len;
L
Liu Jicong 已提交
835
  SDB_GET_INT32(pRaw, dataPos, &len, CM_DECODE_OVER);
wafwerar's avatar
wafwerar 已提交
836
  buf = taosMemoryMalloc(len);
H
Haojun Liao 已提交
837 838 839 840 841
  if (buf == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto CM_DECODE_OVER;
  }

L
Liu Jicong 已提交
842 843
  SDB_GET_BINARY(pRaw, dataPos, buf, len, CM_DECODE_OVER);
  SDB_GET_RESERVE(pRaw, dataPos, MND_CONSUMER_RESERVE_SIZE, CM_DECODE_OVER);
L
Liu Jicong 已提交
844

L
Liu Jicong 已提交
845
  if (tDecodeSMqConsumerObj(buf, pConsumer) == NULL) {
H
Haojun Liao 已提交
846
    terrno = TSDB_CODE_OUT_OF_MEMORY;  // TODO set correct error code
L
Liu Jicong 已提交
847 848
    goto CM_DECODE_OVER;
  }
L
Liu Jicong 已提交
849

H
Haojun Liao 已提交
850
  tmsgUpdateDnodeEpSet(&pConsumer->ep);
L
Liu Jicong 已提交
851

L
Liu Jicong 已提交
852
CM_DECODE_OVER:
wafwerar's avatar
wafwerar 已提交
853
  taosMemoryFreeClear(buf);
L
Liu Jicong 已提交
854
  if (terrno != TSDB_CODE_SUCCESS) {
H
Haojun Liao 已提交
855 856
    mError("consumer:0x%" PRIx64 " failed to decode from raw:%p since %s",
           pConsumer == NULL ? 0 : pConsumer->consumerId, pRaw, terrstr());
wafwerar's avatar
wafwerar 已提交
857
    taosMemoryFreeClear(pRow);
L
Liu Jicong 已提交
858
  }
L
Liu Jicong 已提交
859 860 861 862

  return pRow;
}

L
Liu Jicong 已提交
863
static int32_t mndConsumerActionInsert(SSdb *pSdb, SMqConsumerObj *pConsumer) {
wmmhello's avatar
wmmhello 已提交
864
  mInfo("consumer:0x%" PRIx64 " sub insert, cgroup:%s status:%d(%s) epoch:%d",
H
Haojun Liao 已提交
865 866
         pConsumer->consumerId, pConsumer->cgroup, pConsumer->status, mndConsumerStatusName(pConsumer->status),
         pConsumer->epoch);
wmmhello's avatar
wmmhello 已提交
867
  pConsumer->subscribeTime = taosGetTimestampMs();
L
Liu Jicong 已提交
868 869 870
  return 0;
}

L
Liu Jicong 已提交
871
static int32_t mndConsumerActionDelete(SSdb *pSdb, SMqConsumerObj *pConsumer) {
wmmhello's avatar
wmmhello 已提交
872
  mInfo("consumer:0x%" PRIx64 " perform delete action, status:(%d)%s", pConsumer->consumerId, pConsumer->status,
X
Xiaoyu Wang 已提交
873
         mndConsumerStatusName(pConsumer->status));
wmmhello's avatar
wmmhello 已提交
874
  tDeleteSMqConsumerObj(pConsumer, false);
L
Liu Jicong 已提交
875 876 877
  return 0;
}

X
Xiaoyu Wang 已提交
878
static void updateConsumerStatus(SMqConsumerObj *pConsumer) {
879 880 881
  int32_t status = pConsumer->status;

  if (taosArrayGetSize(pConsumer->rebNewTopics) == 0 && taosArrayGetSize(pConsumer->rebRemovedTopics) == 0) {
882
    if (status == MQ_CONSUMER_STATUS_REBALANCE) {
wmmhello's avatar
wmmhello 已提交
883 884 885
      pConsumer->status = MQ_CONSUMER_STATUS_READY;
    } else if (status == MQ_CONSUMER_STATUS_READY) {
      pConsumer->status = MQ_CONSUMER_STATUS_LOST;
886 887 888 889 890
    }
  }
}

// remove from new topic
X
Xiaoyu Wang 已提交
891
static void removeFromNewTopicList(SMqConsumerObj *pConsumer, const char *pTopic) {
892
  int32_t size = taosArrayGetSize(pConsumer->rebNewTopics);
893
  for (int32_t i = 0; i < size; i++) {
894 895 896 897 898
    char *p = taosArrayGetP(pConsumer->rebNewTopics, i);
    if (strcmp(pTopic, p) == 0) {
      taosArrayRemove(pConsumer->rebNewTopics, i);
      taosMemoryFree(p);

wmmhello's avatar
wmmhello 已提交
899
      mInfo("consumer:0x%" PRIx64 " remove new topic:%s in the topic list, remain newTopics:%d", pConsumer->consumerId,
X
Xiaoyu Wang 已提交
900
             pTopic, (int)taosArrayGetSize(pConsumer->rebNewTopics));
901 902 903 904 905 906
      break;
    }
  }
}

// remove from removed topic
X
Xiaoyu Wang 已提交
907
static void removeFromRemoveTopicList(SMqConsumerObj *pConsumer, const char *pTopic) {
908 909 910 911 912 913
  int32_t size = taosArrayGetSize(pConsumer->rebRemovedTopics);
  for (int32_t i = 0; i < size; i++) {
    char *p = taosArrayGetP(pConsumer->rebRemovedTopics, i);
    if (strcmp(pTopic, p) == 0) {
      taosArrayRemove(pConsumer->rebRemovedTopics, i);
      taosMemoryFree(p);
914

wmmhello's avatar
wmmhello 已提交
915
      mInfo("consumer:0x%" PRIx64 " remove topic:%s in the removed topic list, remain removedTopics:%d",
916
             pConsumer->consumerId, pTopic, (int)taosArrayGetSize(pConsumer->rebRemovedTopics));
917 918 919 920 921
      break;
    }
  }
}

922 923 924 925 926 927 928 929
static void removeFromCurrentTopicList(SMqConsumerObj *pConsumer, const char *pTopic) {
  int32_t sz = taosArrayGetSize(pConsumer->currentTopics);
  for (int32_t i = 0; i < sz; i++) {
    char *topic = taosArrayGetP(pConsumer->currentTopics, i);
    if (strcmp(pTopic, topic) == 0) {
      taosArrayRemove(pConsumer->currentTopics, i);
      taosMemoryFree(topic);

wmmhello's avatar
wmmhello 已提交
930
      mInfo("consumer:0x%" PRIx64 " remove topic:%s in the current topic list, remain currentTopics:%d",
931 932 933 934 935 936 937 938 939 940 941 942 943 944
             pConsumer->consumerId, pTopic, (int)taosArrayGetSize(pConsumer->currentTopics));
      break;
    }
  }
}

static bool existInCurrentTopicList(const SMqConsumerObj* pConsumer, const char* pTopic) {
  bool    existing = false;
  int32_t size = taosArrayGetSize(pConsumer->currentTopics);
  for (int32_t i = 0; i < size; i++) {
    char *topic = taosArrayGetP(pConsumer->currentTopics, i);

    if (strcmp(topic, pTopic) == 0) {
      existing = true;
945 946 947
      break;
    }
  }
948 949

  return existing;
950 951
}

L
Liu Jicong 已提交
952
static int32_t mndConsumerActionUpdate(SSdb *pSdb, SMqConsumerObj *pOldConsumer, SMqConsumerObj *pNewConsumer) {
wmmhello's avatar
wmmhello 已提交
953 954
  mInfo("consumer:0x%" PRIx64 " perform update action, update type:%d, subscribe-time:%" PRId64 ", createTime:%" PRId64,
         pOldConsumer->consumerId, pNewConsumer->updateType, pOldConsumer->subscribeTime, pOldConsumer->createTime);
L
Liu Jicong 已提交
955

956 957
  taosWLockLatch(&pOldConsumer->lock);

wmmhello's avatar
wmmhello 已提交
958
  if (pNewConsumer->updateType == CONSUMER_UPDATE_SUB_MODIFY) {
959 960 961
    TSWAP(pOldConsumer->rebNewTopics, pNewConsumer->rebNewTopics);
    TSWAP(pOldConsumer->rebRemovedTopics, pNewConsumer->rebRemovedTopics);
    TSWAP(pOldConsumer->assignedTopics, pNewConsumer->assignedTopics);
962

wmmhello's avatar
wmmhello 已提交
963
    pOldConsumer->subscribeTime = taosGetTimestampMs();
964
    pOldConsumer->status = MQ_CONSUMER_STATUS_REBALANCE;
wmmhello's avatar
wmmhello 已提交
965
    mInfo("consumer:0x%" PRIx64 " sub update, modify existed consumer",pOldConsumer->consumerId);
wmmhello's avatar
wmmhello 已提交
966 967 968 969 970 971 972 973 974 975 976 977
//  } else if (pNewConsumer->updateType == CONSUMER_UPDATE_TIMER_LOST) {
//    int32_t sz = taosArrayGetSize(pOldConsumer->currentTopics);
//    for (int32_t i = 0; i < sz; i++) {
//      char *topic = taosStrdup(taosArrayGetP(pOldConsumer->currentTopics, i));
//      taosArrayPush(pOldConsumer->rebRemovedTopics, &topic);
//    }
//
//    int32_t prevStatus = pOldConsumer->status;
//    pOldConsumer->status = MQ_CONSUMER_STATUS_LOST;
//    mInfo("consumer:0x%" PRIx64 " timer update, timer lost. state %s -> %s, reb-time:%" PRId64 ", reb-removed-topics:%d",
//           pOldConsumer->consumerId, mndConsumerStatusName(prevStatus), mndConsumerStatusName(pOldConsumer->status),
//           pOldConsumer->rebalanceTime, (int)taosArrayGetSize(pOldConsumer->rebRemovedTopics));
wmmhello's avatar
wmmhello 已提交
978
  } else if (pNewConsumer->updateType == CONSUMER_UPDATE_RECOVER) {
L
Liu Jicong 已提交
979 980
    int32_t sz = taosArrayGetSize(pOldConsumer->assignedTopics);
    for (int32_t i = 0; i < sz; i++) {
981
      char *topic = taosStrdup(taosArrayGetP(pOldConsumer->assignedTopics, i));
L
Liu Jicong 已提交
982 983 984
      taosArrayPush(pOldConsumer->rebNewTopics, &topic);
    }

985
    pOldConsumer->status = MQ_CONSUMER_STATUS_REBALANCE;
wmmhello's avatar
wmmhello 已提交
986 987
    mInfo("consumer:0x%" PRIx64 " timer update, timer recover",pOldConsumer->consumerId);
  } else if (pNewConsumer->updateType == CONSUMER_UPDATE_REB_MODIFY_NOTOPIC) {
988
    atomic_add_fetch_32(&pOldConsumer->epoch, 1);
L
Liu Jicong 已提交
989

wmmhello's avatar
wmmhello 已提交
990 991 992
    pOldConsumer->rebalanceTime = taosGetTimestampMs();
    mInfo("consumer:0x%" PRIx64 " reb update, only rebalance time", pOldConsumer->consumerId);
  } else if (pNewConsumer->updateType == CONSUMER_UPDATE_REB_MODIFY_TOPIC) {
993
    char *pNewTopic = taosStrdup(taosArrayGetP(pNewConsumer->rebNewTopics, 0));
994

995
    // check if exist in current topic
996
    removeFromNewTopicList(pOldConsumer, pNewTopic);
997 998

    // add to current topic
999 1000
    bool existing = existInCurrentTopicList(pOldConsumer, pNewTopic);
    if (existing) {
wmmhello's avatar
wmmhello 已提交
1001
      mError("consumer:0x%" PRIx64 "new topic:%s should not in currentTopics", pOldConsumer->consumerId, pNewTopic);
1002 1003
      taosMemoryFree(pNewTopic);
    } else {  // added into current topic list
1004
      taosArrayPush(pOldConsumer->currentTopics, &pNewTopic);
L
Liu Jicong 已提交
1005 1006
      taosArraySort(pOldConsumer->currentTopics, taosArrayCompareString);
    }
H
Haojun Liao 已提交
1007

1008
    // set status
H
Haojun Liao 已提交
1009
    int32_t status = pOldConsumer->status;
1010
    updateConsumerStatus(pOldConsumer);
L
Liu Jicong 已提交
1011

H
Haojun Liao 已提交
1012
    // the re-balance is triggered when the new consumer is launched.
wmmhello's avatar
wmmhello 已提交
1013
    pOldConsumer->rebalanceTime = taosGetTimestampMs();
L
Liu Jicong 已提交
1014

1015
    atomic_add_fetch_32(&pOldConsumer->epoch, 1);
wmmhello's avatar
wmmhello 已提交
1016
    mInfo("consumer:0x%" PRIx64 " reb update add, state (%d)%s -> (%d)%s, new epoch:%d, reb-time:%" PRId64
1017
           ", current topics:%d, newTopics:%d, removeTopics:%d",
H
Haojun Liao 已提交
1018
           pOldConsumer->consumerId, status, mndConsumerStatusName(status), pOldConsumer->status,
1019 1020 1021 1022
           mndConsumerStatusName(pOldConsumer->status), pOldConsumer->epoch, pOldConsumer->rebalanceTime,
           (int)taosArrayGetSize(pOldConsumer->currentTopics), (int)taosArrayGetSize(pOldConsumer->rebNewTopics),
           (int)taosArrayGetSize(pOldConsumer->rebRemovedTopics));

wmmhello's avatar
wmmhello 已提交
1023
  } else if (pNewConsumer->updateType == CONSUMER_UPDATE_REB_MODIFY_REMOVE) {
1024 1025 1026
    char *removedTopic = taosArrayGetP(pNewConsumer->rebRemovedTopics, 0);

    // remove from removed topic
1027
    removeFromRemoveTopicList(pOldConsumer, removedTopic);
1028 1029

    // remove from current topic
1030
    removeFromCurrentTopicList(pOldConsumer, removedTopic);
1031 1032

    // set status
H
Haojun Liao 已提交
1033
    int32_t status = pOldConsumer->status;
1034
    updateConsumerStatus(pOldConsumer);
L
Liu Jicong 已提交
1035

wmmhello's avatar
wmmhello 已提交
1036
    pOldConsumer->rebalanceTime = taosGetTimestampMs();
1037
    atomic_add_fetch_32(&pOldConsumer->epoch, 1);
H
Haojun Liao 已提交
1038

wmmhello's avatar
wmmhello 已提交
1039
    mInfo("consumer:0x%" PRIx64 " reb update remove, state (%d)%s -> (%d)%s, new epoch:%d, reb-time:%" PRId64
X
Xiaoyu Wang 已提交
1040
           ", current topics:%d, newTopics:%d, removeTopics:%d",
H
Haojun Liao 已提交
1041
           pOldConsumer->consumerId, status, mndConsumerStatusName(status), pOldConsumer->status,
1042 1043 1044
           mndConsumerStatusName(pOldConsumer->status), pOldConsumer->epoch, pOldConsumer->rebalanceTime,
           (int)taosArrayGetSize(pOldConsumer->currentTopics), (int)taosArrayGetSize(pOldConsumer->rebNewTopics),
           (int)taosArrayGetSize(pOldConsumer->rebRemovedTopics));
1045 1046 1047
  }

  taosWUnLockLatch(&pOldConsumer->lock);
L
Liu Jicong 已提交
1048 1049 1050
  return 0;
}

L
Liu Jicong 已提交
1051
SMqConsumerObj *mndAcquireConsumer(SMnode *pMnode, int64_t consumerId) {
L
Liu Jicong 已提交
1052 1053
  SSdb           *pSdb = pMnode->pSdb;
  SMqConsumerObj *pConsumer = sdbAcquire(pSdb, SDB_CONSUMER, &consumerId);
L
Liu Jicong 已提交
1054
  if (pConsumer == NULL) {
1055
    terrno = TSDB_CODE_MND_CONSUMER_NOT_EXIST;
L
Liu Jicong 已提交
1056 1057 1058 1059
  }
  return pConsumer;
}

L
Liu Jicong 已提交
1060
void mndReleaseConsumer(SMnode *pMnode, SMqConsumerObj *pConsumer) {
L
Liu Jicong 已提交
1061 1062 1063
  SSdb *pSdb = pMnode->pSdb;
  sdbRelease(pSdb, pConsumer);
}
L
Liu Jicong 已提交
1064

S
Shengliang Guan 已提交
1065 1066
static int32_t mndRetrieveConsumer(SRpcMsg *pReq, SShowObj *pShow, SSDataBlock *pBlock, int32_t rowsCapacity) {
  SMnode         *pMnode = pReq->info.node;
L
Liu Jicong 已提交
1067 1068 1069 1070 1071 1072
  SSdb           *pSdb = pMnode->pSdb;
  int32_t         numOfRows = 0;
  SMqConsumerObj *pConsumer = NULL;

  while (numOfRows < rowsCapacity) {
    pShow->pIter = sdbFetch(pSdb, SDB_CONSUMER, pShow->pIter, (void **)&pConsumer);
1073 1074 1075 1076
    if (pShow->pIter == NULL) {
      break;
    }

L
Liu Jicong 已提交
1077
    if (taosArrayGetSize(pConsumer->assignedTopics) == 0) {
X
Xiaoyu Wang 已提交
1078
      mDebug("showing consumer:0x%" PRIx64 " no assigned topic, skip", pConsumer->consumerId);
L
Liu Jicong 已提交
1079 1080 1081
      sdbRelease(pSdb, pConsumer);
      continue;
    }
L
Liu Jicong 已提交
1082 1083

    taosRLockLatch(&pConsumer->lock);
X
Xiaoyu Wang 已提交
1084
    mDebug("showing consumer:0x%" PRIx64, pConsumer->consumerId);
L
Liu Jicong 已提交
1085

L
Liu Jicong 已提交
1086 1087 1088 1089 1090 1091 1092
    int32_t topicSz = taosArrayGetSize(pConsumer->assignedTopics);
    bool    hasTopic = true;
    if (topicSz == 0) {
      hasTopic = false;
      topicSz = 1;
    }

L
Liu Jicong 已提交
1093 1094 1095 1096
    if (numOfRows + topicSz > rowsCapacity) {
      blockDataEnsureCapacity(pBlock, numOfRows + topicSz);
    }

L
Liu Jicong 已提交
1097 1098 1099 1100 1101
    for (int32_t i = 0; i < topicSz; i++) {
      SColumnInfoData *pColInfo;
      int32_t          cols = 0;

      // consumer id
wmmhello's avatar
wmmhello 已提交
1102 1103 1104 1105
      char        consumerIdHex[32] = {0};
      sprintf(varDataVal(consumerIdHex), "0x%"PRIx64, pConsumer->consumerId);
      varDataSetLen(consumerIdHex, strlen(varDataVal(consumerIdHex)));

L
Liu Jicong 已提交
1106
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
wmmhello's avatar
wmmhello 已提交
1107
      colDataSetVal(pColInfo, numOfRows, (const char *)consumerIdHex, false);
L
Liu Jicong 已提交
1108

L
Liu Jicong 已提交
1109 1110
      // consumer group
      char cgroup[TSDB_CGROUP_LEN + VARSTR_HEADER_SIZE] = {0};
1111 1112
      STR_TO_VARSTR(cgroup, pConsumer->cgroup);

L
Liu Jicong 已提交
1113
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
1114
      colDataSetVal(pColInfo, numOfRows, (const char *)cgroup, false);
L
Liu Jicong 已提交
1115

1116
      // client id
L
Liu Jicong 已提交
1117
      char clientId[256 + VARSTR_HEADER_SIZE] = {0};
1118 1119
      STR_TO_VARSTR(clientId, pConsumer->clientId);

L
Liu Jicong 已提交
1120
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
1121
      colDataSetVal(pColInfo, numOfRows, (const char *)clientId, false);
L
Liu Jicong 已提交
1122 1123

      // status
X
Xiaoyu Wang 已提交
1124 1125
      char        status[20 + VARSTR_HEADER_SIZE] = {0};
      const char *pStatusName = mndConsumerStatusName(pConsumer->status);
1126 1127
      STR_TO_VARSTR(status, pStatusName);

L
Liu Jicong 已提交
1128
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
1129
      colDataSetVal(pColInfo, numOfRows, (const char *)status, false);
L
Liu Jicong 已提交
1130 1131 1132 1133 1134 1135

      // one subscribed topic
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
      if (hasTopic) {
        char        topic[TSDB_TOPIC_FNAME_LEN + VARSTR_HEADER_SIZE] = {0};
        const char *topicName = mndTopicGetShowName(taosArrayGetP(pConsumer->assignedTopics, i));
H
Haojun Liao 已提交
1136
        STR_TO_VARSTR(topic, topicName);
1137
        colDataSetVal(pColInfo, numOfRows, (const char *)topic, false);
L
Liu Jicong 已提交
1138
      } else {
1139
        colDataSetVal(pColInfo, numOfRows, NULL, true);
L
Liu Jicong 已提交
1140 1141 1142
      }

      // end point
L
Liu Jicong 已提交
1143
      /*pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);*/
1144
      /*colDataSetVal(pColInfo, numOfRows, (const char *)&pConsumer->ep, true);*/
L
Liu Jicong 已提交
1145 1146 1147

      // up time
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
wmmhello's avatar
wmmhello 已提交
1148
      colDataSetVal(pColInfo, numOfRows, (const char *)&pConsumer->createTime, false);
L
Liu Jicong 已提交
1149 1150 1151

      // subscribe time
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
1152
      colDataSetVal(pColInfo, numOfRows, (const char *)&pConsumer->subscribeTime, false);
L
Liu Jicong 已提交
1153 1154 1155

      // rebalance time
      pColInfo = taosArrayGet(pBlock->pDataBlock, cols++);
1156
      colDataSetVal(pColInfo, numOfRows, (const char *)&pConsumer->rebalanceTime, pConsumer->rebalanceTime == 0);
L
Liu Jicong 已提交
1157 1158 1159

      numOfRows++;
    }
1160

L
Liu Jicong 已提交
1161 1162
    taosRUnLockLatch(&pConsumer->lock);
    sdbRelease(pSdb, pConsumer);
1163 1164

    pBlock->info.rows = numOfRows;
L
Liu Jicong 已提交
1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
  }

  pShow->numOfRows += numOfRows;
  return numOfRows;
}

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

static const char *mndConsumerStatusName(int status) {
  switch (status) {
wmmhello's avatar
wmmhello 已提交
1178
    case MQ_CONSUMER_STATUS_READY:
L
Liu Jicong 已提交
1179
      return "ready";
wmmhello's avatar
wmmhello 已提交
1180
    case MQ_CONSUMER_STATUS_LOST:
L
Liu Jicong 已提交
1181
      return "lost";
1182
    case MQ_CONSUMER_STATUS_REBALANCE:
L
Liu Jicong 已提交
1183 1184 1185 1186 1187
      return "rebalancing";
    default:
      return "unknown";
  }
}