tmq.c 45.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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"
#include "planner.h"
#include "scheduler.h"
H
Haojun Liao 已提交
21
#include "tdatablock.h"
22 23 24
#include "tdef.h"
#include "tglobal.h"
#include "tmsgtype.h"
H
Haojun Liao 已提交
25
#include "tpagedbuf.h"
X
Xiaoyu Wang 已提交
26
#include "tqueue.h"
27 28
#include "tref.h"

L
Liu Jicong 已提交
29 30 31 32 33 34 35 36 37 38 39 40
typedef struct {
  int32_t curBlock;
  int32_t curRow;
  void**  uData;
} SMqRowIter;

struct tmq_message_t {
  SMqPollRsp msg;
  void*      vg;
  SMqRowIter iter;
};

L
Liu Jicong 已提交
41
struct tmq_list_t {
L
Liu Jicong 已提交
42
  SArray container;
L
Liu Jicong 已提交
43
};
L
Liu Jicong 已提交
44

L
Liu Jicong 已提交
45
struct tmq_topic_vgroup_t {
L
Liu Jicong 已提交
46
  SMqOffset offset;
L
Liu Jicong 已提交
47 48 49
};

struct tmq_topic_vgroup_list_t {
L
Liu Jicong 已提交
50 51
  int32_t             cnt;
  int32_t             size;
L
Liu Jicong 已提交
52 53 54 55
  tmq_topic_vgroup_t* elems;
};

