tmq.c 55.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

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

L
Liu Jicong 已提交
27 28 29 30 31 32 33 34
int32_t tmqAskEp(tmq_t* tmq, bool async);

typedef struct {
  int8_t inited;
  tmr_h  timer;
} SMqMgmt;

static SMqMgmt tmqMgmt = {0};
35

L
Liu Jicong 已提交
36 37 38 39 40 41
typedef struct {
  int8_t  tmqRspType;
  int32_t epoch;
} SMqRspWrapper;

typedef struct {
L
Liu Jicong 已提交
42 43 44
  int8_t      tmqRspType;
  int32_t     epoch;
  SMqAskEpRsp msg;
L
Liu Jicong 已提交
45 46
} SMqAskEpRspWrapper;

L
Liu Jicong 已提交
47
struct tmq_list_t {
L
Liu Jicong 已提交
48
  SArray container;
L
Liu Jicong 已提交
49
};
L
Liu Jicong 已提交
50

L
Liu Jicong 已提交
51
struct tmq_conf_t {
52 53 54 55 56 57 58 59 60 61 62
  char     clientId[256];
  char     groupId[TSDB_CGROUP_LEN];
  int8_t   autoCommit;
  int8_t   resetOffset;
  int8_t   withTbName;
  uint16_t port;
  int32_t  autoCommitInterval;
  char*    ip;
  char*    user;
  char*    pass;
  /*char*          db;*/
63
  tmq_commit_cb* commitCb;
L
Liu Jicong 已提交
64
  void*          commitCbUserParam;
L
Liu Jicong 已提交
65 66 67
};

struct tmq_t {
L
Liu Jicong 已提交
68
  // conf
L
Liu Jicong 已提交
69 70
  char           groupId[TSDB_CGROUP_LEN];
  char           clientId[256];
71
  int8_t         withTbName;
L
Liu Jicong 已提交
72
  int8_t         autoCommit;
L
Liu Jicong 已提交
73
  int32_t        autoCommitInterval;
L
Liu Jicong 已提交
74
  int32_t        resetOffsetCfg;
L
Liu Jicong 已提交
75
  int64_t        consumerId;
L
Liu Jicong 已提交
76 77
  tmq_commit_cb* commitCb;
  void*          commitCbUserParam;
L
Liu Jicong 已提交
78 79 80 81

  // status
  int8_t  status;
  int32_t epoch;
L
Liu Jicong 已提交
82 83
#if 0
  int8_t  epStatus;
L
Liu Jicong 已提交
84
  int32_t epSkipCnt;
L
Liu Jicong 已提交
85
#endif
L
Liu Jicong 已提交
86 87
  int64_t pollCnt;

L
Liu Jicong 已提交
88 89 90 91 92
  // timer
  tmr_h hbTimer;
  tmr_h reportTimer;
  tmr_h commitTimer;

L
Liu Jicong 已提交
93 94 95 96
  // connection
  STscObj* pTscObj;

  // container
L
Liu Jicong 已提交
97
  SArray*     clientTopics;  // SArray<SMqClientTopic>
L
Liu Jicong 已提交
98
  STaosQueue* mqueue;        // queue of rsp
L
Liu Jicong 已提交
99
  STaosQall*  qall;
L
Liu Jicong 已提交
100 101 102 103
  STaosQueue* delayedTask;  // delayed task queue for heartbeat and auto commit

  // ctl
  tsem_t rspSem;
L
Liu Jicong 已提交
104 105
};

X
Xiaoyu Wang 已提交
106 107 108 109 110 111 112 113
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
114
  TMQ_CONSUMER_STATUS__NO_TOPIC,
L
Liu Jicong 已提交
115 116
};

L
Liu Jicong 已提交
117 118 119 120 121 122
enum {
  TMQ_DELAYED_TASK__HB = 1,
  TMQ_DELAYED_TASK__REPORT,
  TMQ_DELAYED_TASK__COMMIT,
};

L
Liu Jicong 已提交
123
typedef struct {
124 125 126
  // statistics
  int64_t pollCnt;
  // offset
127
  int64_t committedOffset;
128
  int64_t currentOffset;
L
Liu Jicong 已提交
129
  // connection info
130
  int32_t vgId;
X
Xiaoyu Wang 已提交
131
  int32_t vgStatus;
L
Liu Jicong 已提交
132
  int32_t vgSkipCnt;
133 134 135
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
136
typedef struct {
137
  // subscribe info
L
Liu Jicong 已提交
138
  char* topicName;
L
Liu Jicong 已提交
139
  char  db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
140 141 142

  SArray* vgs;  // SArray<SMqClientVg>

L
Liu Jicong 已提交
143 144
  int8_t         isSchemaAdaptive;
  SSchemaWrapper schema;
145 146
} SMqClientTopic;

L
Liu Jicong 已提交
147 148 149 150 151
typedef struct {
  int8_t          tmqRspType;
  int32_t         epoch;
  SMqClientVg*    vgHandle;
  SMqClientTopic* topicHandle;
L
Liu Jicong 已提交
152 153 154 155
  union {
    SMqDataBlkRsp dataRsp;
    SMqMetaRsp    metaRsp;
  };
L
Liu Jicong 已提交
156 157
} SMqPollRspWrapper;

L
Liu Jicong 已提交
158
typedef struct {
L
Liu Jicong 已提交
159 160 161
  tmq_t*  tmq;
  tsem_t  rspSem;
  int32_t rspErr;
L
Liu Jicong 已提交
162
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
163

L
Liu Jicong 已提交
164
typedef struct {
165
  tmq_t*  tmq;
L
Liu Jicong 已提交
166
  int32_t code;
L
Liu Jicong 已提交
167
  int32_t async;
X
Xiaoyu Wang 已提交
168
  tsem_t  rspSem;
169 170
} SMqAskEpCbParam;

L
Liu Jicong 已提交
171
typedef struct {
L
Liu Jicong 已提交
172 173
  tmq_t*          tmq;
  SMqClientVg*    pVg;
L
Liu Jicong 已提交
174
  SMqClientTopic* pTopic;
L
Liu Jicong 已提交
175
  int32_t         epoch;
L
Liu Jicong 已提交
176
  int32_t         vgId;
L
Liu Jicong 已提交
177
  tsem_t          rspSem;
X
Xiaoyu Wang 已提交
178
} SMqPollCbParam;
179

L
Liu Jicong 已提交
180
typedef struct {
L
Liu Jicong 已提交
181
  tmq_t*         tmq;
L
Liu Jicong 已提交
182 183
  int8_t         async;
  int8_t         automatic;
L
Liu Jicong 已提交
184
  int8_t         freeOffsets;
L
Liu Jicong 已提交
185
  tmq_commit_cb* userCb;
L
Liu Jicong 已提交
186
  tsem_t         rspSem;
L
Liu Jicong 已提交
187
  int32_t        rspErr;
L
Liu Jicong 已提交
188
  SArray*        offsets;
L
Liu Jicong 已提交
189
  void*          userParam;
L
Liu Jicong 已提交
190
} SMqCommitCbParam;
L
Liu Jicong 已提交
191

192 193 194 195 196
typedef struct {
  tmq_t*         tmq;
  int8_t         automatic;
  int8_t         async;
  int8_t         freeOffsets;
L
Liu Jicong 已提交
197 198
  int32_t        waitingRspNum;
  int32_t        totalRspNum;
L
Liu Jicong 已提交
199
  int32_t        rspErr;
200
  tmq_commit_cb* userCb;
L
Liu Jicong 已提交
201 202 203 204
  /*SArray*        successfulOffsets;*/
  /*SArray*        failedOffsets;*/
  void*  userParam;
  tsem_t rspSem;
205 206 207 208 209 210 211
} SMqCommitCbParamSet;

typedef struct {
  SMqCommitCbParamSet* params;
  STqOffset*           pOffset;
} SMqCommitCbParam2;

212
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
213
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
214
  conf->withTbName = false;
L
Liu Jicong 已提交
215
  conf->autoCommit = true;
L
Liu Jicong 已提交
216
  conf->autoCommitInterval = 5000;
X
Xiaoyu Wang 已提交
217
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
218 219 220
  return conf;
}

L
Liu Jicong 已提交
221
void tmq_conf_destroy(tmq_conf_t* conf) {
L
Liu Jicong 已提交
222 223 224 225 226 227
  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 已提交
228 229 230
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
231 232
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
233
    return TMQ_CONF_OK;
234
  }
L
Liu Jicong 已提交
235

236 237
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
238 239
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
240

L
Liu Jicong 已提交
241 242
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
243
      conf->autoCommit = true;
L
Liu Jicong 已提交
244 245
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
246
      conf->autoCommit = false;
L
Liu Jicong 已提交
247 248 249 250
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
251
  }
L
Liu Jicong 已提交
252

