clientTmq.c 59.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

L
Liu Jicong 已提交
16
#include "cJSON.h"
17 18 19
#include "clientInt.h"
#include "clientLog.h"
#include "parser.h"
H
Haojun Liao 已提交
20
#include "tdatablock.h"
21 22 23
#include "tdef.h"
#include "tglobal.h"
#include "tmsgtype.h"
X
Xiaoyu Wang 已提交
24
#include "tqueue.h"
25
#include "tref.h"
L
Liu Jicong 已提交
26 27
#include "ttimer.h"

L
Liu Jicong 已提交
28 29 30 31 32 33 34
#if 0
#undef tsem_post
#define tsem_post(x)                                         \
  tscInfo("call sem post at %s %d", __FUNCTION__, __LINE__); \
  sem_post(x)
#endif

L
Liu Jicong 已提交
35 36 37
int32_t tmqAskEp(tmq_t* tmq, bool async);

typedef struct {
38 39 40
  int8_t  inited;
  tmr_h   timer;
  int32_t rsetId;
L
Liu Jicong 已提交
41 42 43
} SMqMgmt;

static SMqMgmt tmqMgmt = {0};
44

L
Liu Jicong 已提交
45 46 47 48 49 50
typedef struct {
  int8_t  tmqRspType;
  int32_t epoch;
} SMqRspWrapper;

typedef struct {
L
Liu Jicong 已提交
51 52 53
  int8_t      tmqRspType;
  int32_t     epoch;
  SMqAskEpRsp msg;
L
Liu Jicong 已提交
54 55
} SMqAskEpRspWrapper;

L
Liu Jicong 已提交
56
struct tmq_list_t {
L
Liu Jicong 已提交
57
  SArray container;
L
Liu Jicong 已提交
58
};
L
Liu Jicong 已提交
59

L
Liu Jicong 已提交
60
struct tmq_conf_t {
61 62 63 64 65
  char    clientId[256];
  char    groupId[TSDB_CGROUP_LEN];
  int8_t  autoCommit;
  int8_t  resetOffset;
  int8_t  withTbName;
L
Liu Jicong 已提交
66 67
  int8_t  snapEnable;
  int32_t snapBatchSize;
68 69 70

  bool hbBgEnable;

71 72 73 74 75
  uint16_t       port;
  int32_t        autoCommitInterval;
  char*          ip;
  char*          user;
  char*          pass;
76
  tmq_commit_cb* commitCb;
L
Liu Jicong 已提交
77
  void*          commitCbUserParam;
L
Liu Jicong 已提交
78 79 80
};

struct tmq_t {
81
  int64_t refId;
L
Liu Jicong 已提交
82
  // conf
83 84 85 86 87 88 89 90 91 92 93
  char    groupId[TSDB_CGROUP_LEN];
  char    clientId[256];
  int8_t  withTbName;
  int8_t  useSnapshot;
  int8_t  autoCommit;
  int32_t autoCommitInterval;
  int32_t resetOffsetCfg;
  int64_t consumerId;

  bool hbBgEnable;

L
Liu Jicong 已提交
94 95
  tmq_commit_cb* commitCb;
  void*          commitCbUserParam;
L
Liu Jicong 已提交
96 97 98 99

  // status
  int8_t  status;
  int32_t epoch;
L
Liu Jicong 已提交
100 101
#if 0
  int8_t  epStatus;
L
Liu Jicong 已提交
102
  int32_t epSkipCnt;
L
Liu Jicong 已提交
103
#endif
L
Liu Jicong 已提交
104 105
  int64_t pollCnt;

L
Liu Jicong 已提交
106
  // timer
107 108
  tmr_h hbLiveTimer;
  tmr_h epTimer;
L
Liu Jicong 已提交
109 110 111
  tmr_h reportTimer;
  tmr_h commitTimer;

L
Liu Jicong 已提交
112 113 114 115
  // connection
  STscObj* pTscObj;

  // container
L
Liu Jicong 已提交
116
  SArray*     clientTopics;  // SArray<SMqClientTopic>
L
Liu Jicong 已提交
117
  STaosQueue* mqueue;        // queue of rsp
L
Liu Jicong 已提交
118
  STaosQall*  qall;
L
Liu Jicong 已提交
119 120 121 122
  STaosQueue* delayedTask;  // delayed task queue for heartbeat and auto commit

  // ctl
  tsem_t rspSem;
L
Liu Jicong 已提交
123 124
};

X
Xiaoyu Wang 已提交
125 126 127 128 129 130 131 132
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
133
  TMQ_CONSUMER_STATUS__NO_TOPIC,
L
Liu Jicong 已提交
134
  TMQ_CONSUMER_STATUS__RECOVER,
L
Liu Jicong 已提交
135 136
};

L
Liu Jicong 已提交
137
enum {
138
  TMQ_DELAYED_TASK__ASK_EP = 1,
L
Liu Jicong 已提交
139 140 141 142
  TMQ_DELAYED_TASK__REPORT,
  TMQ_DELAYED_TASK__COMMIT,
};