struct tmq_conf_t {
L
Liu Jicong 已提交
56
  char           clientId[256];
L
Liu Jicong 已提交
57
  char           groupId[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
58
  int8_t         autoCommit;
L
Liu Jicong 已提交
59
  int8_t         resetOffset;
L
Liu Jicong 已提交
60 61 62 63 64
  uint16_t       port;
  char*          ip;
  char*          user;
  char*          pass;
  char*          db;
L
Liu Jicong 已提交
65
  tmq_commit_cb* commit_cb;
L
Liu Jicong 已提交
66 67 68
};

struct tmq_t {
L
Liu Jicong 已提交
69
  // conf
L
Liu Jicong 已提交
70
  char           groupId[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
71
  char           clientId[256];
L
Liu Jicong 已提交
72
  int8_t         autoCommit;
L
Liu Jicong 已提交
73
  int8_t         inWaiting;
L
Liu Jicong 已提交
74
  int64_t        consumerId;
L
Liu Jicong 已提交
75
  int32_t        epoch;
L
Liu Jicong 已提交
76
  int32_t        resetOffsetCfg;
L
Liu Jicong 已提交
77 78 79 80
  int64_t        status;
  STscObj*       pTscObj;
  tmq_commit_cb* commit_cb;
  int32_t        nextTopicIdx;
L
fix txn  
Liu Jicong 已提交
81
  int8_t         epStatus;
L
temp  
Liu Jicong 已提交
82
  int32_t        epSkipCnt;
L
fix  
Liu Jicong 已提交
83
  int32_t        waitingRequest;
L
Liu Jicong 已提交
84
  int32_t        readyRequest;
L
Liu Jicong 已提交
85
  SArray*        clientTopics;  // SArray<SMqClientTopic>
X
Xiaoyu Wang 已提交
86 87
  STaosQueue*    mqueue;        // queue of tmq_message_t
  STaosQall*     qall;
L
Liu Jicong 已提交
88
  tsem_t         rspSem;
L
Liu Jicong 已提交
89 90
  // stat
  int64_t pollCnt;
L
Liu Jicong 已提交
91 92
};

X
Xiaoyu Wang 已提交
93 94 95 96 97 98 99 100
enum {
  TMQ_VG_STATUS__IDLE = 0,
  TMQ_VG_STATUS__WAIT,
};

enum {
  TMQ_CONSUMER_STATUS__INIT = 0,
  TMQ_CONSUMER_STATUS__READY,
L
Liu Jicong 已提交
101 102
};

L
Liu Jicong 已提交
103
typedef struct {
104 105 106 107
  // statistics
  int64_t pollCnt;
  // offset
  int64_t currentOffset;
L
Liu Jicong 已提交
108
  // connection info
109
  int32_t vgId;
X
Xiaoyu Wang 已提交
110
  int32_t vgStatus;
L
temp  
Liu Jicong 已提交
111
  int64_t skipCnt;
112 113 114
  SEpSet  epSet;
} SMqClientVg;

L
Liu Jicong 已提交
115
typedef struct {
116
  // subscribe info
L
Liu Jicong 已提交
117 118 119 120 121 122 123 124
  int32_t     sqlLen;
  char*       sql;
  char*       topicName;
  int64_t     topicId;
  SArray*     vgs;  // SArray<SMqClientVg>
  int8_t      isSchemaAdaptive;
  int32_t     numOfFields;
  TAOS_FIELD* fields;
125 126
} SMqClientTopic;

L
Liu Jicong 已提交
127
typedef struct {
L
Liu Jicong 已提交
128 129 130 131
  tmq_t*         tmq;
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
} SMqSubscribeCbParam;
L
Liu Jicong 已提交
132

L
Liu Jicong 已提交
133
typedef struct {
134
  tmq_t*  tmq;
X
Xiaoyu Wang 已提交
135 136
  int32_t sync;
  tsem_t  rspSem;
137 138
} SMqAskEpCbParam;

L
Liu Jicong 已提交
139
typedef struct {
L
Liu Jicong 已提交
140 141 142 143 144 145
  tmq_t*          tmq;
  SMqClientVg*    pVg;
  int32_t         epoch;
  tsem_t          rspSem;
  tmq_message_t** msg;
  int32_t         sync;
X
Xiaoyu Wang 已提交
146
} SMqPollCbParam;
147

L
Liu Jicong 已提交
148
typedef struct {
L
Liu Jicong 已提交
149
  tmq_t*         tmq;
L
Liu Jicong 已提交
150
  int32_t        async;
L
Liu Jicong 已提交
151 152
  tsem_t         rspSem;
  tmq_resp_err_t rspErr;
L
Liu Jicong 已提交
153
  /*SMqClientVg* pVg;*/
L
Liu Jicong 已提交
154
} SMqCommitCbParam;
L
Liu Jicong 已提交
155

156
tmq_conf_t* tmq_conf_new() {
wafwerar's avatar
wafwerar 已提交
157
  tmq_conf_t* conf = taosMemoryCalloc(1, sizeof(tmq_conf_t));
L
Liu Jicong 已提交
158
  conf->autoCommit = false;
X
Xiaoyu Wang 已提交
159
  conf->resetOffset = TMQ_CONF__RESET_OFFSET__EARLIEAST;
160 161 162
  return conf;
}

L
Liu Jicong 已提交
163
void tmq_conf_destroy(tmq_conf_t* conf) {
wafwerar's avatar
wafwerar 已提交
164
  if (conf) taosMemoryFree(conf);
L
Liu Jicong 已提交
165 166 167
}

tmq_conf_res_t tmq_conf_set(tmq_conf_t* conf, const char* key, const char* value) {
168 169
  if (strcmp(key, "group.id") == 0) {
    strcpy(conf->groupId, value);
L
Liu Jicong 已提交
170
    return TMQ_CONF_OK;
171
  }
L
Liu Jicong 已提交
172

173 174
  if (strcmp(key, "client.id") == 0) {
    strcpy(conf->clientId, value);
L
Liu Jicong 已提交
175 176
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
177

L
Liu Jicong 已提交
178 179
  if (strcmp(key, "enable.auto.commit") == 0) {
    if (strcmp(value, "true") == 0) {
L
Liu Jicong 已提交
180
      conf->autoCommit = true;
L
Liu Jicong 已提交
181 182
      return TMQ_CONF_OK;
    } else if (strcmp(value, "false") == 0) {
L
Liu Jicong 已提交
183
      conf->autoCommit = false;
L
Liu Jicong 已提交
184 185 186 187
      return TMQ_CONF_OK;
    } else {
      return TMQ_CONF_INVALID;
    }
188
  }
L
Liu Jicong 已提交
189

L
Liu Jicong 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203
  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 已提交
204

L
Liu Jicong 已提交
205
  if (strcmp(key, "td.connect.ip") == 0) {
L
Liu Jicong 已提交
206 207 208
    conf->ip = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
209
  if (strcmp(key, "td.connect.user") == 0) {
L
Liu Jicong 已提交
210 211 212
    conf->user = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
213
  if (strcmp(key, "td.connect.pass") == 0) {
L
Liu Jicong 已提交
214 215 216
    conf->pass = strdup(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
217
  if (strcmp(key, "td.connect.port") == 0) {
L
Liu Jicong 已提交
218 219 220
    conf->port = atoi(value);
    return TMQ_CONF_OK;
  }
L
Liu Jicong 已提交
221
  if (strcmp(key, "td.connect.db") == 0) {
L
Liu Jicong 已提交
222 223 224 225
    conf->db = strdup(value);
    return TMQ_CONF_OK;
  }

L
Liu Jicong 已提交
226
  return TMQ_CONF_UNKNOWN;
227 228 229
}

tmq_list_t* tmq_list_new() {
L
Liu Jicong 已提交
230 231
  //
  return (tmq_list_t*)taosArrayInit(0, sizeof(void*));
232 233
}

L
Liu Jicong 已提交
234 235 236
int32_t tmq_list_append(tmq_list_t* list, const char* src) {
  SArray* container = &list->container;
  char*   topic = strdup(src);
L
fix  
Liu Jicong 已提交
237
  if (taosArrayPush(container, &topic) == NULL) return -1;
238 239 240
  return 0;
}

L
Liu Jicong 已提交
241
void tmq_list_destroy(tmq_list_t* list) {
L
Liu Jicong 已提交
242
  SArray* container = &list->container;
L
fix  
Liu Jicong 已提交
243 244
  /*taosArrayDestroy(container);*/
  taosArrayDestroyEx(container, (void (*)(void*))taosMemoryFree);
L
Liu Jicong 已提交
245 246
}

L
Liu Jicong 已提交
247 248 249 250
static int32_t tmqMakeTopicVgKey(char* dst, const char* topicName, int32_t vg) {
  return sprintf(dst, "%s:%d", topicName, vg);
}

L
Liu Jicong 已提交
251
void tmqClearUnhandleMsg(tmq_t* tmq) {
L
Liu Jicong 已提交
252
  tmq_message_t* msg = NULL;
L
Liu Jicong 已提交
253 254 255 256 257 258 259 260
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }

L
fix  
Liu Jicong 已提交
261
  msg = NULL;
L
Liu Jicong 已提交
262 263 264 265 266 267 268 269 270 271
  taosReadAllQitems(tmq->mqueue, tmq->qall);
  while (1) {
    taosGetQitem(tmq->qall, (void**)&msg);
    if (msg)
      taosFreeQitem(msg);
    else
      break;
  }
}

L
Liu Jicong 已提交
272 273 274 275 276 277
int32_t tmqSubscribeCb(void* param, const SDataBuf* pMsg, int32_t code) {
  SMqSubscribeCbParam* pParam = (SMqSubscribeCbParam*)param;
  pParam->rspErr = code;
  tsem_post(&pParam->rspSem);
  return 0;
}
278

L
Liu Jicong 已提交
279
int32_t tmqCommitCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
Liu Jicong 已提交
280
  SMqCommitCbParam* pParam = (SMqCommitCbParam*)param;
L
Liu Jicong 已提交
281
  pParam->rspErr = code == 0 ? TMQ_RESP_ERR__SUCCESS : TMQ_RESP_ERR__FAIL;
L
Liu Jicong 已提交
282
  if (pParam->tmq->commit_cb) {
L
Liu Jicong 已提交
283
    pParam->tmq->commit_cb(pParam->tmq, pParam->rspErr, NULL, NULL);
L
Liu Jicong 已提交
284
  }
L
fix  
Liu Jicong 已提交
285
  if (!pParam->async) tsem_post(&pParam->rspSem);
L
Liu Jicong 已提交
286 287 288
  return 0;
}

X
Xiaoyu Wang 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
tmq_resp_err_t tmq_subscription(tmq_t* tmq, tmq_list_t** topics) {
  if (*topics == NULL) {
    *topics = tmq_list_new();
  }
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* topic = taosArrayGetP(tmq->clientTopics, i);
    tmq_list_append(*topics, strdup(topic->topicName));
  }
  return TMQ_RESP_ERR__SUCCESS;
}

tmq_resp_err_t tmq_unsubscribe(tmq_t* tmq) {
  tmq_list_t* lst = tmq_list_new();
  return tmq_subscribe(tmq, lst);
}

305
tmq_t* tmq_consumer_new(void* conn, tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
wafwerar's avatar
wafwerar 已提交
306
  tmq_t* pTmq = taosMemoryCalloc(sizeof(tmq_t), 1);
307 308 309 310
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = (STscObj*)conn;
L
Liu Jicong 已提交
311
  pTmq->inWaiting = 0;
312 313
  pTmq->status = 0;
  pTmq->pollCnt = 0;
L
Liu Jicong 已提交
314
  pTmq->epoch = 0;
L
fix  
Liu Jicong 已提交
315
  pTmq->waitingRequest = 0;
L
Liu Jicong 已提交
316
  pTmq->readyRequest = 0;
L
fix txn  
Liu Jicong 已提交
317
  pTmq->epStatus = 0;
L
temp  
Liu Jicong 已提交
318
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
319
  // set conf
320 321
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
L
Liu Jicong 已提交
322
  pTmq->autoCommit = conf->autoCommit;
323
  pTmq->commit_cb = conf->commit_cb;
L
Liu Jicong 已提交
324
  pTmq->resetOffsetCfg = conf->resetOffset;
L
Liu Jicong 已提交
325

L
Liu Jicong 已提交
326 327 328 329 330 331 332 333 334 335
  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 已提交
336 337
  tsem_init(&pTmq->rspSem, 0, 0);

L
Liu Jicong 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
  return pTmq;
}

tmq_t* tmq_consumer_new1(tmq_conf_t* conf, char* errstr, int32_t errstrLen) {
  tmq_t* pTmq = taosMemoryCalloc(1, sizeof(tmq_t));
  if (pTmq == NULL) {
    return NULL;
  }
  pTmq->pTscObj = taos_connect(conf->ip, conf->user, conf->pass, conf->db, conf->port);

  pTmq->inWaiting = 0;
  pTmq->status = 0;
  pTmq->pollCnt = 0;
  pTmq->epoch = 0;
  pTmq->waitingRequest = 0;
  pTmq->readyRequest = 0;
L
temp  
Liu Jicong 已提交
354 355
  pTmq->epStatus = 0;
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
356 357 358 359 360 361 362
  // set conf
  strcpy(pTmq->clientId, conf->clientId);
  strcpy(pTmq->groupId, conf->groupId);
  pTmq->autoCommit = conf->autoCommit;
  pTmq->commit_cb = conf->commit_cb;
  pTmq->resetOffsetCfg = conf->resetOffset;

L
Liu Jicong 已提交
363
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
364
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
L
Liu Jicong 已提交
365 366 367 368
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }
X
Xiaoyu Wang 已提交
369 370 371

  pTmq->mqueue = taosOpenQueue();
  pTmq->qall = taosAllocateQall();
L
Liu Jicong 已提交
372 373 374

  tsem_init(&pTmq->rspSem, 0, 0);

375 376 377
  return pTmq;
}

L
Liu Jicong 已提交
378 379 380 381
tmq_resp_err_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* offsets, int32_t async) {
  // TODO: add read write lock
  SRequestObj*   pRequest = NULL;
  tmq_resp_err_t resp = TMQ_RESP_ERR__SUCCESS;
L
Liu Jicong 已提交
382 383
  // build msg
  // send to mnode
L
Liu Jicong 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
  SMqCMCommitOffsetReq req;
  SArray*              pArray = NULL;

  if (offsets == NULL) {
    pArray = taosArrayInit(0, sizeof(SMqOffset));
    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);
        SMqOffset    offset;
        strcpy(offset.topicName, pTopic->topicName);
        strcpy(offset.cgroup, tmq->groupId);
        offset.vgId = pVg->vgId;
        offset.offset = pVg->currentOffset;
        taosArrayPush(pArray, &offset);
      }
    }
    req.num = pArray->size;
    req.offsets = pArray->pData;
  } else {
    req.num = offsets->cnt;
    req.offsets = (SMqOffset*)offsets->elems;
  }
L
Liu Jicong 已提交
407 408 409 410

  SCoder encoder;

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, NULL, 0, TD_ENCODER);
L
Liu Jicong 已提交
411
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
412
  int32_t tlen = encoder.pos;