L
Liu Jicong 已提交
253 254 255 256 257
  if (strcmp(key, "auto.commit.interval.ms") == 0) {
    conf->autoCommitInterval = atoi(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271
  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 已提交
272

273 274
  if (strcmp(key, "msg.with.table.name") == 0) {
    if (strcmp(value, "true") == 0) {
275
      conf->withTbName = true;
L
Liu Jicong 已提交
276
      return TMQ_CONF_OK;
277
    } else if (strcmp(value, "false") == 0) {
278
      conf->withTbName = false;
L
Liu Jicong 已提交
279
      return TMQ_CONF_OK;
280 281 282 283 284
    } else {
      return TMQ_CONF_INVALID;
    }
  }

L
Liu Jicong 已提交
285
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
286 287 288
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
289
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
290 291 292
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
293
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
294 295 296
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
297
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
298 299 300
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
301
  if (strcmp(key, "td.connect.db") == 0) {
302
    /*conf->db = strdup(value);*/
L
Liu Jicong 已提交
303 304 305
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
306
  return TMQ_CONF_UNKNOWN;
307 308 309
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
310 311
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
312 313
}

L
Liu Jicong 已提交
314 315 316
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
317
  if (taosArrayPush(container, &topic) == NULL) return -1;
318 319 320
  return 0;
}

L
Liu Jicong 已提交
321
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
322
  SArray* container = &list->container;
L
Liu Jicong 已提交
323
  taosArrayDestroyP(container, taosMemoryFree);
L
Liu Jicong 已提交
324 325
}

L
Liu Jicong 已提交
326 327 328 329 330 331 332 333 334 335
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 已提交
336 337 338 339
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

L
Liu Jicong 已提交
340 341
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
342
  pParam->rspErr = code;
L
Liu Jicong 已提交
343 344
  if (pParam->async) {
    if (pParam->automatic && pParam->tmq->commitCb) {
L
Liu Jicong 已提交
345
      pParam->tmq->commitCb(pParam->tmq, pParam->rspErr, pParam->tmq->commitCbUserParam);
L
Liu Jicong 已提交
346
    } else if (!pParam->automatic && pParam->userCb) {
L
Liu Jicong 已提交
347
      pParam->userCb(pParam->tmq, pParam->rspErr, pParam->userParam);
L
Liu Jicong 已提交
348 349
    }

L
Liu Jicong 已提交
350
    if (pParam->freeOffsets) {
L
Liu Jicong 已提交
351 352 353 354 355 356 357 358 359 360
      taosArrayDestroy(pParam->offsets);
    }

    taosMemoryFree(pParam);
  } else {
    tsem_post(&pParam->rspSem);
  }
  return 0;
}

361 362 363 364
int32_t tmqCommitCb2(void* param, const SDataBuf* pBuf, int32_t code) {
  SMqCommitCbParam2*   pParam = (SMqCommitCbParam2*)param;
  SMqCommitCbParamSet* pParamSet = (SMqCommitCbParamSet*)pParam->params;
  // push into array
L
Liu Jicong 已提交
365
#if 0
366 367 368 369 370
  if (code == 0) {
    taosArrayPush(pParamSet->failedOffsets, &pParam->pOffset);
  } else {
    taosArrayPush(pParamSet->successfulOffsets, &pParam->pOffset);
  }
L
Liu Jicong 已提交
371
#endif
L
Liu Jicong 已提交
372

L
Liu Jicong 已提交
373 374 375
  /*tscDebug("receive offset commit cb of %s on vg %d, offset is %ld", pParam->pOffset->subKey, pParam->->vgId,
   * pOffset->version);*/

376
  // count down waiting rsp
L
Liu Jicong 已提交
377
  int32_t waitingRspNum = atomic_sub_fetch_32(&pParamSet->waitingRspNum, 1);
378 379 380 381 382 383 384
  ASSERT(waitingRspNum >= 0);

  if (waitingRspNum == 0) {
    // if no more waiting rsp
    if (pParamSet->async) {
      // call async cb func
      if (pParamSet->automatic && pParamSet->tmq->commitCb) {
L
Liu Jicong 已提交
385
        pParamSet->tmq->commitCb(pParamSet->tmq, pParamSet->rspErr, pParamSet->tmq->commitCbUserParam);
386 387
      } else if (!pParamSet->automatic && pParamSet->userCb) {
        // sem post
L
Liu Jicong 已提交
388
        pParamSet->userCb(pParamSet->tmq, pParamSet->rspErr, pParamSet->userParam);
389
      }
L
Liu Jicong 已提交
390 391
    } else {
      tsem_post(&pParamSet->rspSem);
392 393
    }

L
Liu Jicong 已提交
394
#if 0
395 396
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
L
Liu Jicong 已提交
397
#endif
398 399 400 401
  }
  return 0;
}

L
Liu Jicong 已提交
402 403
int32_t tmqCommitInner2(tmq_t* tmq, const TAOS_RES* msg, int8_t automatic, int8_t async, tmq_commit_cb* userCb,
                        void* userParam) {
404 405
  int32_t code = -1;

L
Liu Jicong 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
  if (msg != NULL) {
    SMqRspObj* pRspObj = (SMqRspObj*)msg;
    if (!TD_RES_TMQ(pRspObj)) {
      return TSDB_CODE_TMQ_INVALID_MSG;
    }

    SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
    if (pParamSet == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      return -1;
    }
    pParamSet->tmq = tmq;
    pParamSet->automatic = automatic;
    pParamSet->async = async;
    pParamSet->freeOffsets = 1;
    pParamSet->userCb = userCb;
    pParamSet->userParam = userParam;
    tsem_init(&pParamSet->rspSem, 0, 0);

    for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
      SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
      if (strcmp(pTopic->topicName, pRspObj->topic) == 0) {
        for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
          SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
          if (pVg->vgId == pRspObj->vgId) {
            if (pVg->currentOffset < 0 || pVg->committedOffset == pVg->currentOffset) {
              tscDebug("consumer %ld skip commit for topic %s vg %d, current offset is %ld, committed offset is %ld",
                       tmq->consumerId, pTopic->topicName, pVg->vgId, pVg->currentOffset, pVg->committedOffset);

              return 0;
            }

            STqOffset* pOffset = taosMemoryCalloc(1, sizeof(STqOffset));
            if (pOffset == NULL) {
              terrno = TSDB_CODE_OUT_OF_MEMORY;
              return -1;
            }
            pOffset->type = TMQ_OFFSET__LOG;
            pOffset->version = pVg->currentOffset;

            int32_t groupLen = strlen(tmq->groupId);
            memcpy(pOffset->subKey, tmq->groupId, groupLen);
            pOffset->subKey[groupLen] = TMQ_SEPARATOR;
            strcpy(pOffset->subKey + groupLen + 1, pTopic->topicName);

            int32_t len;
            int32_t code;
            tEncodeSize(tEncodeSTqOffset, pOffset, len, code);
            if (code < 0) {
              ASSERT(0);
            }
            void* buf = taosMemoryCalloc(1, sizeof(SMsgHead) + len);
            ((SMsgHead*)buf)->vgId = htonl(pVg->vgId);

            void* abuf = POINTER_SHIFT(buf, sizeof(SMsgHead));

            SEncoder encoder;
            tEncoderInit(&encoder, abuf, len);
            tEncodeSTqOffset(&encoder, pOffset);

            // build param
            SMqCommitCbParam2* pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam2));
            pParam->params = pParamSet;
            pParam->pOffset = pOffset;

            // build send info
            SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
            if (pMsgSendInfo == NULL) {
              // TODO
              continue;
            }
            pMsgSendInfo->msgInfo = (SDataBuf){
                .pData = buf,
                .len = sizeof(SMsgHead) + len,
                .handle = NULL,
            };

            tscDebug("consumer %ld commit offset of %s on vg %d, offset is %ld", tmq->consumerId, pOffset->subKey,
                     pVg->vgId, pOffset->version);

            // TODO: put into cb
            pVg->committedOffset = pVg->currentOffset;

            pMsgSendInfo->requestId = generateRequestId();
            pMsgSendInfo->requestObjRefId = 0;
            pMsgSendInfo->param = pParam;
            pMsgSendInfo->fp = tmqCommitCb2;
            pMsgSendInfo->msgType = TDMT_VND_MQ_COMMIT_OFFSET;
            // send msg

            int64_t transporterId = 0;
            asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, pMsgSendInfo);
            pParamSet->waitingRspNum++;
            pParamSet->totalRspNum++;
          }
        }
      }
    }
    if (pParamSet->totalRspNum == 0) {
      tsem_destroy(&pParamSet->rspSem);
      taosMemoryFree(pParamSet);
      return 0;
    }

    if (!async) {
      tsem_wait(&pParamSet->rspSem);
      code = pParamSet->rspErr;
      tsem_destroy(&pParamSet->rspSem);
    } else {
      code = 0;
    }

    if (code != 0 && async) {
      if (automatic) {
        tmq->commitCb(tmq, code, tmq->commitCbUserParam);
      } else {
        userCb(tmq, code, userParam);
      }
    }
    return 0;
  }

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
  SMqCommitCbParamSet* pParamSet = taosMemoryCalloc(1, sizeof(SMqCommitCbParamSet));
  if (pParamSet == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return -1;
  }
  pParamSet->tmq = tmq;
  pParamSet->automatic = automatic;
  pParamSet->async = async;
  pParamSet->freeOffsets = 1;
  pParamSet->userCb = userCb;
  pParamSet->userParam = userParam;
  tsem_init(&pParamSet->rspSem, 0, 0);

  for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
543 544 545 546

    tscDebug("consumer %ld begin commit for topic %s, vgNum %d", tmq->consumerId, pTopic->topicName,
             (int32_t)taosArrayGetSize(pTopic->vgs));

547
    for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