L
Liu Jicong 已提交
143
typedef struct {
144 145 146
  // statistics
  int64_t pollCnt;
  // offset
L
Liu Jicong 已提交
147 148
  STqOffsetVal committedOffset;
  STqOffsetVal currentOffset;
L
Liu Jicong 已提交
149
  // connection info
150
  int32_t vgId;
X
Xiaoyu Wang 已提交
151
  int32_t vgStatus;
L
Liu Jicong 已提交
152
  int32_t vgSkipCnt;
153 154 155
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
156
typedef struct {
157
  // subscribe info
158 159
  char topicName[TSDB_TOPIC_FNAME_LEN];
  char db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
160 161 162

  SArray* vgs;  // SArray<SMqClientVg>

L
Liu Jicong 已提交
163
  SSchemaWrapper schema;
164 165
} SMqClientTopic;

L
Liu Jicong 已提交
166 167 168 169 170
typedef struct {
  int8_t          tmqRspType;
  int32_t         epoch;
  SMqClientVg*    vgHandle;
  SMqClientTopic* topicHandle;
L
Liu Jicong 已提交
171
  union {
L
Liu Jicong 已提交
172 173
    SMqDataRsp dataRsp;
    SMqMetaRsp metaRsp;
L
Liu Jicong 已提交
174
    STaosxRsp  taosxRsp;
L
Liu Jicong 已提交
175
  };
L
Liu Jicong 已提交
176 177
} SMqPollRspWrapper;

L
Liu Jicong 已提交
178
typedef struct {
179 180
  int64_t refId;
  int32_t epoch;
L
Liu Jicong 已提交
181 182
  tsem_t  rspSem;
  int32_t rspErr;
L
Liu Jicong 已提交
183
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
184

L
Liu Jicong 已提交
185
typedef struct {
186 187
  int64_t refId;
  int32_t epoch;
L
Liu Jicong 已提交
188
  int32_t code;
L
Liu Jicong 已提交
189
  int32_t async;
X
Xiaoyu Wang 已提交
190
  tsem_t  rspSem;
191 192
} SMqAskEpCbParam;

L
Liu Jicong 已提交
193
typedef struct {
194 195
  int64_t         refId;
  int32_t         epoch;
L
Liu Jicong 已提交
196
  SMqClientVg*    pVg;
L
Liu Jicong 已提交
197
  SMqClientTopic* pTopic;
L
Liu Jicong 已提交
198
  int32_t         vgId;
L
Liu Jicong 已提交
199
  tsem_t          rspSem;
X
Xiaoyu Wang 已提交
200
} SMqPollCbParam;
201

202
typedef struct {
203 204
  int64_t        refId;
  int32_t        epoch;
L
Liu Jicong 已提交
205 206
  int8_t         automatic;
  int8_t         async;
L
Liu Jicong 已提交
207 208
  int32_t        waitingRspNum;
  int32_t        totalRspNum;
L
Liu Jicong 已提交
209
  int32_t        rspErr;
210
  tmq_commit_cb* userCb;
L
Liu Jicong 已提交
211 212 213 214
  /*SArray*        successfulOffsets;*/
  /*SArray*        failedOffsets;*/
  void*  userParam;
  tsem_t rspSem;
215 216 217 218 219
} SMqCommitCbParamSet;

typedef struct {
  SMqCommitCbParamSet* params;
  STqOffset*           pOffset;
L
Liu Jicong 已提交
220 221
  /*char                 topicName[TSDB_TOPIC_FNAME_LEN];*/
  /*int32_t              vgId;*/
222
} SMqCommitCbParam;
223

224
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
225
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
226
  conf->withTbName = false;
L
Liu Jicong 已提交
227
  conf->autoCommit = true;
L
Liu Jicong 已提交
228
  conf->autoCommitInterval = 5000;
X
Xiaoyu Wang 已提交
229
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
230
  conf->hbBgEnable = true;
231 232 233
  return conf;
}

L
Liu Jicong 已提交
234
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
235 236 237 238 239 240
  if (conf) {
    if (conf->ip) taosMemoryFree(conf->ip);
    if (conf->user) taosMemoryFree(conf->user);
    if (conf->pass) taosMemoryFree(conf->pass);
    taosMemoryFree(conf);
  }
L
Liu Jicong 已提交
241 242 243
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
244
  if (strcmp(key, "group.id") == 0) {
L
Liu Jicong 已提交
245
    tstrncpy(conf->groupId, value, TSDB_CGROUP_LEN);
L
Liu Jicong 已提交
246
    return TMQ_CONF_OK;
247
  }
L
Liu Jicong 已提交
248

249
  if (strcmp(key, "client.id") == 0) {
L
Liu Jicong 已提交
250
    tstrncpy(conf->clientId, value, 256);
L
Liu Jicong 已提交
251 252
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
253

L
Liu Jicong 已提交
254 255
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
256
      conf->autoCommit = true;
L
Liu Jicong 已提交
257 258
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
259
      conf->autoCommit = false;
L
Liu Jicong 已提交
260 261 262 263
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
264
  }
L
Liu Jicong 已提交
265

L
Liu Jicong 已提交
266 267 268 269 270
  if (strcmp(key, "auto.commit.interval.ms") == 0) {
    conf->autoCommitInterval = atoi(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284
  if (strcmp(key, "auto.offset.reset") == 0) {
    if (strcmp(value, "none") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__NONE;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "earliest") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
      return TMQ_CONF_OK;
    } else if (strcmp(value, "latest") == 0) {
      conf->resetOffset = TMQ_CONF__RESET_OFFSET__LATEST;
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
  }
L
Liu Jicong 已提交
285

286 287
  if (strcmp(key, "msg.with.table.name") == 0) {
    if (strcmp(value, "true") == 0) {
288
      conf->withTbName = true;
L
Liu Jicong 已提交
289
      return TMQ_CONF_OK;
290
    } else if (strcmp(value, "false") == 0) {
291
      conf->withTbName = false;
L
Liu Jicong 已提交
292
      return TMQ_CONF_OK;
293 294 295 296 297
    } else {
      return TMQ_CONF_INVALID;
    }
  }

L
Liu Jicong 已提交
298
  if (strcmp(key, "experimental.snapshot.enable") == 0) {
L
Liu Jicong 已提交
299
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
300
      conf->snapEnable = true;
301 302
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
303
      conf->snapEnable = false;
304 305 306 307 308 309
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
  }

L
Liu Jicong 已提交
310 311 312 313 314
  if (strcmp(key, "experimental.snapshot.batch.size") == 0) {
    conf->snapBatchSize = atoi(value);
    return TMQ_CONF_OK;
  }

315 316 317
  if (strcmp(key, "enable.heartbeat.background") == 0) {
    if (strcmp(value, "true") == 0) {
      conf->hbBgEnable = true;
L
Liu Jicong 已提交
318 319
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
320
      conf->hbBgEnable = false;
L
Liu Jicong 已提交
321 322 323 324
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
325
    return TMQ_CONF_OK;
L
Liu Jicong 已提交
326 327
  }

L
Liu Jicong 已提交
328
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
329 330 331
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
332
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
333 334 335
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
336
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
337 338 339
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
340
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
341 342 343
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
344
  if (strcmp(key, "td.connect.db") == 0) {
345
    /*conf->db = strdup(value);*/
L
Liu Jicong 已提交
346 347 348
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
349
  return TMQ_CONF_UNKNOWN;
350 351 352
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
353 354
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
355 356
}

L
Liu Jicong 已提交
357 358
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
359 360 361 362 363
  if (src == NULL || src[0] == 0) return -1;
  char* topic = strdup(src);
  if (topic[0] != '`') {
    strtolower(topic, src);
  }
L
fix  
Liu Jicong 已提交
364
  if (taosArrayPush(container, &topic) == NULL) return -1;
365 366 367
  return 0;
}

L
Liu Jicong 已提交
368
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
369
  SArray* container = &list->container;
L
Liu Jicong 已提交
370
  taosArrayDestroyP(container, taosMemoryFree);
L
Liu Jicong 已提交
371 372
}

L
Liu Jicong 已提交
373 374 375 376 377 378 379 380 381 382
int32_t tmq_list_get_size(const tmq_list_t* list) {
  const SArray* container = &list->container;
  return taosArrayGetSize(container);
}

char** tmq_list_to_c_array(const tmq_list_t* list) {
  const SArray* container = &list->container;
  return container->pData;
}

L
Liu Jicong 已提交
383 384 385 386
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
int32_t tmqCommitDone(SMqCommitCbParamSet* pParamSet) {
  tmq_t* tmq = taosAcquireRef(tmqMgmt.rsetId, pParamSet->refId);
  if (tmq == NULL) {
    if (!pParamSet->async) {
      tsem_destroy(&pParamSet->rspSem);
    }
    taosMemoryFree(pParamSet);
    terrno = TSDB_CODE_TMQ_CONSUMER_CLOSED;
    return -1;
  }

  // if no more waiting rsp
  if (pParamSet->async) {
    // call async cb func
    if (pParamSet->automatic && tmq->commitCb) {
      tmq->commitCb(tmq, pParamSet->rspErr, tmq->commitCbUserParam);
    } else if (!pParamSet->automatic && pParamSet->userCb) {
      // sem post
      pParamSet->userCb(tmq, pParamSet->rspErr, pParamSet->userParam);
    }
    taosMemoryFree(pParamSet);
  } else {
    tsem_post(&pParamSet->rspSem);
  }

#if 0
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
#endif
  return 0;
}

L
Liu Jicong 已提交
419 420
static void tmqCommitRspCountDown(SMqCommitCbParamSet* pParamSet) {
  int32_t waitingRspNum = atomic_sub_fetch_32(&pParamSet->waitingRspNum, 1);
421
  ASSERT(waitingRspNum >= 0);
L
Liu Jicong 已提交
422 423 424 425 426
  if (waitingRspNum == 0) {
    tmqCommitDone(pParamSet);
  }
}

427 428
int32_t tmqCommitCb(void* param, SDataBuf* pBuf, int32_t code) {
  SMqCommitCbParam*    pParam = (SMqCommitCbParam*)param;
429 430
  SMqCommitCbParamSet* pParamSet = (SMqCommitCbParamSet*)pParam->params;
  // push into array
L
Liu Jicong 已提交
431
#if 0
432 433 434 435 436
  if (code == 0) {
    taosArrayPush(pParamSet->failedOffsets, &pParam->pOffset);
  } else {
    taosArrayPush(pParamSet->successfulOffsets, &pParam->pOffset);
  }
L
Liu Jicong 已提交
437
#endif
L
Liu Jicong 已提交
438

L
Liu Jicong 已提交
439
  taosMemoryFree(pParam->pOffset);
L
Liu Jicong 已提交
440
  taosMemoryFree(pBuf->pData);
L
Liu Jicong 已提交
441

S
Shengliang Guan 已提交
442
  /*tscDebug("receive offset commit cb of %s on vgId:%d, offset is %" PRId64, pParam->pOffset->subKey, pParam->->vgId,
L
Liu Jicong 已提交
443 444
   * pOffset->version);*/

L
Liu Jicong 已提交
445
  tmqCommitRspCountDown(pParamSet);
446 447 448 449

  return 0;
}

L
Liu Jicong 已提交
450 451 452 453 454 455
static int32_t tmqSendCommitReq(tmq_t* tmq, SMqClientVg* pVg, SMqClientTopic* pTopic, SMqCommitCbParamSet* pParamSet) {
  STqOffset* pOffset = taosMemoryCalloc(1, sizeof(STqOffset));
  if (pOffset == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
L
Liu Jicong 已提交
456
  pOffset->val = pVg->currentOffset;
457

L
Liu Jicong 已提交
458 459 460 461
  int32_t groupLen = strlen(tmq->groupId);
  memcpy(pOffset->subKey, tmq->groupId, groupLen);
  pOffset->subKey[groupLen] = TMQ_SEPARATOR;
  strcpy(pOffset->subKey + groupLen + 1, pTopic->topicName);
L
Liu Jicong 已提交
462

L
Liu Jicong 已提交
463 464 465 466 467 468 469
  int32_t len;
  int32_t code;
  tEncodeSize(tEncodeSTqOffset, pOffset, len, code);
  if (code < 0) {
    return -1;
  }
  void* buf = taosMemoryCalloc(1, sizeof(SMsgHead) + len);
L
Liu Jicong 已提交
470 471 472 473
  if (buf == NULL) {
    taosMemoryFree(pOffset);
    return -1;
  }
L
Liu Jicong 已提交
474
  ((SMsgHead*)buf)->vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
475

L
Liu Jicong 已提交
476 477 478 479 480
  void* abuf = POINTER_SHIFT(buf, sizeof(SMsgHead));

  SEncoder encoder;
  tEncoderInit(&encoder, abuf, len);
  tEncodeSTqOffset(&encoder, pOffset);
L
Liu Jicong 已提交
481
  tEncoderClear(&encoder);
L
Liu Jicong 已提交
482 483

  // build param
484
  SMqCommitCbParam* pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
485
  if (pParam == NULL) {
L
Liu Jicong 已提交
486
    taosMemoryFree(pOffset);
L
Liu Jicong 已提交
487 488 489
    taosMemoryFree(buf);
    return -1;
  }
L
Liu Jicong 已提交
490 491 492 493 494 495
  pParam->params = pParamSet;
  pParam->pOffset = pOffset;

  // build send info
  SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
  if (pMsgSendInfo == NULL) {
L
Liu Jicong 已提交
496
    taosMemoryFree(pOffset);
L
Liu Jicong 已提交
497 498
    taosMemoryFree(buf);
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
499 500 501 502 503 504 505 506
    return -1;
  }
  pMsgSendInfo->msgInfo = (SDataBuf){
      .pData = buf,
      .len = sizeof(SMsgHead) + len,
      .handle = NULL,
  };

S
Shengliang Guan 已提交
507 508
  tscDebug("consumer:%" PRId64 ", commit offset of %s on vgId:%d, offset is %" PRId64, tmq->consumerId, pOffset->subKey,
           pVg->vgId, pOffset->val.version);
L
Liu Jicong 已提交
509 510

  // TODO: put into cb
L
Liu Jicong 已提交
511
  pVg->committedOffset = pVg->currentOffset;
L
Liu Jicong 已提交
512 513 514 515

  pMsgSendInfo->requestId = generateRequestId();
  pMsgSendInfo->requestObjRefId = 0;
  pMsgSendInfo->param = pParam;
L
Liu Jicong 已提交
516
  pMsgSendInfo->paramFreeFp = taosMemoryFree;
517
  pMsgSendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
518
  pMsgSendInfo->msgType = TDMT_VND_TMQ_COMMIT_OFFSET;
L
Liu Jicong 已提交
519 520
  // send msg

L
Liu Jicong 已提交
521 522 523
  atomic_add_fetch_32(&pParamSet->waitingRspNum, 1);
  atomic_add_fetch_32(&pParamSet->totalRspNum, 1);

L
Liu Jicong 已提交
524 525 526 527 528 529 530 531
  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, pMsgSendInfo);
  return 0;
}

int32_t tmqCommitMsgImpl(tmq_t* tmq, const TAOS_RES* msg, int8_t async, tmq_commit_cb* userCb, void* userParam) {
  char*   topic;
  int32_t vgId;
532
  ASSERT(msg != NULL);
L
Liu Jicong 已提交
533 534 535 536 537 538 539 540
  if (TD_RES_TMQ(msg)) {
    SMqRspObj* pRspObj = (SMqRspObj*)msg;
    topic = pRspObj->topic;
    vgId = pRspObj->vgId;
  } else if (TD_RES_TMQ_META(msg)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)msg;
    topic = pMetaRspObj->topic;
    vgId = pMetaRspObj->vgId;
L
Liu Jicong 已提交
541
  } else if (TD_RES_TMQ_METADATA(msg)) {
542 543 544
    SMqTaosxRspObj* pRspObj = (SMqTaosxRspObj*)msg;
    topic = pRspObj->topic;
    vgId = pRspObj->vgId;
L
Liu Jicong 已提交
545 546 547 548 549 550 551 552 553
  } else {
    return TSDB_CODE_TMQ_INVALID_MSG;
  }

  SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
  if (pParamSet == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
554 555
  pParamSet->refId = tmq->refId;
  pParamSet->epoch = tmq->epoch;
L
Liu Jicong 已提交
556 557 558 559 560 561
  pParamSet->automatic = 0;
  pParamSet->async = async;
  pParamSet->userCb = userCb;
  pParamSet->userParam = userParam;
  tsem_init(&pParamSet->rspSem, 0, 0);

L
Liu Jicong 已提交
562 563
  int32_t code = -1;

L
Liu Jicong 已提交
564 565 566 567 568 569 570
  for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    if (strcmp(pTopic->topicName, topic) != 0) continue;
    for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
      if (pVg->vgId != vgId) continue;

L
Liu Jicong 已提交
571
      if (pVg->currentOffset.type > 0 && !tOffsetEqual(&pVg->currentOffset, &pVg->committedOffset)) {
L
Liu Jicong 已提交
572
        if (tmqSendCommitReq(tmq, pVg, pTopic, pParamSet) < 0) {
L
Liu Jicong 已提交
573 574
          tsem_destroy(&pParamSet->rspSem);
          taosMemoryFree(pParamSet);
L
Liu Jicong 已提交
575
          goto FAIL;
L
Liu Jicong 已提交
576
        }
L
Liu Jicong 已提交
577
        goto HANDLE_RSP;
L
Liu Jicong 已提交
578 579
      }
    }
L
Liu Jicong 已提交
580
  }
L
Liu Jicong 已提交
581

L
Liu Jicong 已提交
582 583 584 585
HANDLE_RSP:
  if (pParamSet->totalRspNum == 0) {
    tsem_destroy(&pParamSet->rspSem);
    taosMemoryFree(pParamSet);
L
Liu Jicong 已提交
586 587 588
    return 0;
  }

L
Liu Jicong 已提交
589 590 591 592
  if (!async) {
    tsem_wait(&pParamSet->rspSem);
    code = pParamSet->rspErr;
    tsem_destroy(&pParamSet->rspSem);
L
Liu Jicong 已提交
593
    taosMemoryFree(pParamSet);
L
Liu Jicong 已提交
594 595 596 597 598 599 600 601 602 603 604 605
    return code;
  } else {
    code = 0;
  }

FAIL:
  if (code != 0 && async) {
    userCb(tmq, code, userParam);
  }
  return 0;
}