wafwerar's avatar
wafwerar 已提交
413
  void*   buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
414 415 416 417 418 419 420
  if (buf == NULL) {
    tCoderClear(&encoder);
    return -1;
  }
  tCoderClear(&encoder);

  tCoderInit(&encoder, TD_LITTLE_ENDIAN, buf, tlen, TD_ENCODER);
L
Liu Jicong 已提交
421
  tEncodeSMqCMCommitOffsetReq(&encoder, &req);
L
Liu Jicong 已提交
422 423
  tCoderClear(&encoder);

L
Liu Jicong 已提交
424
  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_MQ_COMMIT_OFFSET);
L
Liu Jicong 已提交
425 426 427 428
  if (pRequest == NULL) {
    tscError("failed to malloc request");
  }

wafwerar's avatar
wafwerar 已提交
429
  SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
430 431 432 433 434
  if (pParam == NULL) {
    return -1;
  }
  pParam->tmq = tmq;
  tsem_init(&pParam->rspSem, 0, 0);
L
fix  
Liu Jicong 已提交
435
  pParam->async = async;
L
Liu Jicong 已提交
436

X
Xiaoyu Wang 已提交
437 438 439 440 441
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
L
Liu Jicong 已提交
442 443

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
444 445
  sendInfo->param = pParam;
  sendInfo->fp = tmqCommitCb;
L
Liu Jicong 已提交
446 447 448 449 450
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
451 452 453 454
  if (!async) {
    tsem_wait(&pParam->rspSem);
    resp = pParam->rspErr;
  }
L
Liu Jicong 已提交
455

L
fix  
Liu Jicong 已提交
456
  tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
457
  taosMemoryFree(pParam);
L
fix  
Liu Jicong 已提交
458

L
Liu Jicong 已提交
459 460 461 462 463
  if (pArray) {
    taosArrayDestroy(pArray);
  }

  return resp;
L
Liu Jicong 已提交
464 465
}

L
Liu Jicong 已提交
466
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
467
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
468 469
  SArray*      container = &topic_list->container;
  int32_t      sz = taosArrayGetSize(container);
L
Liu Jicong 已提交
470
  // destroy ex
471 472 473 474 475 476 477 478 479 480
  taosArrayDestroy(tmq->clientTopics);
  tmq->clientTopics = taosArrayInit(sz, sizeof(SMqClientTopic));

  SCMSubscribeReq req;
  req.topicNum = sz;
  req.consumerId = tmq->consumerId;
  req.consumerGroup = strdup(tmq->groupId);
  req.topicNames = taosArrayInit(sz, sizeof(void*));

  for (int i = 0; i < sz; i++) {
L
Liu Jicong 已提交
481 482
    /*char* topicName = topic_list->elems[i];*/
    char* topicName = taosArrayGetP(container, i);
483 484 485

    SName name = {0};
    char* dbName = getDbOfConnection(tmq->pTscObj);
L
Liu Jicong 已提交
486 487 488
    if (dbName == NULL) {
      return TMQ_RESP_ERR__FAIL;
    }
L
Liu Jicong 已提交
489
    tNameSetDbName(&name, tmq->pTscObj->acctId, dbName, strlen(dbName));
490 491
    tNameFromString(&name, topicName, T_NAME_TABLE);

wafwerar's avatar
wafwerar 已提交
492
    char* topicFname = taosMemoryCalloc(1, TSDB_TOPIC_FNAME_LEN);
493
    if (topicFname == NULL) {
L
Liu Jicong 已提交
494
      goto _return;
495 496 497 498
    }
    tNameExtractFullName(&name, topicFname);
    tscDebug("subscribe topic: %s", topicFname);
    SMqClientTopic topic = {
L
Liu Jicong 已提交
499 500 501 502 503 504
        .sql = NULL,
        .sqlLen = 0,
        .topicId = 0,
        .topicName = topicFname,
        .vgs = NULL,
    };
505
    topic.vgs = taosArrayInit(0, sizeof(SMqClientVg));
L
Liu Jicong 已提交
506
    taosArrayPush(tmq->clientTopics, &topic);
507
    taosArrayPush(req.topicNames, &topicFname);
wafwerar's avatar
wafwerar 已提交
508
    taosMemoryFree(dbName);
509 510
  }

L
Liu Jicong 已提交
511
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
wafwerar's avatar
wafwerar 已提交
512
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
513
  if (buf == NULL) {
514 515 516 517 518 519 520 521 522
    goto _return;
  }

  void* abuf = buf;
  tSerializeSCMSubscribeReq(&abuf, &req);
  /*printf("formatted: %s\n", dagStr);*/

  pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_MND_SUBSCRIBE);
  if (pRequest == NULL) {
L
Liu Jicong 已提交
523
    tscError("failed to malloc request");
524 525
  }

X
Xiaoyu Wang 已提交
526 527 528 529
  SMqSubscribeCbParam param = {
      .rspErr = TMQ_RESP_ERR__SUCCESS,
      .tmq = tmq,
  };
L
Liu Jicong 已提交
530 531
  tsem_init(&param.rspSem, 0, 0);

X
Xiaoyu Wang 已提交
532 533 534 535 536
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
537 538

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
539 540
  sendInfo->param = &param;
  sendInfo->fp = tmqSubscribeCb;
541 542 543 544 545
  SEpSet epSet = getEpSet_s(&tmq->pTscObj->pAppInfo->mgmtEp);

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

L
Liu Jicong 已提交
546 547
  tsem_wait(&param.rspSem);
  tsem_destroy(&param.rspSem);
548 549 550

_return:
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
551
  /*destroySendMsgInfo(sendInfo);*/
552 553
  /*}*/

L
Liu Jicong 已提交
554
  return param.rspErr;
555 556
}

L
Liu Jicong 已提交
557
void tmq_conf_set_offset_commit_cb(tmq_conf_t* conf, tmq_commit_cb* cb) { conf->commit_cb = cb; }
558

L
Liu Jicong 已提交
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
TAOS_RES* tmq_create_stream(TAOS* taos, const char* streamName, const char* tbName, const char* sql) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
  SQuery*      pQueryNode = NULL;
  char*        astStr = NULL;
  int32_t      sqlLen;

  terrno = TSDB_CODE_SUCCESS;
  if (taos == NULL || streamName == NULL || sql == NULL) {
    tscError("invalid parameters for creating stream, connObj:%p, stream name:%s, sql:%s", taos, streamName, sql);
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }
  sqlLen = strlen(sql);

L
Liu Jicong 已提交
574 575
  if (strlen(tbName) >= TSDB_TABLE_NAME_LEN) {
    tscError("output tb name too long, max length:%d", TSDB_TABLE_NAME_LEN - 1);
L
Liu Jicong 已提交
576 577 578 579 580 581 582 583 584 585 586 587
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }

  if (sqlLen > TSDB_MAX_ALLOWED_SQL_LEN) {
    tscError("sql string exceeds max length:%d", TSDB_MAX_ALLOWED_SQL_LEN);
    terrno = TSDB_CODE_TSC_EXCEED_SQL_LIMIT;
    goto _return;
  }

  tscDebug("start to create stream: %s", streamName);

H
Haojun Liao 已提交
588
  int32_t code = 0;
L
Liu Jicong 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, false, &pQueryNode), _return);

  // todo check for invalid sql statement and return with error code

  CHECK_CODE_GOTO(nodesNodeToString(pQueryNode->pRoot, false, &astStr, NULL), _return);

  /*printf("%s\n", pStr);*/

  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, streamName);

  SCMCreateStreamReq req = {
      .igExists = 1,
      .ast = astStr,
      .sql = (char*)sql,
  };
  tNameExtractFullName(&name, req.name);
L
Liu Jicong 已提交
608
  strcpy(req.outputSTbName, tbName);
L
Liu Jicong 已提交
609 610

  int   tlen = tSerializeSCMCreateStreamReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
611
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
  if (buf == NULL) {
    goto _return;
  }

  tSerializeSCMCreateStreamReq(buf, tlen, &req);
  /*printf("formatted: %s\n", dagStr);*/

  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
  pRequest->type = TDMT_MND_CREATE_STREAM;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);

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

  tsem_wait(&pRequest->body.rspSem);

_return:
wafwerar's avatar
wafwerar 已提交
635
  taosMemoryFreeClear(astStr);
L
Liu Jicong 已提交
636 637 638 639 640 641 642 643 644 645 646 647
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
  /*destroySendMsgInfo(sendInfo);*/
  /*}*/

  if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {
    pRequest->code = terrno;
  }

  return pRequest;
}