L
Liu Jicong 已提交
548 549 550 551 552 553 554 555 556
      SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);

      tscDebug("consumer %ld begin commit for topic %s, vgId %d", tmq->consumerId, pTopic->topicName, pVg->vgId);

      /*if (pVg->currentOffset < 0) {*/
      if (pVg->currentOffset < 0 || pVg->committedOffset == pVg->currentOffset) {
        tscDebug("consumer %ld skip commit for topic %s vg %d, current offset is %ld, committed offset is %ld",
                 tmq->consumerId, pTopic->topicName, pVg->vgId, pVg->currentOffset, pVg->committedOffset);

L
Liu Jicong 已提交
557 558 559
        continue;
      }
      STqOffset* pOffset = taosMemoryCalloc(1, sizeof(STqOffset));
560 561 562 563
      if (pOffset == NULL) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        return -1;
      }
L
Liu Jicong 已提交
564 565
      pOffset->type = TMQ_OFFSET__LOG;
      pOffset->version = pVg->currentOffset;
L
Liu Jicong 已提交
566 567 568 569 570 571

      int32_t groupLen = strlen(tmq->groupId);
      memcpy(pOffset->subKey, tmq->groupId, groupLen);
      pOffset->subKey[groupLen] = TMQ_SEPARATOR;
      strcpy(pOffset->subKey + groupLen + 1, pTopic->topicName);

572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
      int32_t len;
      int32_t code;
      tEncodeSize(tEncodeSTqOffset, pOffset, len, code);
      if (code < 0) {
        ASSERT(0);
      }
      void* buf = taosMemoryCalloc(1, sizeof(SMsgHead) + len);
      ((SMsgHead*)buf)->vgId = htonl(pVg->vgId);

      void* abuf = POINTER_SHIFT(buf, sizeof(SMsgHead));

      SEncoder encoder;
      tEncoderInit(&encoder, abuf, len);
      tEncodeSTqOffset(&encoder, pOffset);

      // build param
      SMqCommitCbParam2* pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam2));
      pParam->params = pParamSet;
      pParam->pOffset = pOffset;

      // build send info
      SMsgSendInfo* pMsgSendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
      if (pMsgSendInfo == NULL) {
        // TODO
        continue;
      }
      pMsgSendInfo->msgInfo = (SDataBuf){
          .pData = buf,
L
Liu Jicong 已提交
600
          .len = sizeof(SMsgHead) + len,
601 602 603
          .handle = NULL,
      };

L
Liu Jicong 已提交
604 605 606
      tscDebug("consumer %ld commit offset of %s on vg %d, offset is %ld", tmq->consumerId, pOffset->subKey, pVg->vgId,
               pOffset->version);

L
Liu Jicong 已提交
607 608 609
      // TODO: put into cb
      pVg->committedOffset = pVg->currentOffset;

610 611 612 613
      pMsgSendInfo->requestId = generateRequestId();
      pMsgSendInfo->requestObjRefId = 0;
      pMsgSendInfo->param = pParam;
      pMsgSendInfo->fp = tmqCommitCb2;
L
Liu Jicong 已提交
614
      pMsgSendInfo->msgType = TDMT_VND_MQ_COMMIT_OFFSET;
615 616 617
      // send msg

      int64_t transporterId = 0;
L
Liu Jicong 已提交
618
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, pMsgSendInfo);
L
Liu Jicong 已提交
619 620
      pParamSet->waitingRspNum++;
      pParamSet->totalRspNum++;
621 622 623
    }
  }

L
Liu Jicong 已提交
624 625 626 627 628 629
  if (pParamSet->totalRspNum == 0) {
    tsem_destroy(&pParamSet->rspSem);
    taosMemoryFree(pParamSet);
    return 0;
  }

630 631 632 633 634 635 636 637 638 639
  if (!async) {
    tsem_wait(&pParamSet->rspSem);
    code = pParamSet->rspErr;
    tsem_destroy(&pParamSet->rspSem);
  } else {
    code = 0;
  }

  if (code != 0 && async) {
    if (automatic) {
L
Liu Jicong 已提交
640
      tmq->commitCb(tmq, code, tmq->commitCbUserParam);
641
    } else {
L
Liu Jicong 已提交
642
      userCb(tmq, code, userParam);
643 644 645
    }
  }

L
Liu Jicong 已提交
646
#if 0
647 648 649 650
  if (!async) {
    taosArrayDestroyP(pParamSet->successfulOffsets, taosMemoryFree);
    taosArrayDestroyP(pParamSet->failedOffsets, taosMemoryFree);
  }
L
Liu Jicong 已提交
651
#endif
652 653 654 655

  return 0;
}

L
Liu Jicong 已提交
656 657
#if 0
int32_t tmqCommitInner(tmq_t* tmq, const TAOS_RES* msg, int8_t automatic, int8_t async,
L
Liu Jicong 已提交
658 659 660 661 662 663
                       tmq_commit_cb* userCb, void* userParam) {
  SMqCMCommitOffsetReq req;
  SArray*              pOffsets = NULL;
  void*                buf = NULL;
  SMqCommitCbParam*    pParam = NULL;
  SMsgSendInfo*        sendInfo = NULL;
L
Liu Jicong 已提交
664 665
  int8_t               freeOffsets;
  int32_t              code = -1;
L
Liu Jicong 已提交
666

L
Liu Jicong 已提交
667
  if (msg == NULL) {
L
Liu Jicong 已提交
668
    freeOffsets = 1;
L
Liu Jicong 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681 682
    pOffsets = taosArrayInit(0, sizeof(SMqOffset));
    for (int32_t i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
      SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
      for (int32_t j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
        SMqClientVg* pVg = taosArrayGet(pTopic->vgs, j);
        SMqOffset    offset;
        tstrncpy(offset.topicName, pTopic->topicName, TSDB_TOPIC_FNAME_LEN);
        tstrncpy(offset.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
        offset.vgId = pVg->vgId;
        offset.offset = pVg->currentOffset;
        taosArrayPush(pOffsets, &offset);
      }
    }
  } else {
L
Liu Jicong 已提交
683
    freeOffsets = 0;
L
Liu Jicong 已提交
684
    pOffsets = (SArray*)&msg->container;
L
Liu Jicong 已提交
685 686 687 688 689
  }

  req.num = (int32_t)pOffsets->size;
  req.offsets = pOffsets->pData;

L
Liu Jicong 已提交
690 691 692 693
  SEncoder encoder;

  tEncoderInit(&encoder, NULL, 0);
  code = tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
694 695 696
  if (code < 0) {
    goto END;
  }
L
Liu Jicong 已提交
697
  int32_t tlen = encoder.pos;
L
Liu Jicong 已提交
698 699
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) {
L
Liu Jicong 已提交
700
    tEncoderClear(&encoder);
L
Liu Jicong 已提交
701 702
    goto END;
  }
L
Liu Jicong 已提交
703 704
  tEncoderClear(&encoder);

L
Liu Jicong 已提交
705 706 707 708 709 710 711 712 713 714 715 716
  tEncoderInit(&encoder, buf, tlen);
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
  tEncoderClear(&encoder);

  pParam = taosMemoryCalloc(1, sizeof(SMqCommitCbParam));
  if (pParam == NULL) {
    goto END;
  }
  pParam->tmq = tmq;
  pParam->automatic = automatic;
  pParam->async = async;
  pParam->offsets = pOffsets;
L
Liu Jicong 已提交
717
  pParam->freeOffsets = freeOffsets;
L
Liu Jicong 已提交
718 719 720 721
  pParam->userCb = userCb;
  pParam->userParam = userParam;
  if (!async) tsem_init(&pParam->rspSem, 0, 0);

722
  sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
  if (sendInfo == NULL) goto END;
  sendInfo->msgInfo = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
  sendInfo->msgType = TDMT_MND_MQ_COMMIT_OFFSET;

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

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

  if (!async) {
    tsem_wait(&pParam->rspSem);
    code = pParam->rspErr;
    tsem_destroy(&pParam->rspSem);
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
746 747
  } else {
    code = 0;
L
Liu Jicong 已提交
748 749 750 751 752 753 754
  }

  // avoid double free if msg is sent
  buf = NULL;

END:
  if (buf) taosMemoryFree(buf);
L
Liu Jicong 已提交
755 756
  /*if (pParam) taosMemoryFree(pParam);*/
  /*if (sendInfo) taosMemoryFree(sendInfo);*/
L
Liu Jicong 已提交
757 758 759

  if (code != 0 && async) {
    if (automatic) {
L
Liu Jicong 已提交
760
      tmq->commitCb(tmq, code, (tmq_topic_vgroup_list_t*)pOffsets, tmq->commitCbUserParam);
L
Liu Jicong 已提交
761
    } else {
L
Liu Jicong 已提交
762
      userCb(tmq, code, (tmq_topic_vgroup_list_t*)pOffsets, userParam);
L
Liu Jicong 已提交
763 764 765
    }
  }

L
Liu Jicong 已提交
766
  if (!async && freeOffsets) {
L
Liu Jicong 已提交
767 768 769 770
    taosArrayDestroy(pOffsets);
  }
  return code;
}
L
Liu Jicong 已提交
771
#endif
L
Liu Jicong 已提交
772

L
Liu Jicong 已提交
773 774
void tmqAssignDelayedHbTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
775
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
776 777
  *pTaskType = TMQ_DELAYED_TASK__HB;
  taosWriteQitem(tmq->delayedTask, pTaskType);
778
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
779 780 781 782
}

void tmqAssignDelayedCommitTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
783
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
784 785
  *pTaskType = TMQ_DELAYED_TASK__COMMIT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