L
Liu Jicong 已提交
606 607
static int32_t tmqCommitConsumerImpl(tmq_t* tmq, int8_t automatic, int8_t async, tmq_commit_cb* userCb,
                                     void* userParam) {
L
Liu Jicong 已提交
608 609
  int32_t code = -1;

610 611
  SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
  if (pParamSet == NULL) {
L
Liu Jicong 已提交
612 613 614 615 616 617 618 619
    code = TSDB_CODE_OUT_OF_MEMORY;
    if (async) {
      if (automatic) {
        tmq->commitCb(tmq, code, tmq->commitCbUserParam);
      } else {
        userCb(tmq, code, userParam);
      }
    }
620 621
    return -1;
  }
622 623 624 625

  pParamSet->refId = tmq->refId;
  pParamSet->epoch = tmq->epoch;

626 627 628 629 630 631
  pParamSet->automatic = automatic;
  pParamSet->async = async;
  pParamSet->userCb = userCb;
  pParamSet->userParam = userParam;
  tsem_init(&pParamSet->rspSem, 0, 0);

632 633 634
  // init as 1 to prevent concurrency issue
  pParamSet->waitingRspNum = 1;

635 636
  for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
637

S
Shengliang Guan 已提交
638
    tscDebug("consumer:%" PRId64 ", begin commit for topic %s, vgNum %d", tmq->consumerId, pTopic->topicName,
L
Liu Jicong 已提交
639 640
             (int32_t)taosArrayGetSize(pTopic->vgs));

641
    for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
L
Liu Jicong 已提交
642 643
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);

S
Shengliang Guan 已提交
644 645
      tscDebug("consumer:%" PRId64 ", begin commit for topic %s, vgId:%d", tmq->consumerId, pTopic->topicName,
               pVg->vgId);
L
Liu Jicong 已提交
646

L
Liu Jicong 已提交
647
      if (pVg->currentOffset.type > 0 && !tOffsetEqual(&pVg->currentOffset, &pVg->committedOffset)) {
648
        tscDebug("consumer: %" PRId64 ", vg:%d, current %" PRId64 ", committed %" PRId64 "", tmq->consumerId, pVg->vgId,
L
Liu Jicong 已提交
649
                 pVg->currentOffset.version, pVg->committedOffset.version);
L
Liu Jicong 已提交
650 651 652
        if (tmqSendCommitReq(tmq, pVg, pTopic, pParamSet) < 0) {
          continue;
        }
653 654 655 656
      }
    }
  }

L
Liu Jicong 已提交
657
  // no request is sent
L
Liu Jicong 已提交
658 659 660 661 662 663
  if (pParamSet->totalRspNum == 0) {
    tsem_destroy(&pParamSet->rspSem);
    taosMemoryFree(pParamSet);
    return 0;
  }

L
Liu Jicong 已提交
664 665
  // count down since waiting rsp num init as 1
  tmqCommitRspCountDown(pParamSet);
666

667 668 669 670
  if (!async) {
    tsem_wait(&pParamSet->rspSem);
    code = pParamSet->rspErr;
    tsem_destroy(&pParamSet->rspSem);
671
    taosMemoryFree(pParamSet);
L
Liu Jicong 已提交
672
#if 0
673 674
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
L
Liu Jicong 已提交
675
#endif
L
Liu Jicong 已提交
676
  }
677

L
Liu Jicong 已提交
678 679 680 681 682 683 684 685 686 687
  return code;
}

int32_t tmqCommitInner(tmq_t* tmq, const TAOS_RES* msg, int8_t automatic, int8_t async, tmq_commit_cb* userCb,
                       void* userParam) {
  if (msg) {
    return tmqCommitMsgImpl(tmq, msg, async, userCb, userParam);
  } else {
    return tmqCommitConsumerImpl(tmq, automatic, async, userCb, userParam);
  }
688 689
}

690
void tmqAssignAskEpTask(void* param, void* tmrId) {
691 692 693 694 695 696 697 698 699
  int64_t refId = *(int64_t*)param;
  tmq_t*  tmq = taosAcquireRef(tmqMgmt.rsetId, refId);
  if (tmq != NULL) {
    int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
    *pTaskType = TMQ_DELAYED_TASK__ASK_EP;
    taosWriteQitem(tmq->delayedTask, pTaskType);
    tsem_post(&tmq->rspSem);
  }
  taosMemoryFree(param);
L
Liu Jicong 已提交
700 701 702
}

void tmqAssignDelayedCommitTask(void* param, void* tmrId) {
703 704 705 706 707 708 709 710 711
  int64_t refId = *(int64_t*)param;
  tmq_t*  tmq = taosAcquireRef(tmqMgmt.rsetId, refId);
  if (tmq != NULL) {
    int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
    *pTaskType = TMQ_DELAYED_TASK__COMMIT;
    taosWriteQitem(tmq->delayedTask, pTaskType);
    tsem_post(&tmq->rspSem);
  }
  taosMemoryFree(param);
L
Liu Jicong 已提交
712 713 714
}

void tmqAssignDelayedReportTask(void* param, void* tmrId) {
715 716 717 718 719 720 721 722 723
  int64_t refId = *(int64_t*)param;
  tmq_t*  tmq = taosAcquireRef(tmqMgmt.rsetId, refId);
  if (tmq != NULL) {
    int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
    *pTaskType = TMQ_DELAYED_TASK__REPORT;
    taosWriteQitem(tmq->delayedTask, pTaskType);
    tsem_post(&tmq->rspSem);
  }
  taosMemoryFree(param);
L
Liu Jicong 已提交
724 725
}

726 727 728 729 730 731
int32_t tmqHbCb(void* param, SDataBuf* pMsg, int32_t code) {
  if (pMsg && pMsg->pData) taosMemoryFree(pMsg->pData);
  return 0;
}

void tmqSendHbReq(void* param, void* tmrId) {
732 733 734
  int64_t refId = *(int64_t*)param;
  tmq_t*  tmq = taosAcquireRef(tmqMgmt.rsetId, refId);
  if (tmq == NULL) {
L
Liu Jicong 已提交
735
    taosMemoryFree(param);
736 737
    return;
  }
D
dapan1121 已提交
738 739 740 741 742

  SMqHbReq req = {0};
  req.consumerId = tmq->consumerId;
  req.epoch = tmq->epoch;

L
Liu Jicong 已提交
743
  int32_t tlen = tSerializeSMqHbReq(NULL, 0, &req);
D
dapan1121 已提交
744 745 746 747
  if (tlen < 0) {
    tscError("tSerializeSMqHbReq failed");
    return;
  }
L
Liu Jicong 已提交
748
  void* pReq = taosMemoryCalloc(1, tlen);
D
dapan1121 已提交
749 750 751 752 753 754 755 756 757
  if (tlen < 0) {
    tscError("failed to malloc MqHbReq msg, size:%d", tlen);
    return;
  }
  if (tSerializeSMqHbReq(pReq, tlen, &req) < 0) {
    tscError("tSerializeSMqHbReq %d failed", tlen);
    taosMemoryFree(pReq);
    return;
  }
758 759 760 761

  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
  if (sendInfo == NULL) {
    taosMemoryFree(pReq);
L
Liu Jicong 已提交
762
    goto OVER;
763 764 765
  }
  sendInfo->msgInfo = (SDataBuf){
      .pData = pReq,
D
dapan1121 已提交
766
      .len = tlen,
767 768 769 770 771 772 773
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
  sendInfo->param = NULL;
  sendInfo->fp = tmqHbCb;
L
Liu Jicong 已提交
774
  sendInfo->msgType = TDMT_MND_TMQ_HB;
775 776 777 778 779 780 781

  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);

OVER:
782
  taosTmrReset(tmqSendHbReq, 1000, param, tmqMgmt.timer, &tmq->hbLiveTimer);
783 784
}

L
Liu Jicong 已提交
785 786 787 788 789 790 791 792
int32_t tmqHandleAllDelayedTask(tmq_t* tmq) {
  STaosQall* qall = taosAllocateQall();
  taosReadAllQitems(tmq->delayedTask, qall);
  while (1) {
    int8_t* pTaskType = NULL;
    taosGetQitem(qall, (void**)&pTaskType);
    if (pTaskType == NULL) break;

793
    if (*pTaskType == TMQ_DELAYED_TASK__ASK_EP) {
L
Liu Jicong 已提交
794
      tmqAskEp(tmq, true);
795 796 797 798 799

      int64_t* pRefId = taosMemoryMalloc(sizeof(int64_t));
      *pRefId = tmq->refId;

      taosTmrReset(tmqAssignAskEpTask, 1000, pRefId, tmqMgmt.timer, &tmq->epTimer);
L
Liu Jicong 已提交
800
    } else if (*pTaskType == TMQ_DELAYED_TASK__COMMIT) {
L
Liu Jicong 已提交
801
      tmqCommitInner(tmq, NULL, 1, 1, tmq->commitCb, tmq->commitCbUserParam);
802 803 804 805 806

      int64_t* pRefId = taosMemoryMalloc(sizeof(int64_t));
      *pRefId = tmq->refId;

      taosTmrReset(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, pRefId, tmqMgmt.timer, &tmq->commitTimer);
L
Liu Jicong 已提交
807 808
    } else if (*pTaskType == TMQ_DELAYED_TASK__REPORT) {
    } else {
809
      ASSERT(0);
L
Liu Jicong 已提交
810
    }
L
Liu Jicong 已提交
811
    taosFreeQitem(pTaskType);
L
Liu Jicong 已提交
812 813 814 815 816
  }
  taosFreeQall(qall);
  return 0;
}

L
Liu Jicong 已提交
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
static void tmqFreeRspWrapper(SMqRspWrapper* rspWrapper) {
  if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__END_RSP) {
    // do nothing
  } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__EP_RSP) {
    SMqAskEpRspWrapper* pEpRspWrapper = (SMqAskEpRspWrapper*)rspWrapper;
    tDeleteSMqAskEpRsp(&pEpRspWrapper->msg);
  } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_RSP) {
    SMqPollRspWrapper* pRsp = (SMqPollRspWrapper*)rspWrapper;
    taosArrayDestroyP(pRsp->dataRsp.blockData, taosMemoryFree);
    taosArrayDestroy(pRsp->dataRsp.blockDataLen);
    taosArrayDestroyP(pRsp->dataRsp.blockTbName, taosMemoryFree);
    taosArrayDestroyP(pRsp->dataRsp.blockSchema, (FDelete)tDeleteSSchemaWrapper);
  } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_META_RSP) {
    SMqPollRspWrapper* pRsp = (SMqPollRspWrapper*)rspWrapper;
    taosMemoryFree(pRsp->metaRsp.metaRsp);
  } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__TAOSX_RSP) {
    SMqPollRspWrapper* pRsp = (SMqPollRspWrapper*)rspWrapper;
    taosArrayDestroyP(pRsp->taosxRsp.blockData, taosMemoryFree);
    taosArrayDestroy(pRsp->taosxRsp.blockDataLen);
    taosArrayDestroyP(pRsp->taosxRsp.blockTbName, taosMemoryFree);
    taosArrayDestroyP(pRsp->taosxRsp.blockSchema, (FDelete)tDeleteSSchemaWrapper);
    // taosx
    taosArrayDestroy(pRsp->taosxRsp.createTableLen);
    taosArrayDestroyP(pRsp->taosxRsp.createTableReq, taosMemoryFree);
  }
}

L
Liu Jicong 已提交
844
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
845
  SMqRspWrapper* rspWrapper = NULL;
L
Liu Jicong 已提交
846
  while (1) {
L
Liu Jicong 已提交
847 848 849 850 851
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper) {
      tmqFreeRspWrapper(rspWrapper);
      taosFreeQitem(rspWrapper);
    } else {
L
Liu Jicong 已提交
852
      break;
L
Liu Jicong 已提交
853
    }
L
Liu Jicong 已提交
854 855
  }

L
Liu Jicong 已提交
856
  rspWrapper = NULL;
L
Liu Jicong 已提交
857 858
  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
L
Liu Jicong 已提交
859 860 861 862 863
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper) {
      tmqFreeRspWrapper(rspWrapper);
      taosFreeQitem(rspWrapper);
    } else {
L
Liu Jicong 已提交
864
      break;
L
Liu Jicong 已提交
865
    }