L
Liu Jicong 已提交
648
#if 0
L
Liu Jicong 已提交
649 650 651
TAOS_RES* tmq_create_topic(TAOS* taos, const char* topicName, const char* sql, int sqlLen) {
  STscObj*     pTscObj = (STscObj*)taos;
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
652
  SQuery*      pQueryNode = NULL;
L
Liu Jicong 已提交
653
  char*        astStr = NULL;
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673

  terrno = TSDB_CODE_SUCCESS;
  if (taos == NULL || topicName == NULL || sql == NULL) {
    tscError("invalid parameters for creating topic, connObj:%p, topic name:%s, sql:%s", taos, topicName, sql);
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }

  if (strlen(topicName) >= TSDB_TOPIC_NAME_LEN) {
    tscError("topic name too long, max length:%d", TSDB_TOPIC_NAME_LEN - 1);
    terrno = TSDB_CODE_TSC_INVALID_INPUT;
    goto _return;
  }

  if (sqlLen > TSDB_MAX_ALLOWED_SQL_LEN) {
    tscError("sql string exceeds max length:%d", TSDB_MAX_ALLOWED_SQL_LEN);
    terrno = TSDB_CODE_TSC_EXCEED_SQL_LIMIT;
    goto _return;
  }

L
Liu Jicong 已提交
674
  tscDebug("start to create topic: %s", topicName);
675

X
Xiaoyu Wang 已提交
676
  int32_t code = TSDB_CODE_SUCCESS;
X
Xiaoyu Wang 已提交
677 678
  CHECK_CODE_GOTO(buildRequest(pTscObj, sql, sqlLen, &pRequest), _return);
  CHECK_CODE_GOTO(parseSql(pRequest, true, &pQueryNode), _return);
679 680 681

  // todo check for invalid sql statement and return with error code

L
Liu Jicong 已提交
682
  CHECK_CODE_GOTO(nodesNodeToString(pQueryNode->pRoot, false, &astStr, NULL), _return);
683

L
Liu Jicong 已提交
684
  /*printf("%s\n", pStr);*/
685

L
Liu Jicong 已提交
686
  SName name = {.acctId = pTscObj->acctId, .type = TSDB_TABLE_NAME_T};
X
Xiaoyu Wang 已提交
687 688
  strcpy(name.dbname, pRequest->pDb);
  strcpy(name.tname, topicName);
689

L
Liu Jicong 已提交
690
  SCMCreateTopicReq req = {
L
Liu Jicong 已提交
691
      .igExists = 1,
L
Liu Jicong 已提交
692
      .ast = astStr,
L
Liu Jicong 已提交
693
      .sql = (char*)sql,
694
  };
L
Liu Jicong 已提交
695
  tNameExtractFullName(&name, req.name);
696

L
Liu Jicong 已提交
697
  int   tlen = tSerializeSCMCreateTopicReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
698
  void* buf = taosMemoryMalloc(tlen);
699 700 701 702
  if (buf == NULL) {
    goto _return;
  }

L
Liu Jicong 已提交
703
  tSerializeSCMCreateTopicReq(buf, tlen, &req);
704 705
  /*printf("formatted: %s\n", dagStr);*/

L
Liu Jicong 已提交
706 707 708 709 710
  pRequest->body.requestMsg = (SDataBuf){
      .pData = buf,
      .len = tlen,
      .handle = NULL,
  };
711 712 713
  pRequest->type = TDMT_MND_CREATE_TOPIC;

  SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
L
Liu Jicong 已提交
714
  SEpSet        epSet = getEpSet_s(&pTscObj->pAppInfo->mgmtEp);
715 716 717 718 719

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

  tsem_wait(&pRequest->body.rspSem);
X
Xiaoyu Wang 已提交
720

721
_return:
wafwerar's avatar
wafwerar 已提交
722
  taosMemoryFreeClear(astStr);
723 724
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
L
Liu Jicong 已提交
725
  /*destroySendMsgInfo(sendInfo);*/
726 727 728 729 730 731 732 733
  /*}*/

  if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {
    pRequest->code = terrno;
  }

  return pRequest;
}
L
Liu Jicong 已提交
734
#endif
735

L
Liu Jicong 已提交
736
static char* formatTimestamp(char* buf, int64_t val, int precision) {
737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
  time_t  tt;
  int32_t ms = 0;
  if (precision == TSDB_TIME_PRECISION_NANO) {
    tt = (time_t)(val / 1000000000);
    ms = val % 1000000000;
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
    tt = (time_t)(val / 1000000);
    ms = val % 1000000;
  } else {
    tt = (time_t)(val / 1000);
    ms = val % 1000;
  }

  /* comment out as it make testcases like select_with_tags.sim fail.
    but in windows, this may cause the call to localtime crash if tt < 0,
    need to find a better solution.
    if (tt < 0) {
      tt = 0;
    }
    */

#ifdef WINDOWS
  if (tt < 0) tt = 0;
#endif
  if (tt <= 0 && ms < 0) {
    tt--;
    if (precision == TSDB_TIME_PRECISION_NANO) {
      ms += 1000000000;
    } else if (precision == TSDB_TIME_PRECISION_MICRO) {
      ms += 1000000;
    } else {
      ms += 1000;
    }
  }

L
Liu Jicong 已提交
772
  struct tm* ptm = localtime(&tt);
773 774 775 776 777 778 779 780 781 782 783 784 785
  size_t     pos = strftime(buf, 35, "%Y-%m-%d %H:%M:%S", ptm);

  if (precision == TSDB_TIME_PRECISION_NANO) {
    sprintf(buf + pos, ".%09d", ms);
  } else if (precision == TSDB_TIME_PRECISION_MICRO) {
    sprintf(buf + pos, ".%06d", ms);
  } else {
    sprintf(buf + pos, ".%03d", ms);
  }

  return buf;
}

L
Liu Jicong 已提交
786 787
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
788
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
789 790 791
  return pRsp->skipLogNum;
}