786
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
787 788 789 790
}

void tmqAssignDelayedReportTask(void* param, void* tmrId) {
  tmq_t*  tmq = (tmq_t*)param;
791
  int8_t* pTaskType = taosAllocateQitem(sizeof(int8_t), DEF_QITEM);
L
Liu Jicong 已提交
792 793
  *pTaskType = TMQ_DELAYED_TASK__REPORT;
  taosWriteQitem(tmq->delayedTask, pTaskType);
794
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
795 796 797 798 799 800 801 802 803 804 805
}

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;

    if (*pTaskType == TMQ_DELAYED_TASK__HB) {
L
Liu Jicong 已提交
806
      tmqAskEp(tmq, true);
L
Liu Jicong 已提交
807 808
      taosTmrReset(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer, &tmq->hbTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__COMMIT) {
L
Liu Jicong 已提交
809
      tmqCommitInner2(tmq, NULL, 1, 1, tmq->commitCb, tmq->commitCbUserParam);
L
Liu Jicong 已提交
810 811 812 813 814
      taosTmrReset(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer, &tmq->commitTimer);
    } else if (*pTaskType == TMQ_DELAYED_TASK__REPORT) {
    } else {
      ASSERT(0);
    }
L
Liu Jicong 已提交
815
    taosFreeQitem(pTaskType);
L
Liu Jicong 已提交
816 817 818 819 820
  }
  taosFreeQall(qall);
  return 0;
}

L
Liu Jicong 已提交
821
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
822
  SMqRspWrapper* msg = NULL;
L
Liu Jicong 已提交
823 824 825 826 827 828 829 830
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

L
fix  
Liu Jicong 已提交
831
  msg = NULL;
L
Liu Jicong 已提交
832 833 834 835 836 837 838 839 840 841
  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }
}

L
Liu Jicong 已提交
842 843 844
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
L
Liu Jicong 已提交
845
  /*tmq_t* tmq = pParam->tmq;*/
L
Liu Jicong 已提交
846 847 848
  tsem_post(&pParam->rspSem);
  return 0;
}
849

L
Liu Jicong 已提交
850
int32_t tmq_subscription(tmq_t* tmq, tmq_list_t** topics) {
X
Xiaoyu Wang 已提交
851 852 853 854
  if (*topics == NULL) {
    *topics = tmq_list_new();
  }
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
L
Liu Jicong 已提交
855
    SMqClientTopic* topic = taosArrayGet(tmq->clientTopics, i);
L
Liu Jicong 已提交
856
    tmq_list_append(*topics, strchr(topic->topicName, '.') + 1);
X
Xiaoyu Wang 已提交
857
  }
L
Liu Jicong 已提交
858
  return 0;
X
Xiaoyu Wang 已提交
859 860
}

L
Liu Jicong 已提交
861 862 863
int32_t tmq_unsubscribe(tmq_t* tmq) {
  tmq_list_t* lst = tmq_list_new();
  int32_t     rsp = tmq_subscribe(tmq, lst);
L
Liu Jicong 已提交
864 865
  tmq_list_destroy(lst);
  return rsp;
X
Xiaoyu Wang 已提交
866 867
}

L
Liu Jicong 已提交
868
#if 0
869
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
870
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
871 872 873 874 875 876
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
877
  pTmq->epoch = 0;
L
fix txn  
Liu Jicong 已提交
878
  pTmq->epStatus = 0;
L
temp  
Liu Jicong 已提交
879
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
880
  // set conf
881 882
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
883
  pTmq->autoCommit = conf->autoCommit;
884
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
885
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
886

L
Liu Jicong 已提交
887 888 889 890 891 892 893 894 895 896
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();

L
Liu Jicong 已提交
897 898
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
899 900
  return pTmq;
}
L
Liu Jicong 已提交
901
#endif
L
Liu Jicong 已提交
902

L
Liu Jicong 已提交
903
tmq_t* tmq_consumer_new(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
L
Liu Jicong 已提交
904 905 906 907 908 909 910 911 912 913 914
  // 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;
    }
  }

L
Liu Jicong 已提交
915 916 917 918
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
919

L
Liu Jicong 已提交
920 921 922 923 924
  const char* user = conf->user == NULL ? TSDB_DEFAULT_USER : conf->user;
  const char* pass = conf->pass == NULL ? TSDB_DEFAULT_PASS : conf->pass;

  ASSERT(user);
  ASSERT(pass);
L
Liu Jicong 已提交
925
  ASSERT(conf->groupId[0]);
L
Liu Jicong 已提交
926

L
Liu Jicong 已提交
927 928 929 930 931 932 933 934
  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) {
    goto FAIL;
  }
L
Liu Jicong 已提交
935

L
Liu Jicong 已提交
936 937
  // init status
  pTmq->status = TMQ_CONSUMER_STATUS__INIT;
L
Liu Jicong 已提交
938 939
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
L
Liu Jicong 已提交
940 941
  /*pTmq->epStatus = 0;*/
  /*pTmq->epSkipCnt = 0;*/
L
Liu Jicong 已提交
942

L
Liu Jicong 已提交
943 944 945
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
946
  pTmq->withTbName = conf->withTbName;
L
Liu Jicong 已提交
947
  pTmq->autoCommit = conf->autoCommit;
L
Liu Jicong 已提交
948
  pTmq->autoCommitInterval = conf->autoCommitInterval;
L
Liu Jicong 已提交
949 950
  pTmq->commitCb = conf->commitCb;
  pTmq->commitCbUserParam = conf->commitCbUserParam;
L
Liu Jicong 已提交
951 952
  pTmq->resetOffsetCfg = conf->resetOffset;

L
Liu Jicong 已提交
953
  // assign consumerId
L
Liu Jicong 已提交
954
  pTmq->consumerId = tGenIdPI64();
X
Xiaoyu Wang 已提交
955

L
Liu Jicong 已提交
956 957 958 959
  // init semaphore
  if (tsem_init(&pTmq->rspSem, 0, 0) != 0) {
    goto FAIL;
  }
L
Liu Jicong 已提交
960

L
Liu Jicong 已提交
961 962 963 964 965 966
  // init connection
  pTmq->pTscObj = taos_connect_internal(conf->ip, user, pass, NULL, NULL, conf->port, CONN_TYPE__TMQ);
  if (pTmq->pTscObj == NULL) {
    tsem_destroy(&pTmq->rspSem);
    goto FAIL;
  }
L
Liu Jicong 已提交
967

968
  return pTmq;
L
Liu Jicong 已提交
969 970 971 972 973 974 975 976

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;
977 978
}

L
Liu Jicong 已提交
979 980
#if 0
int32_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* offsets, int32_t async) {
L
Liu Jicong 已提交
981
  return tmqCommitInner2(tmq, offsets, 0, async, tmq->commitCb, tmq->commitCbUserParam);
L
Liu Jicong 已提交
982
}
L
Liu Jicong 已提交
983
#endif
L
Liu Jicong 已提交
984

L
Liu Jicong 已提交
985
int32_t tmq_subscribe(tmq_t* tmq, const tmq_list_t* topic_list) {
L
Liu Jicong 已提交
986 987 988 989 990
  const SArray*   container = &topic_list->container;
  int32_t         sz = taosArrayGetSize(container);
  void*           buf = NULL;
  SCMSubscribeReq req = {0};
  int32_t         code = -1;
991 992

  req.consumerId = tmq->consumerId;
L
Liu Jicong 已提交
993
  tstrncpy(req.cgroup, tmq->groupId, TSDB_CGROUP_LEN);
994
  req.topicNames = taosArrayInit(sz, sizeof(void*));
L
Liu Jicong 已提交
995
  if (req.topicNames == NULL) goto FAIL;
996

L
Liu Jicong 已提交
997 998
  for (int32_t i = 0; i < sz; i++) {
    char* topic = taosArrayGetP(container, i);
999 1000

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

L
Liu Jicong 已提交
1003 1004 1005
    char* topicFName = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
    if (topicFName == NULL) {
      goto FAIL;
1006
    }
L
Liu Jicong 已提交
1007
    tNameExtractFullName(&name, topicFName);
1008

L
Liu Jicong 已提交
1009 1010 1011
    tscDebug("subscribe topic: %s", topicFName);

    taosArrayPush(req.topicNames, &topicFName);
1012 1013
  }

L
Liu Jicong 已提交
1014 1015 1016 1017
  int32_t tlen = tSerializeSCMSubscribeReq(NULL, &req);
  buf = taosMemoryMalloc(tlen);
  if (buf == NULL) goto FAIL;

1018 1019 1020
  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);

1021
  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1022
  if (sendInfo == NULL) goto FAIL;
1023

X
Xiaoyu Wang 已提交
1024
  SMqSubscribeCbParam param = {
L
Liu Jicong 已提交
1025
      .rspErr = 0,
X
Xiaoyu Wang 已提交
1026 1027
      .tmq = tmq,
  };
L
Liu Jicong 已提交
1028

L
Liu Jicong 已提交
1029 1030 1031
  if (tsem_init(&param.rspSem, 0, 0) != 0) goto FAIL;

  sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1032 1033 1034 1035
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
1036

L
Liu Jicong 已提交
1037 1038
  sendInfo->requestId = generateRequestId();
  sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1039 1040
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
L
Liu Jicong 已提交
1041 1042
  sendInfo->msgType = TDMT_MND_SUBSCRIBE;