L
Liu Jicong 已提交
866 867 868
  }
}

D
dapan1121 已提交
869
int32_t tmqSubscribeCb(void* param, SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
870 871 872 873 874
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
875

L
Liu Jicong 已提交
876
int32_t tmq_subscription(tmq_t* tmq, tmq_list_t** topics) {
X
Xiaoyu Wang 已提交
877 878 879 880
  if (*topics == NULL) {
    *topics = tmq_list_new();
  }
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
L
Liu Jicong 已提交
881
    SMqClientTopic* topic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
882
    tmq_list_append(*topics, strchr(topic->topicName, '.') + 1);
X
Xiaoyu Wang 已提交
883
  }
L
Liu Jicong 已提交
884
  return 0;
X
Xiaoyu Wang 已提交
885 886
}

L
Liu Jicong 已提交
887
int32_t tmq_unsubscribe(tmq_t* tmq) {
L
Liu Jicong 已提交
888 889
  int32_t     rsp;
  int32_t     retryCnt = 0;
L
Liu Jicong 已提交
890
  tmq_list_t* lst = tmq_list_new();
L
Liu Jicong 已提交
891 892 893 894 895 896 897 898 899 900
  while (1) {
    rsp = tmq_subscribe(tmq, lst);
    if (rsp != TSDB_CODE_MND_CONSUMER_NOT_READY || retryCnt > 5) {
      break;
    } else {
      retryCnt++;
      taosMsleep(500);
    }
  }

L
Liu Jicong 已提交
901 902
  tmq_list_destroy(lst);
  return rsp;
X
Xiaoyu Wang 已提交
903 904
}

905 906
void tmqFreeImpl(void* handle) {
  tmq_t* tmq = (tmq_t*)handle;
L
Liu Jicong 已提交
907

908
  // TODO stop timer
L
Liu Jicong 已提交
909
  tmqClearUnhandleMsg(tmq);
910 911 912
  if (tmq->mqueue) taosCloseQueue(tmq->mqueue);
  if (tmq->delayedTask) taosCloseQueue(tmq->delayedTask);
  if (tmq->qall) taosFreeQall(tmq->qall);
L
Liu Jicong 已提交
913

914
  tsem_destroy(&tmq->rspSem);
L
Liu Jicong 已提交
915

916 917 918
  int32_t sz = taosArrayGetSize(tmq->clientTopics);
  for (int32_t i = 0; i < sz; i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
919
    taosMemoryFreeClear(pTopic->schema.pSchema);
920 921 922 923 924
    taosArrayDestroy(pTopic->vgs);
  }
  taosArrayDestroy(tmq->clientTopics);
  taos_close_internal(tmq->pTscObj);
  taosMemoryFree(tmq);
L
Liu Jicong 已提交
925 926
}

L
Liu Jicong 已提交
927
tmq_t* tmq_consumer_new(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
L
Liu Jicong 已提交
928 929 930 931 932 933 934 935 936
  // init timer
  int8_t inited = atomic_val_compare_exchange_8(&tmqMgmt.inited, 0, 1);
  if (inited == 0) {
    tmqMgmt.timer = taosTmrInit(1000, 100, 360000, "TMQ");
    if (tmqMgmt.timer == NULL) {
      atomic_store_8(&tmqMgmt.inited, 0);
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return NULL;
    }
937
    tmqMgmt.rsetId = taosOpenRef(10000, tmqFreeImpl);
L
Liu Jicong 已提交
938 939
  }

L
Liu Jicong 已提交
940 941
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
L
Liu Jicong 已提交
942
    terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
943
    tscError("setting up new consumer failed since %s, consumer group %s", terrstr(), conf->groupId);
L
Liu Jicong 已提交
944 945
    return NULL;
  }
L
Liu Jicong 已提交
946

L
Liu Jicong 已提交
947 948 949
  const char* user = conf->user == NULL ? TSDB_DEFAULT_USER : conf->user;
  const char* pass = conf->pass == NULL ? TSDB_DEFAULT_PASS : conf->pass;

950 951 952
  ASSERT(user);
  ASSERT(pass);
  ASSERT(conf->groupId[0]);
L
Liu Jicong 已提交
953

L
Liu Jicong 已提交
954 955 956 957 958 959
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
  pTmq->delayedTask = taosOpenQueue();

  if (pTmq->clientTopics == NULL || pTmq->mqueue == NULL || pTmq->qall == NULL || pTmq->delayedTask == NULL) {
L
Liu Jicong 已提交
960
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
961 962
    tscError("consumer %" PRId64 " setup failed since %s, consumer group %s", pTmq->consumerId, terrstr(),
             pTmq->groupId);
L
Liu Jicong 已提交
963 964
    goto FAIL;
  }
L
Liu Jicong 已提交
965

L
Liu Jicong 已提交
966 967
  // init status
  pTmq->status = TMQ_CONSUMER_STATUS__INIT;
L
Liu Jicong 已提交
968 969
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
L
Liu Jicong 已提交
970 971
  /*pTmq->epStatus = 0;*/
  /*pTmq->epSkipCnt = 0;*/
L
Liu Jicong 已提交
972

L
Liu Jicong 已提交
973 974 975
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
976
  pTmq->withTbName = conf->withTbName;
L
Liu Jicong 已提交
977
  pTmq->useSnapshot = conf->snapEnable;
L
Liu Jicong 已提交
978
  pTmq->autoCommit = conf->autoCommit;
L
Liu Jicong 已提交
979
  pTmq->autoCommitInterval = conf->autoCommitInterval;
L
Liu Jicong 已提交
980 981
  pTmq->commitCb = conf->commitCb;
  pTmq->commitCbUserParam = conf->commitCbUserParam;
L
Liu Jicong 已提交
982 983
  pTmq->resetOffsetCfg = conf->resetOffset;

984 985
  pTmq->hbBgEnable = conf->hbBgEnable;

L
Liu Jicong 已提交
986
  // assign consumerId
L
Liu Jicong 已提交
987
  pTmq->consumerId = tGenIdPI64();
X
Xiaoyu Wang 已提交
988

L
Liu Jicong 已提交
989 990
  // init semaphore
  if (tsem_init(&pTmq->rspSem, 0, 0) != 0) {
S
Shengliang Guan 已提交
991 992
    tscError("consumer %" PRId64 " setup failed since %s, consumer group %s", pTmq->consumerId, terrstr(),
             pTmq->groupId);
L
Liu Jicong 已提交
993 994
    goto FAIL;
  }
L
Liu Jicong 已提交
995

L
Liu Jicong 已提交
996 997 998
  // init connection
  pTmq->pTscObj = taos_connect_internal(conf->ip, user, pass, NULL, NULL, conf->port, CONN_TYPE__TMQ);
  if (pTmq->pTscObj == NULL) {
S
Shengliang Guan 已提交
999 1000
    tscError("consumer %" PRId64 " setup failed since %s, consumer group %s", pTmq->consumerId, terrstr(),
             pTmq->groupId);
L
Liu Jicong 已提交
1001 1002 1003
    tsem_destroy(&pTmq->rspSem);
    goto FAIL;
  }
L
Liu Jicong 已提交
1004

1005 1006 1007 1008 1009 1010
  pTmq->refId = taosAddRef(tmqMgmt.rsetId, pTmq);
  if (pTmq->refId < 0) {
    tmqFreeImpl(pTmq);
    return NULL;
  }

1011
  if (pTmq->hbBgEnable) {
L
Liu Jicong 已提交
1012 1013
    int64_t* pRefId = taosMemoryMalloc(sizeof(int64_t));
    *pRefId = pTmq->refId;
1014
    pTmq->hbLiveTimer = taosTmrStart(tmqSendHbReq, 1000, pRefId, tmqMgmt.timer);
1015 1016
  }

S
Shengliang Guan 已提交
1017
  tscInfo("consumer %" PRId64 " is setup, consumer group %s", pTmq->consumerId, pTmq->groupId);
L
Liu Jicong 已提交
1018

1019
  return pTmq;
L
Liu Jicong 已提交
1020 1021 1022 1023 1024 1025 1026 1027

FAIL:
  if (pTmq->clientTopics) taosArrayDestroy(pTmq->clientTopics);
  if (pTmq->mqueue) taosCloseQueue(pTmq->mqueue);
  if (pTmq->delayedTask) taosCloseQueue(pTmq->delayedTask);
  if (pTmq->qall) taosFreeQall(pTmq->qall);
  taosMemoryFree(pTmq);
  return NULL;
1028 1029
}

L
Liu Jicong 已提交
1030
int32_t tmq_subscribe(tmq_t* tmq, const tmq_list_t* topic_list) {
L
Liu Jicong 已提交
1031 1032 1033
  const SArray*   container = &topic_list->container;
  int32_t         sz = taosArrayGetSize(container);
  void*           buf = NULL;
L
Liu Jicong 已提交
1034
  SMsgSendInfo*   sendInfo = NULL;
L
Liu Jicong 已提交
1035 1036
  SCMSubscribeReq req = {0};
  int32_t         code = -1;
1037

1038
  tscDebug("tmq subscribe, consumer: %" PRId64 ", topic num %d", tmq->consumerId, sz);
L
Liu Jicong 已提交
1039

1040
  req.consumerId = tmq->consumerId;
L
Liu Jicong 已提交
1041
  tstrncpy(req.clientId, tmq->clientId, 256);
L
Liu Jicong 已提交
1042
  tstrncpy(req.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
1043
  req.topicNames = taosArrayInit(sz, sizeof(void*));
L
Liu Jicong 已提交
1044
  if (req.topicNames == NULL) goto FAIL;
1045

1046
  tscDebug("tmq subscribe, consumer: %" PRId64 ", topic num %d", tmq->consumerId, sz);
1047

L
Liu Jicong 已提交
1048 1049
  for (int32_t i = 0; i < sz; i++) {
    char* topic = taosArrayGetP(container, i);
1050 1051

    SName name = {0};
L
Liu Jicong 已提交
1052
    tNameSetDbName(&name, tmq->pTscObj->acctId, topic, strlen(topic));
1053

L
Liu Jicong 已提交
1054 1055 1056
    char* topicFName = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFName == NULL) {
      goto FAIL;
1057
    }
L
Liu Jicong 已提交
1058
    tNameExtractFullName(&name, topicFName);
1059

L
Liu Jicong 已提交
1060 1061 1062
    tscDebug("subscribe topic: %s", topicFName);

    taosArrayPush(req.topicNames, &topicFName);
1063 1064
  }

L
Liu Jicong 已提交
1065 1066 1067 1068
  int32_t tlen = tSerializeSCMSubscribeReq(NULL, &req);
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) goto FAIL;

1069 1070 1071
  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);

L
Liu Jicong 已提交
1072
  sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1073
  if (sendInfo == NULL) goto FAIL;
1074

X
Xiaoyu Wang 已提交
1075
  SMqSubscribeCbParam param = {
L
Liu Jicong 已提交
1076
      .rspErr = 0,
1077 1078
      .refId = tmq->refId,
      .epoch = tmq->epoch,
X
Xiaoyu Wang 已提交
1079
  };
L
Liu Jicong 已提交
1080

L
Liu Jicong 已提交
1081 1082 1083
  if (tsem_init(&param.rspSem, 0, 0) != 0) goto FAIL;

  sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1084 1085 1086 1087
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
1088

L
Liu Jicong 已提交
1089 1090
  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1091 1092
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
L
Liu Jicong 已提交
1093
  sendInfo->msgType = TDMT_MND_TMQ_SUBSCRIBE;
L
Liu Jicong 已提交
1094

1095 1096 1097 1098 1099
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);

L
Liu Jicong 已提交
1100 1101
  // avoid double free if msg is sent
  buf = NULL;
L
Liu Jicong 已提交
1102
  sendInfo = NULL;