L
Liu Jicong 已提交
792 793 794
void tmqShowMsg(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;

L
Liu Jicong 已提交
795 796
  static bool noPrintSchema;
  char        pBuf[128];
L
Liu Jicong 已提交
797
  SMqPollRsp* pRsp = &tmq_message->msg;
L
fix  
Liu Jicong 已提交
798
  int32_t     colNum = 2;
L
Liu Jicong 已提交
799 800 801 802
  if (!noPrintSchema) {
    printf("|");
    for (int32_t i = 0; i < colNum; i++) {
      if (i == 0)
L
Liu Jicong 已提交
803
        printf(" %25s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
804
      else
L
Liu Jicong 已提交
805
        printf(" %15s |", pRsp->schema->pSchema[i].name);
L
Liu Jicong 已提交
806 807 808 809
    }
    printf("\n");
    printf("===============================================\n");
    noPrintSchema = true;
810
  }
L
Liu Jicong 已提交
811
  int32_t sz = taosArrayGetSize(pRsp->pBlockData);
812
  for (int32_t i = 0; i < sz; i++) {
L
Liu Jicong 已提交
813 814
    SSDataBlock* pDataBlock = taosArrayGet(pRsp->pBlockData, i);
    int32_t      rows = pDataBlock->info.rows;
815 816 817 818
    for (int32_t j = 0; j < rows; j++) {
      printf("|");
      for (int32_t k = 0; k < colNum; k++) {
        SColumnInfoData* pColInfoData = taosArrayGet(pDataBlock->pDataBlock, k);
L
Liu Jicong 已提交
819 820
        void*            var = POINTER_SHIFT(pColInfoData->pData, j * pColInfoData->info.bytes);
        switch (pColInfoData->info.type) {
821 822 823 824 825 826 827 828 829 830 831 832 833
          case TSDB_DATA_TYPE_TIMESTAMP:
            formatTimestamp(pBuf, *(uint64_t*)var, TSDB_TIME_PRECISION_MILLI);
            printf(" %25s |", pBuf);
            break;
          case TSDB_DATA_TYPE_INT:
          case TSDB_DATA_TYPE_UINT:
            printf(" %15u |", *(uint32_t*)var);
            break;
        }
      }
      printf("\n");
    }
  }
L
Liu Jicong 已提交
834 835 836
}

int32_t tmqPollCb(void* param, const SDataBuf* pMsg, int32_t code) {
L
fix  
Liu Jicong 已提交
837
  /*printf("recv poll\n");*/
X
Xiaoyu Wang 已提交
838 839 840
  SMqPollCbParam* pParam = (SMqPollCbParam*)param;
  SMqClientVg*    pVg = pParam->pVg;
  tmq_t*          tmq = pParam->tmq;
L
Liu Jicong 已提交
841
  if (code != 0) {
L
Liu Jicong 已提交
842
    tscWarn("msg discard, code:%x", code);
L
fix txn  
Liu Jicong 已提交
843
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
844 845
  }

X
Xiaoyu Wang 已提交
846 847 848
  int32_t msgEpoch = ((SMqRspHead*)pMsg->pData)->epoch;
  int32_t tmqEpoch = atomic_load_32(&tmq->epoch);
  if (msgEpoch < tmqEpoch) {
L
fix  
Liu Jicong 已提交
849
    /*printf("discard rsp epoch %d, current epoch %d\n", msgEpoch, tmqEpoch);*/
L
temp  
Liu Jicong 已提交
850
    /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
851
    tscWarn("discard rsp epoch %d, current epoch %d", msgEpoch, tmqEpoch);
X
Xiaoyu Wang 已提交
852 853 854 855
    return 0;
  }

  if (msgEpoch != tmqEpoch) {
L
Liu Jicong 已提交
856
    tscWarn("mismatch rsp epoch %d, current epoch %d", msgEpoch, tmqEpoch);
L
fix  
Liu Jicong 已提交
857 858
  } else {
    atomic_sub_fetch_32(&tmq->waitingRequest, 1);
X
Xiaoyu Wang 已提交
859 860
  }

L
Liu Jicong 已提交
861
#if 0
L
Liu Jicong 已提交
862
  if (pParam->sync == 1) {
wafwerar's avatar
wafwerar 已提交
863
    /**pParam->msg = taosMemoryMalloc(sizeof(tmq_message_t));*/
L
Liu Jicong 已提交
864 865 866 867 868 869 870 871 872 873 874 875 876 877
    *pParam->msg = taosAllocateQitem(sizeof(tmq_message_t));
    if (*pParam->msg) {
      memcpy(*pParam->msg, pMsg->pData, sizeof(SMqRspHead));
      tDecodeSMqConsumeRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &((*pParam->msg)->consumeRsp));
      if ((*pParam->msg)->consumeRsp.numOfTopics != 0) {
        pVg->currentOffset = (*pParam->msg)->consumeRsp.rspOffset;
      }
      taosWriteQitem(tmq->mqueue, *pParam->msg);
      tsem_post(&pParam->rspSem);
      return 0;
    }
    tsem_post(&pParam->rspSem);
    return -1;
  }
L
Liu Jicong 已提交
878
#endif
L
Liu Jicong 已提交
879

wafwerar's avatar
wafwerar 已提交
880
  /*SMqConsumeRsp* pRsp = taosMemoryCalloc(1, sizeof(SMqConsumeRsp));*/
X
Xiaoyu Wang 已提交
881
  tmq_message_t* pRsp = taosAllocateQitem(sizeof(tmq_message_t));
L
Liu Jicong 已提交
882
  if (pRsp == NULL) {
L
fix txn  
Liu Jicong 已提交
883
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
884
  }
X
Xiaoyu Wang 已提交
885
  memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
886 887 888
  tDecodeSMqPollRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &pRsp->msg);
  pRsp->iter.curBlock = 0;
  pRsp->iter.curRow = 0;
L
Liu Jicong 已提交
889 890
  // TODO: alloc mem
  /*pRsp->*/
891
  /*printf("rsp commit off:%ld rsp off:%ld has data:%d\n", pRsp->committedOffset, pRsp->rspOffset, pRsp->numOfTopics);*/
L
temp  
Liu Jicong 已提交
892
#if 0
L
Liu Jicong 已提交
893
  if (pRsp->msg.numOfTopics == 0) {
L
fix  
Liu Jicong 已提交
894
    /*printf("no data\n");*/
X
Xiaoyu Wang 已提交
895
    taosFreeQitem(pRsp);
L
fix txn  
Liu Jicong 已提交
896
    goto CREATE_MSG_FAIL;
L
Liu Jicong 已提交
897
  }
L
temp  
Liu Jicong 已提交
898
#endif
L
Liu Jicong 已提交
899

L
temp  
Liu Jicong 已提交
900
  tscDebug("consumer %ld recv poll: vg %d, req offset %ld, rsp offset %ld", tmq->consumerId, pParam->pVg->vgId, pRsp->msg.reqOffset,
L
fix  
Liu Jicong 已提交
901 902
           pRsp->msg.rspOffset);

L
Liu Jicong 已提交
903
  pRsp->vg = pParam->pVg;
X
Xiaoyu Wang 已提交
904
  taosWriteQitem(tmq->mqueue, pRsp);
L
Liu Jicong 已提交
905
  atomic_add_fetch_32(&tmq->readyRequest, 1);
L
temp  
Liu Jicong 已提交
906
  /*tsem_post(&tmq->rspSem);*/
907
  return 0;
L
Liu Jicong 已提交
908

L
fix txn  
Liu Jicong 已提交
909
CREATE_MSG_FAIL:
L
Liu Jicong 已提交
910 911 912
  if (pParam->epoch == tmq->epoch) {
    atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
  }
L
temp  
Liu Jicong 已提交
913
  /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
914
  return code;
915 916
}

X
Xiaoyu Wang 已提交
917
bool tmqUpdateEp(tmq_t* tmq, int32_t epoch, SMqCMGetSubEpRsp* pRsp) {
L
Liu Jicong 已提交
918
  /*printf("call update ep %d\n", epoch);*/
L
temp  
Liu Jicong 已提交
919
  tscDebug("consumer %ld update ep epoch %d to epoch %d", tmq->consumerId, tmq->epoch, epoch);
X
Xiaoyu Wang 已提交
920
  bool    set = false;
L
Liu Jicong 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934
  int32_t topicNumGet = taosArrayGetSize(pRsp->topics);
  char    vgKey[TSDB_TOPIC_FNAME_LEN + 22];
  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 已提交
935 936
    SMqClientTopic topic = {0};
    SMqSubTopicEp* pTopicEp = taosArrayGet(pRsp->topics, i);
L
Liu Jicong 已提交
937
    taosHashClear(pHash);
X
Xiaoyu Wang 已提交
938
    topic.topicName = strdup(pTopicEp->topic);
L
Liu Jicong 已提交
939 940 941 942 943 944 945 946 947 948 949

    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);
        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
temp  
Liu Jicong 已提交
950
          tscDebug("consumer %ld epoch %d vg %d build %s\n", tmq->consumerId, epoch, pVgCur->vgId, vgKey);
L
Liu Jicong 已提交
951 952 953 954 955 956 957 958 959
          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 已提交
960
      SMqSubVgEp* pVgEp = taosArrayGet(pTopicEp->vgs, j);
L
Liu Jicong 已提交
961 962 963
      sprintf(vgKey, "%s:%d", topic.topicName, pVgEp->vgId);
      int64_t* pOffset = taosHashGet(pHash, vgKey, strlen(vgKey));
      int64_t  offset = pVgEp->offset;
L
temp  
Liu Jicong 已提交
964
      tscDebug("consumer %ld epoch %d vg %d offset og to %ld\n", tmq->consumerId, epoch, pVgEp->vgId, offset);
L
Liu Jicong 已提交
965 966
      if (pOffset != NULL) {
        offset = *pOffset;
L
temp  
Liu Jicong 已提交
967
        tscDebug("consumer %ld epoch %d vg %d found %s\n", tmq->consumerId, epoch, pVgEp->vgId, vgKey);
L
Liu Jicong 已提交
968
      }
L
temp  
Liu Jicong 已提交
969
      tscDebug("consumer %ld epoch %d vg %d offset set to %ld\n", tmq->consumerId, epoch, pVgEp->vgId, offset);
X
Xiaoyu Wang 已提交
970 971
      SMqClientVg clientVg = {
          .pollCnt = 0,
L
Liu Jicong 已提交
972
          .currentOffset = offset,
X
Xiaoyu Wang 已提交
973 974 975
          .vgId = pVgEp->vgId,
          .epSet = pVgEp->epSet,
          .vgStatus = TMQ_VG_STATUS__IDLE,
L
temp  
Liu Jicong 已提交
976
          .skipCnt = 0,
X
Xiaoyu Wang 已提交
977 978 979 980
      };
      taosArrayPush(topic.vgs, &clientVg);
      set = true;
    }