1043 1044 1045 1046 1047
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
1048 1049 1050
  // avoid double free if msg is sent
  buf = NULL;

L
Liu Jicong 已提交
1051 1052
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
1053

L
Liu Jicong 已提交
1054 1055 1056
  code = param.rspErr;
  if (code != 0) goto FAIL;

L
Liu Jicong 已提交
1057
  while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, false)) {
L
fix  
Liu Jicong 已提交
1058
    tscDebug("consumer not ready, retry");
L
Liu Jicong 已提交
1059 1060
    taosMsleep(500);
  }
1061

L
Liu Jicong 已提交
1062
  // init hb timer
1063 1064 1065
  if (tmq->hbTimer == NULL) {
    tmq->hbTimer = taosTmrStart(tmqAssignDelayedHbTask, 1000, tmq, tmqMgmt.timer);
  }
L
Liu Jicong 已提交
1066 1067

  // init auto commit timer
1068
  if (tmq->autoCommit && tmq->commitTimer == NULL) {
L
Liu Jicong 已提交
1069 1070 1071
    tmq->commitTimer = taosTmrStart(tmqAssignDelayedCommitTask, tmq->autoCommitInterval, tmq, tmqMgmt.timer);
  }

L
Liu Jicong 已提交
1072 1073 1074
  code = 0;
FAIL:
  if (req.topicNames != NULL) taosArrayDestroyP(req.topicNames, taosMemoryFree);
L
Liu Jicong 已提交
1075
  if (code != 0 && buf) {
L
Liu Jicong 已提交
1076 1077 1078
    taosMemoryFree(buf);
  }
  return code;
1079 1080
}

L
Liu Jicong 已提交
1081
void tmq_conf_set_auto_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb, void* param) {
L
Liu Jicong 已提交
1082
  //
1083
  conf->commitCb = cb;
L
Liu Jicong 已提交
1084
  conf->commitCbUserParam = param;
L
Liu Jicong 已提交
1085
}
1086

L
Liu Jicong 已提交
1087
#if 0
L
Liu Jicong 已提交
1088 1089
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
1090
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1091 1092
  return pRsp->skipLogNum;
}
L
Liu Jicong 已提交
1093
#endif
L
Liu Jicong 已提交
1094 1095

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
X
Xiaoyu Wang 已提交
1096 1097
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
L
Liu Jicong 已提交
1098
  SMqClientTopic* pTopic = pParam->pTopic;
X
Xiaoyu Wang 已提交
1099
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
1100 1101 1102
  int32_t         vgId = pParam->vgId;
  int32_t         epoch = pParam->epoch;
  taosMemoryFree(pParam);
L
Liu Jicong 已提交
1103
  if (code != 0) {
L
Liu Jicong 已提交
1104 1105
    tscWarn("msg discard from vg %d, epoch %d, code:%x", vgId, epoch, code);
    if (pMsg->pData) taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
    if (code == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
      SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
      if (pRspWrapper == NULL) {
        taosMemoryFree(pMsg->pData);
        tscWarn("msg discard from vg %d, epoch %d since out of memory", vgId, epoch);
        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 已提交
1119
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1120 1121
  }

X
Xiaoyu Wang 已提交
1122 1123 1124
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
Liu Jicong 已提交
1125
    // do not write into queue since updating epoch reset
L
Liu Jicong 已提交
1126
    tscWarn("msg discard from vg %d since from earlier epoch, rsp epoch %d, current epoch %d", vgId, msgEpoch,
L
Liu Jicong 已提交
1127
            tmqEpoch);
1128
    tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1129
    taosMemoryFree(pMsg->pData);
X
Xiaoyu Wang 已提交
1130 1131 1132 1133
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
L
Liu Jicong 已提交
1134
    tscWarn("mismatch rsp from vg %d, epoch %d, current epoch %d", vgId, msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
1135 1136
  }

L
Liu Jicong 已提交
1137 1138 1139 1140 1141
  // handle meta rsp
  int8_t rspType = ((SMqRspHead*)pMsg->pData)->mqMsgType;
  if (rspType == TMQ_MSG_TYPE__POLL_META_RSP) {
  }

1142
  SMqPollRspWrapper* pRspWrapper = taosAllocateQitem(sizeof(SMqPollRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1143
  if (pRspWrapper == NULL) {
L
Liu Jicong 已提交
1144 1145
    taosMemoryFree(pMsg->pData);
    tscWarn("msg discard from vg %d, epoch %d since out of memory", vgId, epoch);
L
fix txn  
Liu Jicong 已提交
1146
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
1147
  }
L
Liu Jicong 已提交
1148

L
Liu Jicong 已提交
1149
  pRspWrapper->tmqRspType = rspType;
L
Liu Jicong 已提交
1150 1151
  pRspWrapper->vgHandle = pVg;
  pRspWrapper->topicHandle = pTopic;
L
Liu Jicong 已提交
1152

L
Liu Jicong 已提交
1153 1154 1155 1156 1157 1158 1159 1160
  memcpy(&pRspWrapper->dataRsp, pMsg->pData, sizeof(SMqRspHead));

  if (rspType == TMQ_MSG_TYPE__POLL_RSP) {
    tDecodeSMqDataBlkRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRspWrapper->dataRsp);
  } else {
    ASSERT(rspType == TMQ_MSG_TYPE__POLL_META_RSP);
    tDecodeSMqMetaRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRspWrapper->metaRsp);
  }
L
Liu Jicong 已提交
1161

L
Liu Jicong 已提交
1162
  taosMemoryFree(pMsg->pData);
L
Liu Jicong 已提交
1163

L
Liu Jicong 已提交
1164
  tscDebug("consumer %ld recv poll: vg %d, req offset %ld, rsp offset %ld", tmq->consumerId, pVg->vgId,
L
Liu Jicong 已提交
1165
           pRspWrapper->dataRsp.reqOffset, pRspWrapper->dataRsp.rspOffset);
L
fix  
Liu Jicong 已提交
1166

L
Liu Jicong 已提交
1167
  taosWriteQitem(tmq->mqueue, pRspWrapper);
1168
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1169

L
Liu Jicong 已提交
1170
  return 0;
L
fix txn  
Liu Jicong 已提交
1171
CREATE_MSG_FAIL:
L
Liu Jicong 已提交
1172
  if (epoch == tmq->epoch) {
L
Liu Jicong 已提交
1173 1174
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
1175
  tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1176
  return -1;
1177 1178
}

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
bool tmqUpdateEp2(tmq_t* tmq, int32_t epoch, SMqAskEpRsp* pRsp) {
  bool set = false;

  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
  tscDebug("consumer %ld update ep epoch %d to epoch %d, topic num: %d", tmq->consumerId, tmq->epoch, epoch,
           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);
      tscDebug("consumer %ld new vg num: %d", tmq->consumerId, vgNumCur);
      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 已提交
1207 1208
        tscDebug("consumer %ld epoch %d vg %d vgKey is %s, offset is %ld", tmq->consumerId, epoch, pVgCur->vgId, vgKey,
                 pVgCur->currentOffset);
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
        taosHashPut(pHash, vgKey, strlen(vgKey), &pVgCur->currentOffset, sizeof(int64_t));
      }
    }
  }

  for (int32_t i = 0; i < topicNumGet; i++) {
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
    topic.schema = pTopicEp->schema;
    topic.topicName = strdup(pTopicEp->topic);
    tstrncpy(topic.db, pTopicEp->db, TSDB_DB_FNAME_LEN);

    tscDebug("consumer %ld update topic: %s", tmq->consumerId, topic.topicName);

    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);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = tmq->resetOffsetCfg;
      if (pOffset != NULL) {
        offset = *pOffset;
      }

L
Liu Jicong 已提交
1234 1235
      tscDebug("consumer %ld(epoch %d) offset of vg %d updated to %ld, vgKey is %s", tmq->consumerId, epoch,
               pVgEp->vgId, offset, vgKey);
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
      SMqClientVg clientVg = {
          .pollCnt = 0,
          .currentOffset = offset,
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
          .vgSkipCnt = 0,
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
    taosArrayPush(newTopics, &topic);
  }
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
  taosHashCleanup(pHash);
  tmq->clientTopics = newTopics;

  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);

  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