L
Liu Jicong 已提交
1103

L
Liu Jicong 已提交
1104 1105
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
1106

L
Liu Jicong 已提交
1107 1108 1109
  code = param.rspErr;
  if (code != 0) goto FAIL;

L
Liu Jicong 已提交
1110
  int32_t retryCnt = 0;
L
Liu Jicong 已提交
1111
  while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, false)) {
L
Liu Jicong 已提交
1112 1113 1114
    if (retryCnt++ > 10) {
      goto FAIL;
    }
L
fix  
Liu Jicong 已提交
1115
    tscDebug("consumer not ready, retry");
L
Liu Jicong 已提交
1116 1117
    taosMsleep(500);
  }
1118

1119 1120
  // init ep timer
  if (tmq->epTimer == NULL) {
1121 1122 1123
    int64_t* pRefId1 = taosMemoryMalloc(sizeof(int64_t));
    *pRefId1 = tmq->refId;
    tmq->epTimer = taosTmrStart(tmqAssignAskEpTask, 1000, pRefId1, tmqMgmt.timer);
1124
  }
L
Liu Jicong 已提交
1125 1126

  // init auto commit timer
1127
  if (tmq->autoCommit && tmq->commitTimer == NULL) {
1128 1129 1130
    int64_t* pRefId2 = taosMemoryMalloc(sizeof(int64_t));
    *pRefId2 = tmq->refId;
    tmq->commitTimer = taosTmrStart(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, pRefId2, tmqMgmt.timer);
L
Liu Jicong 已提交
1131 1132
  }

L
Liu Jicong 已提交
1133 1134
  code = 0;
FAIL:
L
Liu Jicong 已提交
1135
  taosArrayDestroyP(req.topicNames, taosMemoryFree);
L
Liu Jicong 已提交
1136
  taosMemoryFree(buf);
L
Liu Jicong 已提交
1137
  taosMemoryFree(sendInfo);
L
Liu Jicong 已提交
1138

L
Liu Jicong 已提交
1139
  return code;
1140 1141
}

L
Liu Jicong 已提交
1142
void tmq_conf_set_auto_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb, void* param) {
L
Liu Jicong 已提交
1143
  //
1144
  conf->commitCb = cb;
L
Liu Jicong 已提交
1145
  conf->commitCbUserParam = param;
L
Liu Jicong 已提交
1146
}
1147

D
dapan1121 已提交
1148
int32_t tmqPollCb(void* param, SDataBuf* pMsg, int32_t code) {
X
Xiaoyu Wang 已提交
1149 1150
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
L
Liu Jicong 已提交
1151
  SMqClientTopic* pTopic = pParam->pTopic;
1152 1153 1154 1155 1156 1157

  tmq_t* tmq = taosAcquireRef(tmqMgmt.rsetId, pParam->refId);
  if (tmq == NULL) {
    tsem_destroy(&pParam->rspSem);
    taosMemoryFree(pParam);
    taosMemoryFree(pMsg->pData);
dengyihao's avatar
dengyihao 已提交
1158
    taosMemoryFree(pMsg->pEpSet);
1159 1160 1161 1162 1163 1164
    terrno = TSDB_CODE_TMQ_CONSUMER_CLOSED;
    return -1;
  }

  int32_t epoch = pParam->epoch;
  int32_t vgId = pParam->vgId;
L
Liu Jicong 已提交
1165
  taosMemoryFree(pParam);
L
Liu Jicong 已提交
1166
  if (code != 0) {
L
Liu Jicong 已提交
1167
    tscWarn("msg discard from vgId:%d, epoch %d, since %s", vgId, epoch, terrstr());
L
Liu Jicong 已提交
1168
    if (pMsg->pData) taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1169 1170 1171 1172
    if (code == TSDB_CODE_TMQ_CONSUMER_MISMATCH) {
      atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__RECOVER);
      goto CREATE_MSG_FAIL;
    }
L
Liu Jicong 已提交
1173 1174 1175
    if (code == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
      SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
      if (pRspWrapper == NULL) {
S
Shengliang Guan 已提交
1176
        tscWarn("msg discard from vgId:%d, epoch %d since out of memory", vgId, epoch);
L
Liu Jicong 已提交
1177 1178 1179 1180 1181 1182 1183 1184
        goto CREATE_MSG_FAIL;
      }
      pRspWrapper->tmqRspType = TMQ_MSG_TYPE__END_RSP;
      /*pRspWrapper->vgHandle = pVg;*/
      /*pRspWrapper->topicHandle = pTopic;*/
      taosWriteQitem(tmq->mqueue, pRspWrapper);
      tsem_post(&tmq->rspSem);
    }
L
fix txn  
Liu Jicong 已提交
1185
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1186 1187
  }

X
Xiaoyu Wang 已提交
1188 1189 1190
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
1191
    // do not write into queue since updating epoch reset
S
Shengliang Guan 已提交
1192
    tscWarn("msg discard from vgId:%d since from earlier epoch, rsp epoch %d, current epoch %d", vgId, msgEpoch,
L
Liu Jicong 已提交
1193
            tmqEpoch);
1194
    tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1195
    taosMemoryFree(pMsg->pData);
dengyihao's avatar
dengyihao 已提交
1196
    taosMemoryFree(pMsg->pEpSet);
X
Xiaoyu Wang 已提交
1197 1198 1199 1200
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
S
Shengliang Guan 已提交
1201
    tscWarn("mismatch rsp from vgId:%d, epoch %d, current epoch %d", vgId, msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
1202 1203
  }

L
Liu Jicong 已提交
1204 1205 1206
  // handle meta rsp
  int8_t rspType = ((SMqRspHead*)pMsg->pData)->mqMsgType;

1207
  SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1208
  if (pRspWrapper == NULL) {
L
Liu Jicong 已提交
1209
    taosMemoryFree(pMsg->pData);
dengyihao's avatar
dengyihao 已提交
1210
    taosMemoryFree(pMsg->pEpSet);
S
Shengliang Guan 已提交
1211
    tscWarn("msg discard from vgId:%d, epoch %d since out of memory", vgId, epoch);
L
fix txn  
Liu Jicong 已提交
1212
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1213
  }
L
Liu Jicong 已提交
1214

L
Liu Jicong 已提交
1215
  pRspWrapper->tmqRspType = rspType;
L
Liu Jicong 已提交
1216 1217
  pRspWrapper->vgHandle = pVg;
  pRspWrapper->topicHandle = pTopic;
L
Liu Jicong 已提交
1218