L
Liu Jicong 已提交
981
    taosArrayPush(newTopics, &topic);
X
Xiaoyu Wang 已提交
982
  }
L
Liu Jicong 已提交
983
  if (tmq->clientTopics) taosArrayDestroy(tmq->clientTopics);
L
Liu Jicong 已提交
984
  taosHashCleanup(pHash);
L
Liu Jicong 已提交
985
  tmq->clientTopics = newTopics;
X
Xiaoyu Wang 已提交
986 987 988 989
  atomic_store_32(&tmq->epoch, epoch);
  return set;
}

L
Liu Jicong 已提交
990
int32_t tmqAskEpCb(void* param, const SDataBuf* pMsg, int32_t code) {
991
  SMqAskEpCbParam* pParam = (SMqAskEpCbParam*)param;
L
Liu Jicong 已提交
992
  tmq_t*           tmq = pParam->tmq;
993
  if (code != 0) {
L
temp  
Liu Jicong 已提交
994
    tscError("consumer %ld get topic endpoint error, not ready, wait:%d", tmq->consumerId, pParam->sync);
L
Liu Jicong 已提交
995
    goto END;
996
  }
L
Liu Jicong 已提交
997

L
Liu Jicong 已提交
998
  // tmq's epoch is monotonically increase,
L
Liu Jicong 已提交
999
  // so it's safe to discard any old epoch msg.
L
Liu Jicong 已提交
1000
  // Epoch will only increase when received newer epoch ep msg
L
Liu Jicong 已提交
1001 1002
  SMqRspHead* head = pMsg->pData;
  int32_t     epoch = atomic_load_32(&tmq->epoch);
L
temp  
Liu Jicong 已提交
1003
  tscDebug("consumer %ld recv ep, msg epoch %d, current epoch %d", tmq->consumerId, head->epoch, epoch);
L
Liu Jicong 已提交
1004 1005
  if (head->epoch <= epoch) {
    goto END;
1006
  }
L
Liu Jicong 已提交
1007

X
Xiaoyu Wang 已提交
1008 1009 1010 1011 1012
  if (pParam->sync) {
    SMqCMGetSubEpRsp rsp;
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), &rsp);
    /*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 已提交
1013
    if (tmqUpdateEp(tmq, head->epoch, &rsp)) {
X
Xiaoyu Wang 已提交
1014
      atomic_store_64(&tmq->status, TMQ_CONSUMER_STATUS__READY);
1015
    }
X
Xiaoyu Wang 已提交
1016 1017
    tDeleteSMqCMGetSubEpRsp(&rsp);
  } else {
L
Liu Jicong 已提交
1018
    SMqCMGetSubEpRsp* pRsp = taosAllocateQitem(sizeof(SMqCMGetSubEpRsp));
X
Xiaoyu Wang 已提交
1019 1020
    if (pRsp == NULL) {
      terrno = TSDB_CODE_OUT_OF_MEMORY;
L
Liu Jicong 已提交
1021 1022
      code = -1;
      goto END;
X
Xiaoyu Wang 已提交
1023 1024
    }
    memcpy(pRsp, pMsg->pData, sizeof(SMqRspHead));
L
Liu Jicong 已提交
1025
    tDecodeSMqCMGetSubEpRsp(POINTER_SHIFT(pMsg->pData, sizeof(SMqRspHead)), pRsp);
L
Liu Jicong 已提交
1026

X
Xiaoyu Wang 已提交
1027
    taosWriteQitem(tmq->mqueue, pRsp);
L
temp  
Liu Jicong 已提交
1028
    /*tsem_post(&tmq->rspSem);*/
1029
  }
L
Liu Jicong 已提交
1030 1031

END:
L
fix txn  
Liu Jicong 已提交
1032
  atomic_store_8(&tmq->epStatus, 0);
L
Liu Jicong 已提交
1033 1034 1035 1036
  if (pParam->sync) {
    tsem_post(&pParam->rspSem);
  }
  return code;
1037 1038
}

X
Xiaoyu Wang 已提交
1039
int32_t tmqAskEp(tmq_t* tmq, bool sync) {
L
fix txn  
Liu Jicong 已提交
1040 1041
  int8_t epStatus = atomic_val_compare_exchange_8(&tmq->epStatus, 0, 1);
  if (epStatus == 1) {
L
temp  
Liu Jicong 已提交
1042 1043 1044
    int32_t epSkipCnt = atomic_add_fetch_32(&tmq->epSkipCnt, 1);
    tscDebug("consumer %ld skip ask ep cnt %d", tmq->consumerId, epSkipCnt);
    if (epSkipCnt < 40) return 0;
L
fix txn  
Liu Jicong 已提交
1045
  }
L
temp  
Liu Jicong 已提交
1046
  atomic_store_32(&tmq->epSkipCnt, 0);
L
Liu Jicong 已提交
1047
  int32_t           tlen = sizeof(SMqCMGetSubEpReq);
wafwerar's avatar
wafwerar 已提交
1048
  SMqCMGetSubEpReq* req = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
1049
  if (req == NULL) {
L
Liu Jicong 已提交
1050
    tscError("failed to malloc get subscribe ep buf");
L
add log  
Liu Jicong 已提交
1051
    atomic_store_8(&tmq->epStatus, 0);
L
Liu Jicong 已提交
1052
    return -1;
L
Liu Jicong 已提交
1053
  }
L
Liu Jicong 已提交
1054 1055 1056
  req->consumerId = htobe64(tmq->consumerId);
  req->epoch = htonl(tmq->epoch);
  strcpy(req->cgroup, tmq->groupId);
1057

wafwerar's avatar
wafwerar 已提交
1058
  SMqAskEpCbParam* pParam = taosMemoryMalloc(sizeof(SMqAskEpCbParam));
L
Liu Jicong 已提交
1059 1060
  if (pParam == NULL) {
    tscError("failed to malloc subscribe param");
wafwerar's avatar
wafwerar 已提交
1061
    taosMemoryFree(req);
L
add log  
Liu Jicong 已提交
1062
    atomic_store_8(&tmq->epStatus, 0);
L
Liu Jicong 已提交
1063
    return -1;
L
Liu Jicong 已提交
1064 1065
  }
  pParam->tmq = tmq;
X
Xiaoyu Wang 已提交
1066 1067
  pParam->sync = sync;
  tsem_init(&pParam->rspSem, 0, 0);
1068

wafwerar's avatar
wafwerar 已提交
1069
  SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1070 1071
  if (sendInfo == NULL) {
    tsem_destroy(&pParam->rspSem);
wafwerar's avatar
wafwerar 已提交
1072 1073
    taosMemoryFree(pParam);
    taosMemoryFree(req);
L
add log  
Liu Jicong 已提交
1074
    atomic_store_8(&tmq->epStatus, 0);
L
Liu Jicong 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
    return -1;
  }

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1085 1086 1087
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1088
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
1089

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

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

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

X
Xiaoyu Wang 已提交
1097
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1098
  return 0;
1099 1100
}

L
Liu Jicong 已提交
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
tmq_resp_err_t tmq_seek(tmq_t* tmq, const tmq_topic_vgroup_t* offset) {
  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 已提交
1115
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1116 1117 1118 1119 1120 1121 1122 1123
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
1124
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
  int64_t reqOffset;
  if (pVg->currentOffset >= 0) {
    reqOffset = pVg->currentOffset;
  } else {
    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;
    }
    reqOffset = tmq->resetOffsetCfg;
  }

wafwerar's avatar
wafwerar 已提交
1136
  SMqPollReq* pReq = taosMemoryMalloc(sizeof(SMqPollReq));
1137 1138 1139
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1140

L
Liu Jicong 已提交
1141
  strcpy(pReq->topic, pTopic->topicName);
1142 1143
  strcpy(pReq->cgroup, tmq->groupId);

L
fix  
Liu Jicong 已提交
1144
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
1145
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1146
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1147
  pReq->currentOffset = reqOffset;
1148 1149

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1150
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1151 1152 1153
  return pReq;
}