1262
#if 1
L
Liu Jicong 已提交
1263
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqAskEpRsp* pRsp) {
L
Liu Jicong 已提交
1264
  /*printf("call update ep %d\n", epoch);*/
X
Xiaoyu Wang 已提交
1265
  bool    set = false;
L
Liu Jicong 已提交
1266 1267
  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
L
Liu Jicong 已提交
1268 1269
  tscDebug("consumer %ld update ep epoch %d to epoch %d, topic num: %d", tmq->consumerId, tmq->epoch, epoch,
           topicNumGet);
L
Liu Jicong 已提交
1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
  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;
  }

  // find topic, build hash
  for (int32_t i = 0; i < topicNumGet; i++) {
X
Xiaoyu Wang 已提交
1282 1283
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
L
Liu Jicong 已提交
1284
    topic.schema = pTopicEp->schema;
L
Liu Jicong 已提交
1285
    taosHashClear(pHash);
X
Xiaoyu Wang 已提交
1286
    topic.topicName = strdup(pTopicEp->topic);
L
Liu Jicong 已提交
1287
    tstrncpy(topic.db, pTopicEp->db, TSDB_DB_FNAME_LEN);
L
Liu Jicong 已提交
1288

L
Liu Jicong 已提交
1289
    tscDebug("consumer %ld update topic: %s", tmq->consumerId, topic.topicName);
L
Liu Jicong 已提交
1290 1291 1292 1293 1294 1295
    int32_t topicNumCur = taosArrayGetSize(tmq->clientTopics);
    for (int32_t j = 0; j < topicNumCur; j++) {
      // find old topic
      SMqClientTopic* pTopicCur = taosArrayGet(tmq->clientTopics, j);
      if (pTopicCur->vgs && strcmp(pTopicCur->topicName, pTopicEp->topic) == 0) {
        int32_t vgNumCur = taosArrayGetSize(pTopicCur->vgs);
L
Liu Jicong 已提交
1296
        tscDebug("consumer %ld new vg num: %d", tmq->consumerId, vgNumCur);
L
Liu Jicong 已提交
1297 1298 1299 1300
        if (vgNumCur == 0) break;
        for (int32_t k = 0; k < vgNumCur; k++) {
          SMqClientVg* pVgCur = taosArrayGet(pTopicCur->vgs, k);
          sprintf(vgKey, "%s:%d", topic.topicName, pVgCur->vgId);
L
Liu Jicong 已提交
1301
          tscDebug("consumer %ld epoch %d vg %d build %s", tmq->consumerId, epoch, pVgCur->vgId, vgKey);
L
Liu Jicong 已提交
1302 1303 1304 1305 1306 1307 1308 1309 1310
          taosHashPut(pHash, vgKey, strlen(vgKey), &pVgCur->currentOffset, sizeof(int64_t));
        }
        break;
      }
    }

    int32_t vgNumGet = taosArrayGetSize(pTopicEp->vgs);
    topic.vgs = taosArrayInit(vgNumGet, sizeof(SMqClientVg));
    for (int32_t j = 0; j < vgNumGet; j++) {
X
Xiaoyu Wang 已提交
1311
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
L
Liu Jicong 已提交
1312 1313 1314
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = pVgEp->offset;
1315
      tscDebug("consumer %ld(epoch %d) original offset of vg %d is %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
L
Liu Jicong 已提交
1316 1317
      if (pOffset != NULL) {
        offset = *pOffset;
1318 1319
        tscDebug("consumer %ld(epoch %d) receive offset of vg %d, full key is %s", tmq->consumerId, epoch, pVgEp->vgId,
                 vgKey);
L
Liu Jicong 已提交
1320
      }
1321
      tscDebug("consumer %ld(epoch %d) offset of vg %d updated to %ld", tmq->consumerId, epoch, pVgEp->vgId, offset);
X
Xiaoyu Wang 已提交
1322 1323
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
1324
          .currentOffset = offset,
X
Xiaoyu Wang 已提交
1325 1326 1327
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
L
Liu Jicong 已提交
1328
          .vgSkipCnt = 0,
X
Xiaoyu Wang 已提交
1329 1330 1331 1332
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
L
Liu Jicong 已提交
1333
    taosArrayPush(newTopics, &topic);
X
Xiaoyu Wang 已提交
1334
  }
L
Liu Jicong 已提交
1335
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
L
Liu Jicong 已提交
1336
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
1337
  tmq->clientTopics = newTopics;
1338

1339 1340 1341 1342
  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);
1343

X
Xiaoyu Wang 已提交
1344 1345 1346
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}
L
Liu Jicong 已提交
1347
#endif
X
Xiaoyu Wang 已提交
1348

L
Liu Jicong 已提交
1349
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
1350
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
1351
  tmq_t*           tmq = pParam->tmq;
L
Liu Jicong 已提交
1352
  int8_t           async = pParam->async;
L
Liu Jicong 已提交
1353
  pParam->code = code;
1354
  if (code != 0) {
L
Liu Jicong 已提交
1355
    tscError("consumer %ld get topic endpoint error, not ready, wait:%d", tmq->consumerId, pParam->async);
L
Liu Jicong 已提交
1356
    goto END;
1357
  }
L
Liu Jicong 已提交
1358

L
Liu Jicong 已提交
1359
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
1360
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
1361
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
1362 1363
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
L
temp  
Liu Jicong 已提交
1364
  tscDebug("consumer %ld recv ep, msg epoch %d, current epoch %d", tmq->consumerId, head->epoch, epoch);
L
Liu Jicong 已提交
1365 1366
  if (head->epoch <= epoch) {
    goto END;
1367
  }
L
Liu Jicong 已提交
1368

L
Liu Jicong 已提交
1369
  if (!async) {
L
Liu Jicong 已提交
1370 1371
    SMqAskEpRsp rsp;
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &rsp);
X
Xiaoyu Wang 已提交
1372 1373
    /*printf("rsp epoch %ld sz %ld\n", rsp.epoch, rsp.topics->size);*/
    /*printf("tmq epoch %ld sz %ld\n", tmq->epoch, tmq->clientTopics->size);*/
L
Liu Jicong 已提交
1374
    tmqUpdateEp2(tmq, head->epoch, &rsp);
L
Liu Jicong 已提交
1375
    tDeleteSMqAskEpRsp(&rsp);
X
Xiaoyu Wang 已提交
1376
  } else {
1377
    SMqAskEpRspWrapper* pWrapper = taosAllocateQitem(sizeof(SMqAskEpRspWrapper), DEF_QITEM);
L
Liu Jicong 已提交
1378
    if (pWrapper == NULL) {
X
Xiaoyu Wang 已提交
1379
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
1380 1381
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
1382
    }
L
Liu Jicong 已提交
1383 1384 1385
    pWrapper->tmqRspType = TMQ_MSG_TYPE__EP_RSP;
    pWrapper->epoch = head->epoch;
    memcpy(&pWrapper->msg, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1386
    tDecodeSMqAskEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pWrapper->msg);
L
Liu Jicong 已提交
1387

L
Liu Jicong 已提交
1388
    taosWriteQitem(tmq->mqueue, pWrapper);
1389
    tsem_post(&tmq->rspSem);
1390
  }
L
Liu Jicong 已提交
1391 1392

END:
L
Liu Jicong 已提交
1393
  /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1394
  if (!async) {
L
Liu Jicong 已提交
1395
    tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
1396 1397
  } else {
    taosMemoryFree(pParam);
L
Liu Jicong 已提交
1398 1399
  }
  return code;
1400 1401
}

L
Liu Jicong 已提交
1402
int32_t tmqAskEp(tmq_t* tmq, bool async) {
L
Liu Jicong 已提交
1403
  int32_t code = 0;
L
Liu Jicong 已提交
1404
#if 0
L
Liu Jicong 已提交
1405
  int8_t  epStatus = atomic_val_compare_exchange_8(&tmq->epStatus, 0, 1);
L
fix txn  
Liu Jicong 已提交
1406
  if (epStatus == 1) {
L
temp  
Liu Jicong 已提交
1407
    int32_t epSkipCnt = atomic_add_fetch_32(&tmq->epSkipCnt, 1);
L
Liu Jicong 已提交
1408
    tscTrace("consumer %ld skip ask ep cnt %d", tmq->consumerId, epSkipCnt);
L
Liu Jicong 已提交
1409
    if (epSkipCnt < 5000) return 0;
L
fix txn  
Liu Jicong 已提交
1410
  }
L
temp  
Liu Jicong 已提交
1411
  atomic_store_32(&tmq->epSkipCnt, 0);
L
Liu Jicong 已提交
1412
#endif
L
Liu Jicong 已提交
1413
  int32_t      tlen = sizeof(SMqAskEpReq);
L
Liu Jicong 已提交
1414
  SMqAskEpReq* req = taosMemoryCalloc(1, tlen);
L
Liu Jicong 已提交
1415
  if (req == NULL) {
L
Liu Jicong 已提交
1416
    tscError("failed to malloc get subscribe ep buf");
L
Liu Jicong 已提交
1417
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1418
    return -1;
L
Liu Jicong 已提交
1419
  }
L
Liu Jicong 已提交
1420 1421 1422
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
1423

L
Liu Jicong 已提交
1424
  SMqAskEpCbParam* pParam = taosMemoryCalloc(1, sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1425 1426
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
1427
    taosMemoryFree(req);
L
Liu Jicong 已提交
1428
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1429
    return -1;
L
Liu Jicong 已提交
1430 1431
  }
  pParam->tmq = tmq;
L
Liu Jicong 已提交
1432
  pParam->async = async;
X
Xiaoyu Wang 已提交
1433
  tsem_init(&pParam->rspSem, 0, 0);
1434

1435
  SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1436 1437
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1438 1439
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
Liu Jicong 已提交
1440
    /*atomic_store_8(&tmq->epStatus, 0);*/
L
Liu Jicong 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
    return -1;
  }

  sendInfo->msgInfo = (SDataBuf){
      .pData = req,
      .len = tlen,
      .handle = NULL,
  };

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1451 1452 1453
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1454
  sendInfo->msgType = TDMT_MND_MQ_ASK_EP;
1455

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

L
add log  
Liu Jicong 已提交
1458 1459
  tscDebug("consumer %ld ask ep", tmq->consumerId);

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

L
Liu Jicong 已提交
1463
  if (!async) {
L
Liu Jicong 已提交
1464 1465 1466 1467 1468
    tsem_wait(&pParam->rspSem);
    code = pParam->code;
    taosMemoryFree(pParam);
  }
  return code;