L
Liu Jicong 已提交
1219
  if (rspType == TMQ_MSG_TYPE__POLL_RSP) {
L
Liu Jicong 已提交
1220 1221 1222
    SDecoder decoder;
    tDecoderInit(&decoder, POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pMsg->len - sizeof(SMqRspHead));
    tDecodeSMqDataRsp(&decoder, &pRspWrapper->dataRsp);
wmmhello's avatar
wmmhello 已提交
1223
    tDecoderClear(&decoder);
L
Liu Jicong 已提交
1224
    memcpy(&pRspWrapper->dataRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1225 1226 1227 1228 1229 1230

    tscDebug("consumer:%" PRId64 ", recv poll: vgId:%d, req offset %" PRId64 ", rsp offset %" PRId64 " type %d",
             tmq->consumerId, pVg->vgId, pRspWrapper->dataRsp.reqOffset.version, pRspWrapper->dataRsp.rspOffset.version,
             rspType);

  } else if (rspType == TMQ_MSG_TYPE__POLL_META_RSP) {
1231 1232 1233 1234
    SDecoder decoder;
    tDecoderInit(&decoder, POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pMsg->len - sizeof(SMqRspHead));
    tDecodeSMqMetaRsp(&decoder, &pRspWrapper->metaRsp);
    tDecoderClear(&decoder);
L
Liu Jicong 已提交
1235
    memcpy(&pRspWrapper->metaRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1236 1237 1238 1239 1240 1241 1242
  } else if (rspType == TMQ_MSG_TYPE__TAOSX_RSP) {
    SDecoder decoder;
    tDecoderInit(&decoder, POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pMsg->len - sizeof(SMqRspHead));
    tDecodeSTaosxRsp(&decoder, &pRspWrapper->taosxRsp);
    tDecoderClear(&decoder);
    memcpy(&pRspWrapper->taosxRsp, pMsg->pData, sizeof(SMqRspHead));
  } else {
1243
    ASSERT(0);
L
Liu Jicong 已提交
1244
  }
L
Liu Jicong 已提交
1245

L
Liu Jicong 已提交
1246
  taosMemoryFree(pMsg->pData);
dengyihao's avatar
dengyihao 已提交
1247
  taosMemoryFree(pMsg->pEpSet);
L
Liu Jicong 已提交
1248

L
Liu Jicong 已提交
1249 1250
  tscDebug("consumer:%" PRId64 ", put poll res into mqueue %p", tmq->consumerId, pRspWrapper);

L
Liu Jicong 已提交
1251
  taosWriteQitem(tmq->mqueue, pRspWrapper);
1252
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1253

L
Liu Jicong 已提交
1254
  return 0;
L
fix txn  
Liu Jicong 已提交
1255
CREATE_MSG_FAIL:
L
Liu Jicong 已提交
1256
  if (epoch == tmq->epoch) {
L
Liu Jicong 已提交
1257 1258
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
1259
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1260
  return -1;
1261 1262
}

L
Liu Jicong 已提交
1263
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, const SMqAskEpRsp* pRsp) {
1264 1265 1266 1267
  bool set = false;

  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
S
Shengliang Guan 已提交
1268
  tscDebug("consumer:%" PRId64 ", update ep epoch %d to epoch %d, topic num:%d", tmq->consumerId, tmq->epoch, epoch,
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
           topicNumGet);

  SArray* newTopics = taosArrayInit(topicNumGet, sizeof(SMqClientTopic));
  if (newTopics == NULL) {
    return false;
  }

  SHashObj* pHash = taosHashInit(64, MurmurHash3_32, false, HASH_NO_LOCK);
  if (pHash == NULL) {
    taosArrayDestroy(newTopics);
    return false;
  }
  int32_t topicNumCur = taosArrayGetSize(tmq->clientTopics);
  for (int32_t i = 0; i < topicNumCur; i++) {
    // find old topic
    SMqClientTopic* pTopicCur = taosArrayGet(tmq->clientTopics, i);
    if (pTopicCur->vgs) {
      int32_t vgNumCur = taosArrayGetSize(pTopicCur->vgs);
S
Shengliang Guan 已提交
1287
      tscDebug("consumer:%" PRId64 ", new vg num: %d", tmq->consumerId, vgNumCur);
1288 1289 1290
      for (int32_t j = 0; j < vgNumCur; j++) {
        SMqClientVg* pVgCur = taosArrayGet(pTopicCur->vgs, j);
        sprintf(vgKey, "%s:%d", pTopicCur->topicName, pVgCur->vgId);
L
Liu Jicong 已提交
1291
        char buf[80];
L
Liu Jicong 已提交
1292
        tFormatOffset(buf, 80, &pVgCur->currentOffset);
L
Liu Jicong 已提交
1293 1294
        tscDebug("consumer:%" PRId64 ", epoch %d vgId:%d vgKey is %s, offset is %s", tmq->consumerId, epoch,
                 pVgCur->vgId, vgKey, buf);
L
Liu Jicong 已提交
1295
        taosHashPut(pHash, vgKey, strlen(vgKey), &pVgCur->currentOffset, sizeof(STqOffsetVal));
1296 1297 1298 1299 1300 1301 1302 1303
      }
    }
  }

  for (int32_t i = 0; i < topicNumGet; i++) {
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
    topic.schema = pTopicEp->schema;
L
Liu Jicong 已提交
1304 1305
    pTopicEp->schema.nCols = 0;
    pTopicEp->schema.pSchema = NULL;
1306
    tstrncpy(topic.topicName, pTopicEp->topic, TSDB_TOPIC_FNAME_LEN);
1307 1308
    tstrncpy(topic.db, pTopicEp->db, TSDB_DB_FNAME_LEN);

S
Shengliang Guan 已提交
1309
    tscDebug("consumer:%" PRId64 ", update topic: %s", tmq->consumerId, topic.topicName);
1310 1311 1312 1313 1314 1315

    int32_t vgNumGet = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgNumGet, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgNumGet; j++) {
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
L
Liu Jicong 已提交
1316 1317
      STqOffsetVal* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      STqOffsetVal  offsetNew = {.type = tmq->resetOffsetCfg};
1318
      if (pOffset != NULL) {
L
Liu Jicong 已提交
1319
        offsetNew = *pOffset;
1320 1321 1322 1323
      }

      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
1324
          .currentOffset = offsetNew,
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
          .vgSkipCnt = 0,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
    taosArrayPush(newTopics, &topic);
  }
1335 1336 1337 1338
  if (tmq->clientTopics) {
    int32_t sz = taosArrayGetSize(tmq->clientTopics);
    for (int32_t i = 0; i < sz; i++) {
      SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
1339
      if (pTopic->schema.nCols) taosMemoryFreeClear(pTopic->schema.pSchema);
1340
      taosArrayDestroy(pTopic->vgs);
L
Liu Jicong 已提交
1341
    }
1342
    taosArrayDestroy(tmq->clientTopics);
X
Xiaoyu Wang 已提交
1343
  }
L
Liu Jicong 已提交
1344
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
1345
  tmq->clientTopics = newTopics;
1346

1347 1348 1349 1350
  if (taosArrayGetSize(tmq->clientTopics) == 0)
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__NO_TOPIC);
  else
    atomic_store_8(&tmq->status, TMQ_CONSUMER_STATUS__READY);
1351

X
Xiaoyu Wang 已提交
1352 1353 1354 1355
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

D
dapan1121 已提交
1356
int32_t tmqAskEpCb(void* param, SDataBuf* pMsg, int32_t code) {
1357
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
1358
  int8_t           async = pParam->async;
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
  tmq_t*           tmq = taosAcquireRef(tmqMgmt.rsetId, pParam->refId);

  if (tmq == NULL) {
    if (!async) {
      tsem_destroy(&pParam->rspSem);
    } else {
      taosMemoryFree(pParam);
    }
    taosMemoryFree(pMsg->pData);
    terrno = TSDB_CODE_TMQ_CONSUMER_CLOSED;
    return -1;
  }

L
Liu Jicong 已提交
1372
  pParam->code = code;
1373
  if (code != 0) {
L
Liu Jicong 已提交
1374 1375
    tscError("consumer:%" PRId64 ", get topic endpoint error, not ready, wait:%d, code %x", tmq->consumerId,
             pParam->async, code);
L
Liu Jicong 已提交
1376
    goto END;
1377
  }
L
Liu Jicong 已提交
1378

L
Liu Jicong 已提交
1379
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
1380
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
1381
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
1382 1383
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
S
Shengliang Guan 已提交
1384
  tscDebug("consumer:%" PRId64 ", recv ep, msg epoch %d, current epoch %d", tmq->consumerId, head->epoch, epoch);
L
Liu Jicong 已提交
1385 1386
  if (head->epoch <= epoch) {
    goto END;
1387
  }
L
Liu Jicong 已提交
1388

L
Liu Jicong 已提交
1389
  if (!async) {
L
Liu Jicong 已提交
1390 1391
    SMqAskEpRsp rsp;
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &rsp);
S
Shengliang Guan 已提交
1392 1393
    /*printf("rsp epoch %" PRId64 " sz %" PRId64 "\n", rsp.epoch, rsp.topics->size);*/
    /*printf("tmq epoch %" PRId64 " sz %" PRId64 "\n", tmq->epoch, tmq->clientTopics->size);*/
L
Liu Jicong 已提交
1394
    tmqUpdateEp(tmq, head->epoch, &rsp);
L
Liu Jicong 已提交
1395
    tDeleteSMqAskEpRsp(&rsp);
X
Xiaoyu Wang 已提交
1396
  } else {
1397
    SMqAskEpRspWrapper* pWrapper = taosAllocateQitem(sizeof(SMqAskEpRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1398
    if (pWrapper == NULL) {
X
Xiaoyu Wang 已提交
1399
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
1400 1401
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
1402
    }
L
Liu Jicong 已提交
1403 1404 1405
    pWrapper->tmqRspType = TMQ_MSG_TYPE__EP_RSP;
    pWrapper->epoch = head->epoch;
    memcpy(&pWrapper->msg, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1406
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pWrapper->msg);
L
Liu Jicong 已提交
1407

L
Liu Jicong 已提交
1408
    taosWriteQitem(tmq->mqueue, pWrapper);
1409
    tsem_post(&tmq->rspSem);
1410
  }
L
Liu Jicong 已提交
1411 1412

END:
L
Liu Jicong 已提交
1413
  /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1414
  if (!async) {
L
Liu Jicong 已提交
1415
    tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
1416 1417
  } else {
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
1418
  }
L
Liu Jicong 已提交
1419
  taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1420
  return code;
1421 1422
}

L
Liu Jicong 已提交
1423
int32_t tmqAskEp(tmq_t* tmq, bool async) {
L
Liu Jicong 已提交
1424
  int32_t code = 0;
L
Liu Jicong 已提交
1425
#if 0
L
Liu Jicong 已提交
1426
  int8_t  epStatus = atomic_val_compare_exchange_8(&tmq->epStatus, 0, 1);
L
fix txn  
Liu Jicong 已提交
1427
  if (epStatus == 1) {
L
temp  
Liu Jicong 已提交
1428
    int32_t epSkipCnt = atomic_add_fetch_32(&tmq->epSkipCnt, 1);
S
Shengliang Guan 已提交
1429
    tscTrace("consumer:%" PRId64 ", skip ask ep cnt %d", tmq->consumerId, epSkipCnt);
L
Liu Jicong 已提交
1430
    if (epSkipCnt < 5000) return 0;
L
fix txn  
Liu Jicong 已提交
1431
  }
L
temp  
Liu Jicong 已提交
1432
  atomic_store_32(&tmq->epSkipCnt, 0);
L
Liu Jicong 已提交
1433
#endif
D
dapan1121 已提交
1434 1435 1436 1437 1438
  SMqAskEpReq req = {0};
  req.consumerId = tmq->consumerId;
  req.epoch = tmq->epoch;
  strcpy(req.cgroup, tmq->groupId);

L
Liu Jicong 已提交
1439
  int32_t tlen = tSerializeSMqAskEpReq(NULL, 0, &req);
D
dapan1121 已提交
1440 1441 1442 1443
  if (tlen < 0) {
    tscError("tSerializeSMqAskEpReq failed");
    return -1;
  }
L
Liu Jicong 已提交
1444
  void* pReq = taosMemoryCalloc(1, tlen);
L
Liu Jicong 已提交
1445
  if (pReq == NULL) {
D
dapan1121 已提交
1446 1447 1448 1449 1450 1451
    tscError("failed to malloc askEpReq msg, size:%d", tlen);
    return -1;
  }
  if (tSerializeSMqAskEpReq(pReq, tlen, &req) < 0) {
    tscError("tSerializeSMqAskEpReq %d failed", tlen);
    taosMemoryFree(pReq);
L
Liu Jicong 已提交
1452
    return -1;
L
Liu Jicong 已提交
1453
  }
1454

L
Liu Jicong 已提交
1455
  SMqAskEpCbParam* pParam = taosMemoryCalloc(1, sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1456 1457
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
D
dapan1121 已提交
1458
    taosMemoryFree(pReq);
L
Liu Jicong 已提交
1459
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1460
    return -1;
L
Liu Jicong 已提交
1461
  }
1462 1463
  pParam->refId = tmq->refId;
  pParam->epoch = tmq->epoch;
L
Liu Jicong 已提交
1464
  pParam->async = async;
X
Xiaoyu Wang 已提交
1465
  tsem_init(&pParam->rspSem, 0, 0);
1466

1467
  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1468 1469
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1470
    taosMemoryFree(pParam);
D
dapan1121 已提交
1471
    taosMemoryFree(pReq);
L
Liu Jicong 已提交
1472
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1473 1474 1475 1476
    return -1;
  }

  sendInfo->msgInfo = (SDataBuf){
D
dapan1121 已提交
1477
      .pData = pReq,
L
Liu Jicong 已提交
1478 1479 1480 1481 1482
      .len = tlen,
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1483 1484 1485
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1486
  sendInfo->msgType = TDMT_MND_TMQ_ASK_EP;
1487

L
Liu Jicong 已提交
1488 1489
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

S
Shengliang Guan 已提交
1490
  tscDebug("consumer:%" PRId64 ", ask ep", tmq->consumerId);
L
add log  
Liu Jicong 已提交
1491

L
Liu Jicong 已提交
1492 1493
  int64_t transporterId = 0;
  asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &epSet, &transporterId, sendInfo);
1494

L
Liu Jicong 已提交
1495
  if (!async) {
L
Liu Jicong 已提交
1496 1497 1498 1499 1500
    tsem_wait(&pParam->rspSem);
    code = pParam->code;
    taosMemoryFree(pParam);
  }
  return code;
1501 1502
}

L
Liu Jicong 已提交
1503
void tmqBuildConsumeReqImpl(SMqPollReq* pReq, tmq_t* tmq, int64_t timeout, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1504 1505 1506
  /*strcpy(pReq->topic, pTopic->topicName);*/
  /*strcpy(pReq->cgroup, tmq->groupId);*/

L
Liu Jicong 已提交
1507 1508 1509 1510
  int32_t groupLen = strlen(tmq->groupId);
  memcpy(pReq->subKey, tmq->groupId, groupLen);
  pReq->subKey[groupLen] = TMQ_SEPARATOR;
  strcpy(pReq->subKey + groupLen + 1, pTopic->topicName);
1511

1512
  pReq->withTbName = tmq->withTbName;
1513
  pReq->timeout = timeout;
L
Liu Jicong 已提交
1514
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1515
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1516
  /*pReq->currentOffset = reqOffset;*/
L
Liu Jicong 已提交
1517
  pReq->reqOffset = pVg->currentOffset;
L
Liu Jicong 已提交
1518
  pReq->reqId = generateRequestId();
1519

L
Liu Jicong 已提交
1520 1521
  pReq->useSnapshot = tmq->useSnapshot;

D
dapan1121 已提交
1522
  pReq->head.vgId = pVg->vgId;
1523 1524
}

L
Liu Jicong 已提交
1525 1526
SMqMetaRspObj* tmqBuildMetaRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqMetaRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqMetaRspObj));
L
Liu Jicong 已提交
1527
  pRspObj->resType = RES_TYPE__TMQ_META;
L
Liu Jicong 已提交
1528 1529 1530 1531 1532 1533 1534 1535
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
  pRspObj->vgId = pWrapper->vgHandle->vgId;

  memcpy(&pRspObj->metaRsp, &pWrapper->metaRsp, sizeof(SMqMetaRsp));
  return pRspObj;
}

L
Liu Jicong 已提交
1536 1537 1538
SMqRspObj* tmqBuildRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqRspObj));
  pRspObj->resType = RES_TYPE__TMQ;
L
Liu Jicong 已提交
1539 1540
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
L
Liu Jicong 已提交
1541
  pRspObj->vgId = pWrapper->vgHandle->vgId;
L
Liu Jicong 已提交
1542
  pRspObj->resIter = -1;
L
Liu Jicong 已提交
1543
  memcpy(&pRspObj->rsp, &pWrapper->dataRsp, sizeof(SMqDataRsp));
L
Liu Jicong 已提交
1544

L
Liu Jicong 已提交
1545 1546
  pRspObj->resInfo.totalRows = 0;
  pRspObj->resInfo.precision = TSDB_TIME_PRECISION_MILLI;