L
Liu Jicong 已提交
1154
#if 0
L
Liu Jicong 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
tmq_message_t* tmqSyncPollImpl(tmq_t* tmq, int64_t blockingTime) {
  tmq_message_t* msg = NULL;
  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) {*/
      /*continue;*/
      /*}*/
L
Liu Jicong 已提交
1165
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
L
Liu Jicong 已提交
1166 1167 1168 1169 1170
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
X
Xiaoyu Wang 已提交
1171

wafwerar's avatar
wafwerar 已提交
1172
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1173
      if (pParam == NULL) {
L
Liu Jicong 已提交
1174 1175 1176 1177
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
L
Liu Jicong 已提交
1178 1179 1180 1181 1182 1183 1184
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 1;
      pParam->msg = &msg;
      tsem_init(&pParam->rspSem, 0, 0);

wafwerar's avatar
wafwerar 已提交
1185
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1186 1187 1188 1189 1190
      if (sendInfo == NULL) {
        return NULL;
      }

      sendInfo->msgInfo = (SDataBuf){
L
Liu Jicong 已提交
1191
          .pData = pReq,
L
Liu Jicong 已提交
1192
          .len = sizeof(SMqPollReq),
L
Liu Jicong 已提交
1193 1194
          .handle = NULL,
      };
L
Liu Jicong 已提交
1195
      sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1196
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1197
      sendInfo->param = pParam;
L
Liu Jicong 已提交
1198
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1199
      sendInfo->msgType = TDMT_VND_CONSUME;
L
Liu Jicong 已提交
1200 1201 1202 1203 1204 1205 1206 1207

      int64_t transporterId = 0;
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;

L
Liu Jicong 已提交
1208
      tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1209 1210 1211 1212
      tmq_message_t* nmsg = NULL;
      while (1) {
        taosReadQitem(tmq->mqueue, (void**)&nmsg);
        if (nmsg == NULL) continue;
L
Liu Jicong 已提交
1213 1214 1215
        while (nmsg->head.mqMsgType != TMQ_MSG_TYPE__POLL_RSP) {
          taosReadQitem(tmq->mqueue, (void**)&nmsg);
        }
L
Liu Jicong 已提交
1216 1217 1218
        return nmsg;
      }
    }
X
Xiaoyu Wang 已提交
1219
  }
L
Liu Jicong 已提交
1220
  return NULL;
X
Xiaoyu Wang 已提交
1221
}
L
Liu Jicong 已提交
1222
#endif
X
Xiaoyu Wang 已提交
1223 1224

int32_t tmqPollImpl(tmq_t* tmq, int64_t blockingTime) {
L
fix  
Liu Jicong 已提交
1225
  /*printf("call poll\n");*/
X
Xiaoyu Wang 已提交
1226 1227 1228 1229 1230 1231
  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
temp  
Liu Jicong 已提交
1232 1233
        int64_t skipCnt = atomic_add_fetch_64(&pVg->skipCnt, 1);
        tscDebug("consumer %ld skip vg %d skip cnt %ld", tmq->consumerId, pVg->vgId, skipCnt);
X
Xiaoyu Wang 已提交
1234
        continue;
L
temp  
Liu Jicong 已提交
1235 1236 1237 1238 1239 1240 1241
#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 已提交
1242
      }
L
temp  
Liu Jicong 已提交
1243
      atomic_store_64(&pVg->skipCnt, 0);
L
Liu Jicong 已提交
1244
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
X
Xiaoyu Wang 已提交
1245 1246
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1247
        /*tsem_post(&tmq->rspSem);*/
X
Xiaoyu Wang 已提交
1248 1249
        return -1;
      }
wafwerar's avatar
wafwerar 已提交
1250
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1251
      if (pParam == NULL) {
wafwerar's avatar
wafwerar 已提交
1252
        taosMemoryFree(pReq);
X
Xiaoyu Wang 已提交
1253
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1254
        /*tsem_post(&tmq->rspSem);*/
X
Xiaoyu Wang 已提交
1255 1256
        return -1;
      }
L
Liu Jicong 已提交
1257 1258 1259 1260 1261
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->epoch = tmq->epoch;
      pParam->sync = 0;

wafwerar's avatar
wafwerar 已提交
1262
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1263
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1264 1265
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1266
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1267
        /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
1268 1269 1270 1271
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1272
          .pData = pReq,
L
Liu Jicong 已提交
1273
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1274 1275
          .handle = NULL,
      };
L
Liu Jicong 已提交
1276
      sendInfo->requestId = generateRequestId();
X
Xiaoyu Wang 已提交
1277
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1278
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1279
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1280
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1281 1282

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1283 1284
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
L
add log  
Liu Jicong 已提交
1285
      tscDebug("consumer %ld send poll: vg %d, req offset %ld", tmq->consumerId, pVg->vgId, pVg->currentOffset);
L
fix  
Liu Jicong 已提交
1286
      /*printf("send vg %d %ld\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

// return
L
temp  
Liu Jicong 已提交
1296
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspHead* rspHead, bool* pReset) {
L
Liu Jicong 已提交
1297
  if (rspHead->mqMsgType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1298
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1299 1300 1301
    if (rspHead->epoch > atomic_load_32(&tmq->epoch)) {
      SMqCMGetSubEpRsp* rspMsg = (SMqCMGetSubEpRsp*)rspHead;
      tmqUpdateEp(tmq, rspHead->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1302
      /*tmqClearUnhandleMsg(tmq);*/
X
Xiaoyu Wang 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
      *pReset = true;
    } else {
      *pReset = false;
    }
  } else {
    return -1;
  }
  return 0;
}

tmq_message_t* tmqHandleAllRsp(tmq_t* tmq, int64_t blockingTime, bool pollIfReset) {
  while (1) {
L
Liu Jicong 已提交
1315 1316 1317
    SMqRspHead* rspHead = NULL;
    taosGetQitem(tmq->qall, (void**)&rspHead);
    if (rspHead == NULL) {
L
Liu Jicong 已提交
1318
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1319 1320
      taosGetQitem(tmq->qall, (void**)&rspHead);
      if (rspHead == NULL) return NULL;
X
Xiaoyu Wang 已提交
1321 1322
    }

L
Liu Jicong 已提交
1323 1324
    if (rspHead->mqMsgType == TMQ_MSG_TYPE__POLL_RSP) {
      tmq_message_t* rspMsg = (tmq_message_t*)rspHead;
L
Liu Jicong 已提交
1325
      atomic_sub_fetch_32(&tmq->readyRequest, 1);
L
fix  
Liu Jicong 已提交
1326
      /*printf("handle poll rsp %d\n", rspMsg->head.mqMsgType);*/
L
Liu Jicong 已提交
1327
      if (rspMsg->msg.head.epoch == atomic_load_32(&tmq->epoch)) {
L
fix  
Liu Jicong 已提交
1328
        /*printf("epoch match\n");*/
L
Liu Jicong 已提交
1329
        SMqClientVg* pVg = rspMsg->vg;
L
Liu Jicong 已提交
1330
        /*printf("vg %d offset %ld up to %ld\n", pVg->vgId, pVg->currentOffset, rspMsg->msg.rspOffset);*/
L
Liu Jicong 已提交
1331
        pVg->currentOffset = rspMsg->msg.rspOffset;
X
Xiaoyu Wang 已提交
1332
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1333 1334 1335 1336 1337
        if (rspMsg->msg.numOfTopics == 0) {
          taosFreeQitem(rspMsg);
          rspHead = NULL;
          continue;
        }
X
Xiaoyu Wang 已提交
1338 1339
        return rspMsg;
      } else {
L
Liu Jicong 已提交
1340
        /*printf("epoch mismatch\n");*/
X
Xiaoyu Wang 已提交
1341 1342 1343
        taosFreeQitem(rspMsg);
      }
    } else {
L
fix  
Liu Jicong 已提交
1344
      /*printf("handle ep rsp %d\n", rspMsg->head.mqMsgType);*/
X
Xiaoyu Wang 已提交
1345
      bool reset = false;
L
temp  
Liu Jicong 已提交
1346
      tmqHandleNoPollRsp(tmq, rspHead, &reset);
L
Liu Jicong 已提交
1347
      taosFreeQitem(rspHead);
X
Xiaoyu Wang 已提交
1348
      if (pollIfReset && reset) {
L
add log  
Liu Jicong 已提交
1349
        tscDebug("consumer %ld reset and repoll", tmq->consumerId);
X
Xiaoyu Wang 已提交
1350 1351 1352 1353 1354 1355
        tmqPollImpl(tmq, blockingTime);
      }
    }
  }
}