1469 1470
}

L
Liu Jicong 已提交
1471 1472
#if 0
int32_t tmq_seek(tmq_t* tmq, const tmq_topic_vgroup_t* offset) {
L
Liu Jicong 已提交
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
  const SMqOffset* pOffset = &offset->offset;
  if (strcmp(pOffset->cgroup, tmq->groupId) != 0) {
    return TMQ_RESP_ERR__FAIL;
  }
  int32_t sz = taosArrayGetSize(tmq->clientTopics);
  for (int32_t i = 0; i < sz; i++) {
    SMqClientTopic* clientTopic = taosArrayGet(tmq->clientTopics, i);
    if (strcmp(clientTopic->topicName, pOffset->topicName) == 0) {
      int32_t vgSz = taosArrayGetSize(clientTopic->vgs);
      for (int32_t j = 0; j < vgSz; j++) {
        SMqClientVg* pVg = taosArrayGet(clientTopic->vgs, j);
        if (pVg->vgId == pOffset->vgId) {
          pVg->currentOffset = pOffset->offset;
L
Liu Jicong 已提交
1486
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1487 1488 1489 1490 1491 1492 1493
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}
L
Liu Jicong 已提交
1494
#endif
L
Liu Jicong 已提交
1495

1496
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t timeout, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1497 1498 1499 1500
  int64_t reqOffset;
  if (pVg->currentOffset >= 0) {
    reqOffset = pVg->currentOffset;
  } else {
L
Liu Jicong 已提交
1501 1502 1503 1504
    /*if (tmq->resetOffsetCfg == TMQ_CONF__RESET_OFFSET__NONE) {*/
    /*tscError("unable to poll since no committed offset but reset offset is set to none");*/
    /*return NULL;*/
    /*}*/
L
Liu Jicong 已提交
1505 1506 1507
    reqOffset = tmq->resetOffsetCfg;
  }

L
Liu Jicong 已提交
1508
  SMqPollReq* pReq = taosMemoryCalloc(1, sizeof(SMqPollReq));
1509 1510 1511
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1512

L
Liu Jicong 已提交
1513 1514 1515
  /*strcpy(pReq->topic, pTopic->topicName);*/
  /*strcpy(pReq->cgroup, tmq->groupId);*/

L
Liu Jicong 已提交
1516 1517 1518 1519
  int32_t groupLen = strlen(tmq->groupId);
  memcpy(pReq->subKey, tmq->groupId, groupLen);
  pReq->subKey[groupLen] = TMQ_SEPARATOR;
  strcpy(pReq->subKey + groupLen + 1, pTopic->topicName);
1520

1521
  pReq->withTbName = tmq->withTbName;
1522
  pReq->timeout = timeout;
L
Liu Jicong 已提交
1523
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1524
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1525
  pReq->currentOffset = reqOffset;
L
Liu Jicong 已提交
1526
  pReq->reqId = generateRequestId();
1527 1528

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1529
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1530 1531 1532
  return pReq;
}

L
Liu Jicong 已提交
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
SMqMetaRspObj* tmqBuildMetaRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqMetaRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqMetaRspObj));
  pRspObj->resType = RES_TYPE__TMQ;
  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 已提交
1544 1545 1546
SMqRspObj* tmqBuildRspFromWrapper(SMqPollRspWrapper* pWrapper) {
  SMqRspObj* pRspObj = taosMemoryCalloc(1, sizeof(SMqRspObj));
  pRspObj->resType = RES_TYPE__TMQ;
L
Liu Jicong 已提交
1547 1548
  tstrncpy(pRspObj->topic, pWrapper->topicHandle->topicName, TSDB_TOPIC_FNAME_LEN);
  tstrncpy(pRspObj->db, pWrapper->topicHandle->db, TSDB_DB_FNAME_LEN);
L
Liu Jicong 已提交
1549
  pRspObj->vgId = pWrapper->vgHandle->vgId;
L
Liu Jicong 已提交
1550
  pRspObj->resIter = -1;
L
Liu Jicong 已提交
1551
  memcpy(&pRspObj->rsp, &pWrapper->dataRsp, sizeof(SMqDataBlkRsp));
L
Liu Jicong 已提交
1552

L
Liu Jicong 已提交
1553 1554
  pRspObj->resInfo.totalRows = 0;
  pRspObj->resInfo.precision = TSDB_TIME_PRECISION_MILLI;
L
Liu Jicong 已提交
1555
  if (!pWrapper->dataRsp.withSchema) {
L
Liu Jicong 已提交
1556 1557
    setResSchemaInfo(&pRspObj->resInfo, pWrapper->topicHandle->schema.pSchema, pWrapper->topicHandle->schema.nCols);
  }
L
Liu Jicong 已提交
1558

L
Liu Jicong 已提交
1559
  return pRspObj;
X
Xiaoyu Wang 已提交
1560 1561
}

1562
int32_t tmqPollImpl(tmq_t* tmq, int64_t timeout) {
L
fix  
Liu Jicong 已提交
1563
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
1564 1565 1566 1567 1568 1569
  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 已提交
1570
        int32_t vgSkipCnt = atomic_add_fetch_32(&pVg->vgSkipCnt, 1);
L
Liu Jicong 已提交
1571
        tscTrace("consumer %ld epoch %d skip vg %d skip cnt %d", tmq->consumerId, tmq->epoch, pVg->vgId, vgSkipCnt);
X
Xiaoyu Wang 已提交
1572
        continue;
L
Liu Jicong 已提交
1573
        /*if (vgSkipCnt < 10000) continue;*/
L
temp  
Liu Jicong 已提交
1574 1575 1576 1577 1578 1579 1580
#if 0
        if (skipCnt < 30000) {
          continue;
        } else {
        tscDebug("consumer %ld skip vg %d skip too much reset", tmq->consumerId, pVg->vgId);
        }
#endif
X
Xiaoyu Wang 已提交
1581
      }
L
Liu Jicong 已提交
1582
      atomic_store_32(&pVg->vgSkipCnt, 0);
1583
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, timeout, pTopic, pVg);
X
Xiaoyu Wang 已提交
1584 1585
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1586
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1587 1588
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1589
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1590
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1591
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1592
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1593
        tsem_post(&tmq->rspSem);
X
Xiaoyu Wang 已提交
1594 1595
        return -1;
      }
L
Liu Jicong 已提交
1596 1597
      pParam->tmq = tmq;
      pParam->pVg = pVg;
L
Liu Jicong 已提交
1598
      pParam->pTopic = pTopic;
L
Liu Jicong 已提交
1599
      pParam->vgId = pVg->vgId;
L
Liu Jicong 已提交
1600 1601
      pParam->epoch = tmq->epoch;

1602
      SMsgSendInfo* sendInfo = taosMemoryCalloc(1, sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1603
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1604 1605
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1606
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
1607
        tsem_post(&tmq->rspSem);
L
Liu Jicong 已提交
1608 1609 1610 1611
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1612
          .pData = pReq,
L
Liu Jicong 已提交
1613
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1614 1615
          .handle = NULL,
      };
L
Liu Jicong 已提交
1616
      sendInfo->requestId = pReq->reqId;
X
Xiaoyu Wang 已提交
1617
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1618
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1619
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1620
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1621 1622

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1623
      /*printf("send poll\n");*/
L
Liu Jicong 已提交
1624 1625
      tscDebug("consumer %ld send poll to %s : vg %d, epoch %d, req offset %ld, reqId %lu", tmq->consumerId,
               pTopic->topicName, pVg->vgId, tmq->epoch, pVg->currentOffset, pReq->reqId);
L
fix  
Liu Jicong 已提交
1626
      /*printf("send vg %d %ld\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1627 1628 1629 1630 1631 1632 1633 1634
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

L
Liu Jicong 已提交
1635 1636
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspWrapper* rspWrapper, bool* pReset) {
  if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1637
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1638 1639
    if (rspWrapper->epoch > atomic_load_32(&tmq->epoch)) {
      SMqAskEpRspWrapper* pEpRspWrapper = (SMqAskEpRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1640
      SMqAskEpRsp*        rspMsg = &pEpRspWrapper->msg;
L
Liu Jicong 已提交
1641
      tmqUpdateEp2(tmq, rspWrapper->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1642
      /*tmqClearUnhandleMsg(tmq);*/