L
Liu Jicong 已提交
1547
  if (!pWrapper->dataRsp.withSchema) {
L
Liu Jicong 已提交
1548 1549
    setResSchemaInfo(&pRspObj->resInfo, pWrapper->topicHandle->schema.pSchema, pWrapper->topicHandle->schema.nCols);
  }
L
Liu Jicong 已提交
1550

L
Liu Jicong 已提交
1551
  return pRspObj;
X
Xiaoyu Wang 已提交
1552 1553
}

L
Liu Jicong 已提交
1554 1555
SMqTaosxRspObj* tmqBuildTaosxRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqTaosxRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqTaosxRspObj));
1556
  pRspObj->resType = RES_TYPE__TMQ_METADATA;
L
Liu Jicong 已提交
1557 1558 1559 1560
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
  pRspObj->vgId = pWrapper->vgHandle->vgId;
  pRspObj->resIter = -1;
1561
  memcpy(&pRspObj->rsp, &pWrapper->taosxRsp, sizeof(STaosxRsp));
L
Liu Jicong 已提交
1562 1563 1564

  pRspObj->resInfo.totalRows = 0;
  pRspObj->resInfo.precision = TSDB_TIME_PRECISION_MILLI;
1565
  if (!pWrapper->taosxRsp.withSchema) {
L
Liu Jicong 已提交
1566 1567 1568 1569 1570 1571
    setResSchemaInfo(&pRspObj->resInfo, pWrapper->topicHandle->schema.pSchema, pWrapper->topicHandle->schema.nCols);
  }

  return pRspObj;
}

1572
int32_t tmqPollImpl(tmq_t* tmq, int64_t timeout) {
X
Xiaoyu Wang 已提交
1573 1574 1575 1576 1577 1578
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    for (int j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
      int32_t      vgStatus = atomic_val_compare_exchange_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE, TMQ_VG_STATUS__WAIT);
      if (vgStatus != TMQ_VG_STATUS__IDLE) {
L
Liu Jicong 已提交
1579
        int32_t vgSkipCnt = atomic_add_fetch_32(&pVg->vgSkipCnt, 1);
L
Liu Jicong 已提交
1580 1581
        tscTrace("consumer:%" PRId64 ", epoch %d skip vgId:%d skip cnt %d", tmq->consumerId, tmq->epoch, pVg->vgId,
                 vgSkipCnt);
X
Xiaoyu Wang 已提交
1582
        continue;
L
Liu Jicong 已提交
1583
        /*if (vgSkipCnt < 10000) continue;*/
L
temp  
Liu Jicong 已提交
1584 1585 1586 1587
#if 0
        if (skipCnt < 30000) {
          continue;
        } else {
S
Shengliang Guan 已提交
1588
        tscDebug("consumer:%" PRId64 ",skip vgId:%d skip too much reset", tmq->consumerId, pVg->vgId);
L
temp  
Liu Jicong 已提交
1589 1590
        }
#endif
X
Xiaoyu Wang 已提交
1591
      }
L
Liu Jicong 已提交
1592
      atomic_store_32(&pVg->vgSkipCnt, 0);
D
dapan1121 已提交
1593 1594 1595 1596 1597 1598 1599 1600 1601

      SMqPollReq req = {0};
      tmqBuildConsumeReqImpl(&req, tmq, timeout, pTopic, pVg);
      int32_t msgSize = tSerializeSMqPollReq(NULL, 0, &req);
      if (msgSize < 0) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        tsem_post(&tmq->rspSem);
        return -1;
      }
L
Liu Jicong 已提交
1602
      char* msg = taosMemoryCalloc(1, msgSize);
D
dapan1121 已提交
1603 1604 1605 1606 1607
      if (NULL == msg) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        tsem_post(&tmq->rspSem);
        return -1;
      }
L
Liu Jicong 已提交
1608

D
dapan1121 已提交
1609 1610
      if (tSerializeSMqPollReq(msg, msgSize, &req) < 0) {
        taosMemoryFree(msg);
X
Xiaoyu Wang 已提交
1611
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1612
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1613 1614
        return -1;
      }
L
Liu Jicong 已提交
1615

wafwerar's avatar
wafwerar 已提交
1616
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1617
      if (pParam == NULL) {
D
dapan1121 已提交
1618
        taosMemoryFree(msg);
X
Xiaoyu Wang 已提交
1619
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1620
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1621 1622
        return -1;
      }
1623 1624 1625
      pParam->refId = tmq->refId;
      pParam->epoch = tmq->epoch;

L
Liu Jicong 已提交
1626
      pParam->pVg = pVg;
L
Liu Jicong 已提交
1627
      pParam->pTopic = pTopic;
L
Liu Jicong 已提交
1628
      pParam->vgId = pVg->vgId;
L
Liu Jicong 已提交
1629

1630
      SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1631
      if (sendInfo == NULL) {
D
dapan1121 已提交
1632
        taosMemoryFree(msg);
wafwerar's avatar
wafwerar 已提交
1633
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1634
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1635
        tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1636 1637 1638 1639
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
D
dapan1121 已提交
1640 1641
          .pData = msg,
          .len = msgSize,
X
Xiaoyu Wang 已提交
1642 1643
          .handle = NULL,
      };
D
dapan1121 已提交
1644
      sendInfo->requestId = req.reqId;
X
Xiaoyu Wang 已提交
1645
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1646
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1647
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1648
      sendInfo->msgType = TDMT_VND_TMQ_CONSUME;
X
Xiaoyu Wang 已提交
1649 1650

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1651
      /*printf("send poll\n");*/
L
Liu Jicong 已提交
1652

1653
      char offsetFormatBuf[80];
L
Liu Jicong 已提交
1654
      tFormatOffset(offsetFormatBuf, 80, &pVg->currentOffset);
L
Liu Jicong 已提交
1655
      tscDebug("consumer:%" PRId64 ", send poll to %s vgId:%d, epoch %d, req offset:%s, reqId:%" PRIu64,
D
dapan1121 已提交
1656
               tmq->consumerId, pTopic->topicName, pVg->vgId, tmq->epoch, offsetFormatBuf, req.reqId);
S
Shengliang Guan 已提交
1657
      /*printf("send vgId:%d %" PRId64 "\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1658 1659 1660 1661 1662 1663 1664 1665
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

L
Liu Jicong 已提交
1666 1667
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspWrapper* rspWrapper, bool* pReset) {
  if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1668
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1669 1670
    if (rspWrapper->epoch > atomic_load_32(&tmq->epoch)) {
      SMqAskEpRspWrapper* pEpRspWrapper = (SMqAskEpRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1671
      SMqAskEpRsp*        rspMsg = &pEpRspWrapper->msg;
L
Liu Jicong 已提交
1672
      tmqUpdateEp(tmq, rspWrapper->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1673
      /*tmqClearUnhandleMsg(tmq);*/
L
Liu Jicong 已提交
1674
      tDeleteSMqAskEpRsp(rspMsg);
X
Xiaoyu Wang 已提交
1675 1676
      *pReset = true;
    } else {
L
Liu Jicong 已提交
1677
      tmqFreeRspWrapper(rspWrapper);
X
Xiaoyu Wang 已提交
1678 1679 1680 1681 1682 1683 1684 1685
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

L
Liu Jicong 已提交
1686
void* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
X
Xiaoyu Wang 已提交
1687
  while (1) {
L
Liu Jicong 已提交
1688 1689 1690
    SMqRspWrapper* rspWrapper = NULL;
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper == NULL) {
L
Liu Jicong 已提交
1691
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1692
      taosGetQitem(tmq->qall, (void**)&rspWrapper);
L
Liu Jicong 已提交
1693 1694

      if (rspWrapper == NULL) {
L
Liu Jicong 已提交
1695
        /*tscDebug("consumer %" PRId64 " mqueue empty", tmq->consumerId);*/
L
Liu Jicong 已提交
1696 1697
        return NULL;
      }
X
Xiaoyu Wang 已提交
1698 1699
    }

L
Liu Jicong 已提交
1700 1701
    tscDebug("consumer:%" PRId64 " handle rsp %p", tmq->consumerId, rspWrapper);

L
Liu Jicong 已提交
1702 1703 1704 1705 1706
    if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__END_RSP) {
      taosFreeQitem(rspWrapper);
      terrno = TSDB_CODE_TQ_NO_COMMITTED_OFFSET;
      return NULL;
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_RSP) {
L
Liu Jicong 已提交
1707
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
1708
      tscDebug("consumer %" PRId64 " actual process poll rsp", tmq->consumerId);
L
Liu Jicong 已提交
1709
      /*atomic_sub_fetch_32(&tmq->readyRequest, 1);*/
1710
      int32_t consumerEpoch = atomic_load_32(&tmq->epoch);
L
Liu Jicong 已提交
1711
      if (pollRspWrapper->dataRsp.head.epoch == consumerEpoch) {
L
Liu Jicong 已提交
1712
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
S
Shengliang Guan 已提交
1713
        /*printf("vgId:%d, offset %" PRId64 " up to %" PRId64 "\n", pVg->vgId, pVg->currentOffset,
L
Liu Jicong 已提交
1714
         * rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1715
        pVg->currentOffset = pollRspWrapper->dataRsp.rspOffset;
X
Xiaoyu Wang 已提交
1716
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1717
        if (pollRspWrapper->dataRsp.blockNum == 0) {
L
Liu Jicong 已提交
1718 1719
          taosFreeQitem(pollRspWrapper);
          rspWrapper = NULL;
L
temp  
Liu Jicong 已提交
1720 1721
          continue;
        }
L
Liu Jicong 已提交
1722
        // build rsp
L
Liu Jicong 已提交
1723
        SMqRspObj* pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1724
        taosFreeQitem(pollRspWrapper);
L
Liu Jicong 已提交
1725
        return pRsp;
X
Xiaoyu Wang 已提交
1726
      } else {
1727
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d",
L
Liu Jicong 已提交
1728
                 pollRspWrapper->dataRsp.head.epoch, consumerEpoch);
L
Liu Jicong 已提交
1729
        tmqFreeRspWrapper(rspWrapper);
L
Liu Jicong 已提交
1730 1731 1732 1733 1734
        taosFreeQitem(pollRspWrapper);
      }
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_META_RSP) {
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
      int32_t            consumerEpoch = atomic_load_32(&tmq->epoch);
L
Liu Jicong 已提交
1735
      if (pollRspWrapper->metaRsp.head.epoch == consumerEpoch) {
L
Liu Jicong 已提交
1736
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
S
Shengliang Guan 已提交
1737
        /*printf("vgId:%d, offset %" PRId64 " up to %" PRId64 "\n", pVg->vgId, pVg->currentOffset,
L
Liu Jicong 已提交
1738
         * rspMsg->msg.rspOffset);*/
wmmhello's avatar
wmmhello 已提交
1739
        pVg->currentOffset = pollRspWrapper->metaRsp.rspOffset;
L
Liu Jicong 已提交
1740 1741
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // build rsp
L
Liu Jicong 已提交
1742
        SMqMetaRspObj* pRsp = tmqBuildMetaRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1743 1744 1745
        taosFreeQitem(pollRspWrapper);
        return pRsp;
      } else {
1746
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d",
L
Liu Jicong 已提交
1747
                 pollRspWrapper->metaRsp.head.epoch, consumerEpoch);
L
Liu Jicong 已提交
1748
        tmqFreeRspWrapper(rspWrapper);
L
Liu Jicong 已提交
1749
        taosFreeQitem(pollRspWrapper);
X
Xiaoyu Wang 已提交
1750
      }