L
Liu Jicong 已提交
1356
#if 0
L
Liu Jicong 已提交
1357
tmq_message_t* tmq_consumer_poll_v1(tmq_t* tmq, int64_t blocking_time) {
X
Xiaoyu Wang 已提交
1358 1359
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
1360 1361

  int64_t status = atomic_load_64(&tmq->status);
X
Xiaoyu Wang 已提交
1362 1363
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
Liu Jicong 已提交
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
  while (1) {
    rspMsg = tmqSyncPollImpl(tmq, blocking_time);
    if (rspMsg && rspMsg->consumeRsp.numOfTopics) {
      return rspMsg;
    }

    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    } else
      return NULL;
X
Xiaoyu Wang 已提交
1377
  }
L
Liu Jicong 已提交
1378
}
L
Liu Jicong 已提交
1379
#endif
X
Xiaoyu Wang 已提交
1380

L
Liu Jicong 已提交
1381 1382
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* rspMsg;
L
Liu Jicong 已提交
1383 1384
  int64_t        startTime = taosGetTimestampMs();

L
Liu Jicong 已提交
1385
  // TODO: put into another thread or delayed queue
1386
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
1387 1388
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
fix  
Liu Jicong 已提交
1389 1390 1391 1392
  rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspMsg) {
    return rspMsg;
  }
X
Xiaoyu Wang 已提交
1393 1394 1395

  while (1) {
    /*printf("cycle\n");*/
L
Liu Jicong 已提交
1396
    tmqAskEp(tmq, false);
L
Liu Jicong 已提交
1397
    tmqPollImpl(tmq, blocking_time);
L
Liu Jicong 已提交
1398

L
temp  
Liu Jicong 已提交
1399
    /*tsem_wait(&tmq->rspSem);*/
L
Liu Jicong 已提交
1400 1401

    rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
X
Xiaoyu Wang 已提交
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
        return NULL;
      }
    }
  }
}

#if 0
1415

L
Liu Jicong 已提交
1416
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
1417 1418
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1419 1420 1421

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1422
    /*printf("over1\n");*/
wafwerar's avatar
wafwerar 已提交
1423
    taosMsleep(blocking_time);
1424 1425 1426 1427
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1428
    /*printf("over2\n");*/
wafwerar's avatar
wafwerar 已提交
1429
    taosMsleep(blocking_time);
1430 1431 1432
    return NULL;
  }

L
Liu Jicong 已提交
1433
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1434
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1435
  while (1) {
L
Liu Jicong 已提交
1436 1437 1438
    pTopic->nextVgIdx = (pTopic->nextVgIdx + 1) % taosArrayGetSize(pTopic->vgs);
    SMqClientVg* pVg = taosArrayGet(pTopic->vgs, pTopic->nextVgIdx);
    /*printf("consume vg %d, offset %ld\n", pVg->vgId, pVg->currentOffset);*/
L
Liu Jicong 已提交
1439
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1440 1441
    if (pReq == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1442
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1443 1444
      return NULL;
    }
1445

wafwerar's avatar
wafwerar 已提交
1446
    SMqPollCbParam* param = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1447 1448
    if (param == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1449
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1450 1451 1452 1453 1454 1455 1456 1457
      return NULL;
    }
    param->tmq = tmq;
    param->retMsg = &tmq_message;
    param->pVg = pVg;
    tsem_init(&param->rspSem, 0, 0);

    SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
X
Xiaoyu Wang 已提交
1458 1459 1460 1461 1462
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1463

L
Liu Jicong 已提交
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
    SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
    sendInfo->requestObjRefId = 0;
    sendInfo->param = param;
    sendInfo->fp = tmqPollCb;

    /*printf("req offset: %ld\n", pReq->offset);*/

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

    tsem_wait(&param->rspSem);
    tsem_destroy(&param->rspSem);
wafwerar's avatar
wafwerar 已提交
1477
    taosMemoryFree(param);
L
Liu Jicong 已提交
1478 1479 1480

    if (tmq_message == NULL) {
      if (beginVgIdx == pTopic->nextVgIdx) {
wafwerar's avatar
wafwerar 已提交
1481
        taosMsleep(blocking_time);
L
Liu Jicong 已提交
1482 1483 1484 1485
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1486

L
Liu Jicong 已提交
1487
    return tmq_message;
L
Liu Jicong 已提交
1488
  }
1489 1490 1491 1492

  /*tsem_wait(&pRequest->body.rspSem);*/

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1493
  /*destroySendMsgInfo(body);*/
1494 1495 1496
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1497
  /*pRequest->code = terrno;*/
1498 1499 1500 1501
  /*}*/

  /*return pRequest;*/
}
X
Xiaoyu Wang 已提交
1502
#endif
1503

L
Liu Jicong 已提交
1504
#if 0
L
Liu Jicong 已提交
1505
tmq_resp_err_t tmq_commit(tmq_t* tmq, const tmq_topic_vgroup_list_t* tmq_topic_vgroup_list, int32_t async) {
L
Liu Jicong 已提交
1506
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1507
    // TODO
L
Liu Jicong 已提交
1508 1509
  }

L
Liu Jicong 已提交
1510
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1511 1512 1513
  for (int i = 0; i < taosArrayGetSize(tmq->clientTopics); i++) {
    SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, i);
    for (int j = 0; j < taosArrayGetSize(pTopic->vgs); j++) {
L
Liu Jicong 已提交
1514
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1515
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1516

L
Liu Jicong 已提交
1517 1518
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
wafwerar's avatar
wafwerar 已提交
1519
      SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539
      if (pParam == NULL) {
        continue;
      }
      pParam->tmq = tmq;
      pParam->pVg = pVg;
      pParam->async = async;
      if (!async) tsem_init(&pParam->rspSem, 0, 0);

      SMsgSendInfo* sendInfo = buildMsgInfoImpl(pRequest);
      sendInfo->requestObjRefId = 0;
      sendInfo->param = pParam;
      sendInfo->fp = tmqCommitCb;

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

      if (!async) tsem_wait(&pParam->rspSem);
    }
  }

L
Liu Jicong 已提交
1540
  return 0;
1541
}
L
Liu Jicong 已提交
1542
#endif
1543 1544 1545

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1546
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1547
  tDeleteSMqConsumeRsp(pRsp);
wafwerar's avatar
wafwerar 已提交
1548
  /*taosMemoryFree(tmq_message);*/
X
Xiaoyu Wang 已提交
1549
  taosFreeQitem(tmq_message);
1550 1551
}

L
Liu Jicong 已提交
1552
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1553 1554 1555 1556 1557 1558 1559

const char* tmq_err2str(tmq_resp_err_t err) {
  if (err == TMQ_RESP_ERR__SUCCESS) {
    return "success";
  }
  return "fail";
}
L
Liu Jicong 已提交
1560

L
Liu Jicong 已提交
1561
TAOS_ROW tmq_get_row(tmq_message_t* message) {
L
Liu Jicong 已提交
1562
  SMqPollRsp* rsp = &message->msg;
L
Liu Jicong 已提交
1563
  while (1) {
L
Liu Jicong 已提交
1564 1565 1566
    if (message->iter.curBlock < taosArrayGetSize(rsp->pBlockData)) {
      SSDataBlock* pBlock = taosArrayGet(rsp->pBlockData, message->iter.curBlock);
      if (message->iter.curRow < pBlock->info.rows) {
L
Liu Jicong 已提交
1567 1568
        for (int i = 0; i < pBlock->info.numOfCols; i++) {
          SColumnInfoData* pData = taosArrayGet(pBlock->pDataBlock, i);
L
Liu Jicong 已提交
1569 1570
          if (colDataIsNull_s(pData, message->iter.curRow))
            message->iter.uData[i] = NULL;
L
Liu Jicong 已提交
1571
          else {
L
Liu Jicong 已提交
1572
            message->iter.uData[i] = colDataGetData(pData, message->iter.curRow);
L
Liu Jicong 已提交
1573 1574
          }
        }
L
Liu Jicong 已提交
1575 1576
        message->iter.curRow++;
        return message->iter.uData;
L
Liu Jicong 已提交
1577
      } else {
L
Liu Jicong 已提交
1578 1579
        message->iter.curBlock++;
        message->iter.curRow = 0;
L
Liu Jicong 已提交
1580 1581 1582 1583 1584 1585 1586 1587
        continue;
      }
    }
    return NULL;
  }
}

char* tmq_get_topic_name(tmq_message_t* message) { return "not implemented yet"; }