X
Xiaoyu Wang 已提交
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
      *pReset = true;
    } else {
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

1653
SMqRspObj* tmqHandleAllRsp(tmq_t* tmq, int64_t timeout, bool pollIfReset) {
X
Xiaoyu Wang 已提交
1654
  while (1) {
L
Liu Jicong 已提交
1655 1656 1657
    SMqRspWrapper* rspWrapper = NULL;
    taosGetQitem(tmq->qall, (void**)&rspWrapper);
    if (rspWrapper == NULL) {
L
Liu Jicong 已提交
1658
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1659 1660
      taosGetQitem(tmq->qall, (void**)&rspWrapper);
      if (rspWrapper == NULL) return NULL;
X
Xiaoyu Wang 已提交
1661 1662
    }

L
Liu Jicong 已提交
1663 1664 1665 1666 1667
    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 已提交
1668
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
L
Liu Jicong 已提交
1669
      /*atomic_sub_fetch_32(&tmq->readyRequest, 1);*/
1670
      int32_t consumerEpoch = atomic_load_32(&tmq->epoch);
L
Liu Jicong 已提交
1671
      if (pollRspWrapper->dataRsp.head.epoch == consumerEpoch) {
L
Liu Jicong 已提交
1672
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
L
Liu Jicong 已提交
1673
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1674
        pVg->currentOffset = pollRspWrapper->dataRsp.rspOffset;
X
Xiaoyu Wang 已提交
1675
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
Liu Jicong 已提交
1676
        if (pollRspWrapper->dataRsp.blockNum == 0) {
L
Liu Jicong 已提交
1677 1678
          taosFreeQitem(pollRspWrapper);
          rspWrapper = NULL;
L
temp  
Liu Jicong 已提交
1679 1680
          continue;
        }
L
Liu Jicong 已提交
1681
        // build rsp
L
Liu Jicong 已提交
1682
        SMqRspObj* pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
L
Liu Jicong 已提交
1683
        taosFreeQitem(pollRspWrapper);
L
Liu Jicong 已提交
1684
        return pRsp;
X
Xiaoyu Wang 已提交
1685
      } else {
L
Liu Jicong 已提交
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d\n",
                 pollRspWrapper->dataRsp.head.epoch, consumerEpoch);
        taosFreeQitem(pollRspWrapper);
      }
    } else if (rspWrapper->tmqRspType == TMQ_MSG_TYPE__POLL_META_RSP) {
      SMqPollRspWrapper* pollRspWrapper = (SMqPollRspWrapper*)rspWrapper;
      int32_t            consumerEpoch = atomic_load_32(&tmq->epoch);
      if (pollRspWrapper->dataRsp.head.epoch == consumerEpoch) {
        SMqClientVg* pVg = pollRspWrapper->vgHandle;
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
        pVg->currentOffset = pollRspWrapper->dataRsp.rspOffset;
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // build rsp
        SMqRspObj* pRsp = tmqBuildRspFromWrapper(pollRspWrapper);
        taosFreeQitem(pollRspWrapper);
        return pRsp;
      } else {
        tscDebug("msg discard since epoch mismatch: msg epoch %d, consumer epoch %d\n",
                 pollRspWrapper->dataRsp.head.epoch, consumerEpoch);
L
Liu Jicong 已提交
1705
        taosFreeQitem(pollRspWrapper);
X
Xiaoyu Wang 已提交
1706 1707
      }
    } else {
L
fix  
Liu Jicong 已提交
1708
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1709
      bool reset = false;
L
Liu Jicong 已提交
1710 1711
      tmqHandleNoPollRsp(tmq, rspWrapper, &reset);
      taosFreeQitem(rspWrapper);
X
Xiaoyu Wang 已提交
1712
      if (pollIfReset && reset) {
L
add log  
Liu Jicong 已提交
1713
        tscDebug("consumer %ld reset and repoll", tmq->consumerId);
1714
        tmqPollImpl(tmq, timeout);
X
Xiaoyu Wang 已提交
1715 1716 1717 1718 1719
      }
    }
  }
}

1720
TAOS_RES* tmq_consumer_poll(tmq_t* tmq, int64_t timeout) {
L
Liu Jicong 已提交
1721 1722
  SMqRspObj* rspObj;
  int64_t    startTime = taosGetTimestampMs();
L
Liu Jicong 已提交
1723

1724 1725 1726
#if 0
  tmqHandleAllDelayedTask(tmq);
  tmqPollImpl(tmq, timeout);
1727
  rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1728 1729
  if (rspObj) {
    return (TAOS_RES*)rspObj;
L
fix  
Liu Jicong 已提交
1730
  }
1731
#endif
X
Xiaoyu Wang 已提交
1732

L
Liu Jicong 已提交
1733
  // in no topic status also need process delayed task
L
Liu Jicong 已提交
1734
  if (atomic_load_8(&tmq->status) == TMQ_CONSUMER_STATUS__INIT) {
1735 1736 1737
    return NULL;
  }

X
Xiaoyu Wang 已提交
1738
  while (1) {
L
Liu Jicong 已提交
1739
    tmqHandleAllDelayedTask(tmq);
1740
    if (tmqPollImpl(tmq, timeout) < 0) return NULL;
L
Liu Jicong 已提交
1741

1742
    rspObj = tmqHandleAllRsp(tmq, timeout, false);
L
Liu Jicong 已提交
1743 1744
    if (rspObj) {
      return (TAOS_RES*)rspObj;
L
Liu Jicong 已提交
1745 1746
    } else if (terrno == TSDB_CODE_TQ_NO_COMMITTED_OFFSET) {
      return NULL;
X
Xiaoyu Wang 已提交
1747
    }
1748
    if (timeout != -1) {
X
Xiaoyu Wang 已提交
1749
      int64_t endTime = taosGetTimestampMs();
1750
      int64_t leftTime = endTime - startTime;
1751
      if (leftTime > timeout) {
L
Liu Jicong 已提交
1752
        tscDebug("consumer %ld (epoch %d) timeout, no rsp", tmq->consumerId, tmq->epoch);
X
Xiaoyu Wang 已提交
1753 1754
        return NULL;
      }
1755
      tsem_timewait(&tmq->rspSem, leftTime * 1000);
L
Liu Jicong 已提交
1756 1757 1758
    } else {
      // use tsem_timewait instead of tsem_wait to avoid unexpected stuck
      tsem_timewait(&tmq->rspSem, 500 * 1000);
X
Xiaoyu Wang 已提交
1759 1760 1761 1762
    }
  }
}

L
Liu Jicong 已提交
1763
int32_t tmq_consumer_close(tmq_t* tmq) {
1764
  if (tmq->status == TMQ_CONSUMER_STATUS__READY) {
L
Liu Jicong 已提交
1765 1766
    int32_t rsp = tmq_commit_sync(tmq, NULL);
    if (rsp != 0) {
L
Liu Jicong 已提交
1767
      return rsp;
1768 1769 1770 1771
    }

    tmq_list_t* lst = tmq_list_new();
    rsp = tmq_subscribe(tmq, lst);
1772
    tmq_list_destroy(lst);
1773

L
Liu Jicong 已提交
1774
    if (rsp != 0) {
L
Liu Jicong 已提交
1775
      return rsp;
1776
    }
L
Liu Jicong 已提交
1777
  }
1778
  // TODO: free resources
L
Liu Jicong 已提交
1779
  return 0;
1780
}
L
Liu Jicong 已提交
1781

L
Liu Jicong 已提交
1782 1783
const char* tmq_err2str(int32_t err) {
  if (err == 0) {
L
Liu Jicong 已提交
1784
    return "success";
L
Liu Jicong 已提交
1785
  } else if (err == -1) {
L
Liu Jicong 已提交
1786 1787 1788
    return "fail";
  } else {
    return tstrerror(err);
L
Liu Jicong 已提交
1789 1790
  }
}
L
Liu Jicong 已提交
1791

L
Liu Jicong 已提交
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
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)) {
    return TMQ_RES_TABLE_META;
  } else {
    return TMQ_RES_INVALID;
  }
}

L
Liu Jicong 已提交
1802
const char* tmq_get_topic_name(TAOS_RES* res) {
L
Liu Jicong 已提交
1803 1804
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
L
Liu Jicong 已提交
1805
    return strchr(pRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1806 1807 1808
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->topic, '.') + 1;
L
Liu Jicong 已提交
1809 1810 1811 1812 1813
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1814 1815 1816 1817
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 已提交
1818 1819 1820
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return strchr(pMetaRspObj->db, '.') + 1;
L
Liu Jicong 已提交
1821 1822 1823 1824 1825
  } else {
    return NULL;
  }
}

L
Liu Jicong 已提交
1826 1827 1828 1829
int32_t tmq_get_vgroup_id(TAOS_RES* res) {
  if (TD_RES_TMQ(res)) {
    SMqRspObj* pRspObj = (SMqRspObj*)res;
    return pRspObj->vgId;
L
Liu Jicong 已提交
1830 1831 1832
  } else if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    return pMetaRspObj->vgId;
L
Liu Jicong 已提交
1833 1834 1835 1836
  } else {
    return -1;
  }
}
L
Liu Jicong 已提交
1837 1838 1839 1840 1841 1842 1843 1844

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;
    }
1845
    return (const char*)taosArrayGetP(pRspObj->rsp.blockTbName, pRspObj->resIter);
L
Liu Jicong 已提交
1846 1847 1848
  }
  return NULL;
}
1849

L
Liu Jicong 已提交
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
int32_t tmq_get_raw_meta(TAOS_RES* res, const void** raw_meta, int32_t* raw_meta_len) {
  if (TD_RES_TMQ_META(res)) {
    SMqMetaRspObj* pMetaRspObj = (SMqMetaRspObj*)res;
    *raw_meta = pMetaRspObj->metaRsp.metaRsp;
    *raw_meta_len = pMetaRspObj->metaRsp.metaRspLen;
    return 0;
  }
  return -1;
}

L
Liu Jicong 已提交
1860 1861
void tmq_commit_async(tmq_t* tmq, const TAOS_RES* msg, tmq_commit_cb* cb, void* param) {
  tmqCommitInner2(tmq, msg, 0, 1, cb, param);
L
Liu Jicong 已提交
1862 1863
}

L
Liu Jicong 已提交
1864
int32_t tmq_commit_sync(tmq_t* tmq, const TAOS_RES* msg) { return tmqCommitInner2(tmq, msg, 0, 0, NULL, NULL); }