L
Liu Jicong 已提交
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__TAOSX_RSP) {
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
      /*atomic_sub_fetch_32(&tmq->readyRequest, 1);*/
      int32_t consumerEpoch = atomic_load_32(&tmq->epoch);
      if (pollRspWrapper->taosxRsp.head.epoch == consumerEpoch) {
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
        /*printf("vgId:%d, offset %" PRId64 " up to %" PRId64 "\n", pVg->vgId, pVg->currentOffset,
         * rspMsg->msg.rspOffset);*/
        pVg->currentOffset = pollRspWrapper->taosxRsp.rspOffset;
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        if (pollRspWrapper->taosxRsp.blockNum == 0) {
          taosFreeQitem(pollRspWrapper);
          rspWrapper = NULL;
          continue;
        }
wmmhello's avatar
wmmhello 已提交
1766

L
Liu Jicong 已提交
1767
        // build rsp
wmmhello's avatar
wmmhello 已提交
1768
        void* pRsp = NULL;
L
Liu Jicong 已提交
1769
        if (pollRspWrapper->taosxRsp.createTableNum == 0) {
wmmhello's avatar
wmmhello 已提交
1770
          pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1771
        } else {
wmmhello's avatar
wmmhello 已提交
1772 1773
          pRsp = tmqBuildTaosxRspFromWrapper(pollRspWrapper);
        }
L
Liu Jicong 已提交
1774 1775 1776
        taosFreeQitem(pollRspWrapper);
        return pRsp;
      } else {
L
Liu Jicong 已提交
1777
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d",
L
Liu Jicong 已提交
1778
                 pollRspWrapper->taosxRsp.head.epoch, consumerEpoch);
L
Liu Jicong 已提交
1779
        tmqFreeRspWrapper(rspWrapper);
L
Liu Jicong 已提交
1780 1781
        taosFreeQitem(pollRspWrapper);
      }
X
Xiaoyu Wang 已提交
1782
    } else {
L
fix  
Liu Jicong 已提交
1783
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1784
      bool reset = false;
L
Liu Jicong 已提交
1785 1786
      tmqHandleNoPollRsp(tmq, rspWrapper, &reset);
      taosFreeQitem(rspWrapper);
X
Xiaoyu Wang 已提交
1787
      if (pollIfReset && reset) {
S
Shengliang Guan 已提交
1788
        tscDebug("consumer:%" PRId64 ", reset and repoll", tmq->consumerId);
1789
        tmqPollImpl(tmq, timeout);
X
Xiaoyu Wang 已提交
1790 1791 1792 1793 1794
      }
    }
  }
}

1795
TAOS_RES* tmq_consumer_poll(tmq_t* tmq, int64_t timeout) {
L
Liu Jicong 已提交
1796 1797
  void*   rspObj;
  int64_t startTime = taosGetTimestampMs();
L
Liu Jicong 已提交
1798

L
Liu Jicong 已提交
1799 1800
  tscDebug("consumer:%" PRId64 ", start poll at %" PRId64, tmq->consumerId, startTime);

1801 1802 1803
#if 0
  tmqHandleAllDelayedTask(tmq);
  tmqPollImpl(tmq, timeout);
1804
  rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1805 1806
  if (rspObj) {
    return (TAOS_RES*)rspObj;
L
fix  
Liu Jicong 已提交
1807
  }
1808
#endif
X
Xiaoyu Wang 已提交
1809

1810
  // in no topic status, delayed task also need to be processed
L
Liu Jicong 已提交
1811
  if (atomic_load_8(&tmq->status) == TMQ_CONSUMER_STATUS__INIT) {
1812
    tscDebug("consumer:%" PRId64 ", poll return since consumer status is init", tmq->consumerId);
1813 1814 1815
    return NULL;
  }

L
Liu Jicong 已提交
1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
  if (atomic_load_8(&tmq->status) == TMQ_CONSUMER_STATUS__RECOVER) {
    int32_t retryCnt = 0;
    while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, false)) {
      if (retryCnt++ > 10) {
        return NULL;
      }
      tscDebug("consumer not ready, retry");
      taosMsleep(500);
    }
  }

X
Xiaoyu Wang 已提交
1827
  while (1) {
L
Liu Jicong 已提交
1828
    tmqHandleAllDelayedTask(tmq);
L
Liu Jicong 已提交
1829
    if (tmqPollImpl(tmq, timeout) < 0) {
L
Liu Jicong 已提交
1830
      tscDebug("consumer:%" PRId64 " return since poll err", tmq->consumerId);
L
Liu Jicong 已提交
1831 1832
      /*return NULL;*/
    }
L
Liu Jicong 已提交
1833

1834
    rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1835
    if (rspObj) {
1836
      tscDebug("consumer:%" PRId64 ", return rsp %p", tmq->consumerId, rspObj);
L
Liu Jicong 已提交
1837
      return (TAOS_RES*)rspObj;
L
Liu Jicong 已提交
1838
    } else if (terrno == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
L
Liu Jicong 已提交
1839
      tscDebug("consumer:%" PRId64 ", return null since no committed offset", tmq->consumerId);
L
Liu Jicong 已提交
1840
      return NULL;
X
Xiaoyu Wang 已提交
1841
    }
1842
    if (timeout != -1) {
L
Liu Jicong 已提交
1843 1844 1845 1846 1847
      int64_t currentTime = taosGetTimestampMs();
      int64_t passedTime = currentTime - startTime;
      if (passedTime > timeout) {
        tscDebug("consumer:%" PRId64 ", (epoch %d) timeout, no rsp, start time %" PRId64 ", current time %" PRId64,
                 tmq->consumerId, tmq->epoch, startTime, currentTime);
X
Xiaoyu Wang 已提交
1848 1849
        return NULL;
      }
L
Liu Jicong 已提交
1850 1851 1852 1853
      /*tscInfo("consumer:%" PRId64 ", (epoch %d) wait, start time %" PRId64 ", current time %" PRId64*/
      /*", left time %" PRId64,*/
      /*tmq->consumerId, tmq->epoch, startTime, currentTime, (timeout - passedTime));*/
      tsem_timewait(&tmq->rspSem, (timeout - passedTime));
L
Liu Jicong 已提交
1854 1855
    } else {
      // use tsem_timewait instead of tsem_wait to avoid unexpected stuck
L
Liu Jicong 已提交
1856
      tsem_timewait(&tmq->rspSem, 1000);
X
Xiaoyu Wang 已提交
1857 1858 1859 1860
    }
  }
}

L
Liu Jicong 已提交
1861
int32_t tmq_consumer_close(tmq_t* tmq) {
1862
  if (tmq->status == TMQ_CONSUMER_STATUS__READY) {
L
Liu Jicong 已提交
1863 1864
    int32_t rsp = tmq_commit_sync(tmq, NULL);
    if (rsp != 0) {
L
Liu Jicong 已提交
1865
      return rsp;
1866 1867
    }

L
Liu Jicong 已提交
1868
    int32_t     retryCnt = 0;
1869
    tmq_list_t* lst = tmq_list_new();
L
Liu Jicong 已提交
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
    while (1) {
      rsp = tmq_subscribe(tmq, lst);
      if (rsp != TSDB_CODE_MND_CONSUMER_NOT_READY || retryCnt > 5) {
        break;
      } else {
        retryCnt++;
        taosMsleep(500);
      }
    }

1880
    tmq_list_destroy(lst);
1881

L
Liu Jicong 已提交
1882 1883
    /*return rsp;*/
    return 0;
L
Liu Jicong 已提交
1884
  }
1885
  taosRemoveRef(tmqMgmt.rsetId, tmq->refId);
L
Liu Jicong 已提交
1886
  return 0;
1887
}
L
Liu Jicong 已提交
1888

L
Liu Jicong 已提交
1889 1890
const char* tmq_err2str(int32_t err) {
  if (err == 0) {
L
Liu Jicong 已提交
1891
    return "success";
L
Liu Jicong 已提交
1892
  } else if (err == -1) {
L
Liu Jicong 已提交
1893 1894 1895
    return "fail";
  } else {
    return tstrerror(err);
L
Liu Jicong 已提交
1896 1897
  }
}
L
Liu Jicong 已提交
1898

L
Liu Jicong 已提交
1899 1900 1901 1902
tmq_res_t tmq_get_res_type(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    return TMQ_RES_DATA;
  } else if (TD_RES_TMQ_META(res)) {
wmmhello's avatar
wmmhello 已提交
1903 1904
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    if (pMetaRspObj->metaRsp.resMsgType == TDMT_VND_DELETE) {
1905
      return TMQ_RES_DATA;
wmmhello's avatar
wmmhello 已提交
1906
    }
L
Liu Jicong 已提交
1907
    return TMQ_RES_TABLE_META;
1908 1909
  } else if (TD_RES_TMQ_METADATA(res)) {
    return TMQ_RES_METADATA;
L
Liu Jicong 已提交
1910 1911 1912 1913 1914
  } else {
    return TMQ_RES_INVALID;
  }
}

L
Liu Jicong 已提交
1915
const char* tmq_get_topic_name(TAOS_RES* res) {
L
Liu Jicong 已提交
1916 1917
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
L
Liu Jicong 已提交
1918
    return strchr(pRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1919 1920 1921
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->topic, '.') + 1;
1922 1923 1924
  } else if (TD_RES_TMQ_METADATA(res)) {
    SMqTaosxRspObj* pRspObj = (SMqTaosxRspObj*)res;
    return strchr(pRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1925 1926 1927 1928 1929
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1930 1931 1932 1933
const char* tmq_get_db_name(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return strchr(pRspObj->db, '.') + 1;
L
Liu Jicong 已提交
1934 1935 1936
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->db, '.') + 1;
1937 1938 1939
  } else if (TD_RES_TMQ_METADATA(res)) {
    SMqTaosxRspObj* pRspObj = (SMqTaosxRspObj*)res;
    return strchr(pRspObj->db, '.') + 1;
L
Liu Jicong 已提交
1940 1941 1942 1943 1944
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1945 1946 1947 1948
int32_t tmq_get_vgroup_id(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return pRspObj->vgId;
L
Liu Jicong 已提交
1949 1950 1951
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return pMetaRspObj->vgId;
1952
  } else if (TD_RES_TMQ_METADATA(res)) {
1953 1954
    SMqTaosxRspObj* pRspObj = (SMqTaosxRspObj*)res;
    return pRspObj->vgId;
L
Liu Jicong 已提交
1955 1956 1957 1958
  } else {
    return -1;
  }
}
L
Liu Jicong 已提交
1959 1960 1961 1962 1963 1964 1965 1966

const char* tmq_get_table_name(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    if (!pRspObj->rsp.withTbName || pRspObj->rsp.blockTbName == NULL || pRspObj->resIter < 0 ||
        pRspObj->resIter >= pRspObj->rsp.blockNum) {
      return NULL;
    }
1967
    return (const char*)taosArrayGetP(pRspObj->rsp.blockTbName, pRspObj->resIter);
1968 1969
  } else if (TD_RES_TMQ_METADATA(res)) {
    SMqTaosxRspObj* pRspObj = (SMqTaosxRspObj*)res;
L
Liu Jicong 已提交
1970 1971 1972
    if (!pRspObj->rsp.withTbName || pRspObj->rsp.blockTbName == NULL || pRspObj->resIter < 0 ||
        pRspObj->resIter >= pRspObj->rsp.blockNum) {
      return NULL;
1973
    }
L
Liu Jicong 已提交
1974 1975
    return (const char*)taosArrayGetP(pRspObj->rsp.blockTbName, pRspObj->resIter);
  }
L
Liu Jicong 已提交
1976 1977
  return NULL;
}
1978

L
Liu Jicong 已提交
1979
void tmq_commit_async(tmq_t* tmq, const TAOS_RES* msg, tmq_commit_cb* cb, void* param) {
1980
  //
L
Liu Jicong 已提交
1981
  tmqCommitInner(tmq, msg, 0, 1, cb, param);
L
Liu Jicong 已提交
1982 1983
}

1984 1985
int32_t tmq_commit_sync(tmq_t* tmq, const TAOS_RES* msg) {
  //
L
Liu Jicong 已提交
1986
  return tmqCommitInner(tmq, msg, 0, 0, NULL, NULL);
1987
}