tmq.c 46.2 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
Liu Jicong 已提交
111
  int32_t vgSkipCnt;
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
  tmq_t*          tmq;
  SMqClientVg*    pVg;
  int32_t         epoch;
L
Liu Jicong 已提交
143
  int32_t         vgId;
L
Liu Jicong 已提交
144 145 146
  tsem_t          rspSem;
  tmq_message_t** msg;
  int32_t         sync;
X
Xiaoyu Wang 已提交
147
} SMqPollCbParam;
148

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

X
Xiaoyu Wang 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
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);
}

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

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

L
Liu Jicong 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
  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 已提交
355 356
  pTmq->epStatus = 0;
  pTmq->epSkipCnt = 0;
L
Liu Jicong 已提交
357 358 359 360 361 362 363
  // 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 已提交
364
  pTmq->consumerId = generateRequestId() & (((uint64_t)-1) >> 1);
365
  pTmq->clientTopics = taosArrayInit(0, sizeof(SMqClientTopic));
L
Liu Jicong 已提交
366 367 368 369
  if (pTmq->clientTopics == NULL) {
    taosMemoryFree(pTmq);
    return NULL;
  }
X
Xiaoyu Wang 已提交
370 371 372

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

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

376 377 378
  return pTmq;
}

L
Liu Jicong 已提交
379 380 381 382
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 已提交
383 384
  // build msg
  // send to mnode
L
Liu Jicong 已提交
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
  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 已提交
408 409 410 411

  SCoder encoder;

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

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

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

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

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

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

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

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

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

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

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

L
Liu Jicong 已提交
467
tmq_resp_err_t tmq_subscribe(tmq_t* tmq, tmq_list_t* topic_list) {
L
Liu Jicong 已提交
468
  SRequestObj* pRequest = NULL;
L
Liu Jicong 已提交
469 470
  SArray*      container = &topic_list->container;
  int32_t      sz = taosArrayGetSize(container);
L
Liu Jicong 已提交
471
  // destroy ex
472 473 474 475 476 477 478 479 480 481
  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 已提交
482 483
    /*char* topicName = topic_list->elems[i];*/
    char* topicName = taosArrayGetP(container, i);
484 485 486

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

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

L
Liu Jicong 已提交
512
  int   tlen = tSerializeSCMSubscribeReq(NULL, &req);
wafwerar's avatar
wafwerar 已提交
513
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
514
  if (buf == NULL) {
515 516 517 518 519 520 521 522 523
    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 已提交
524
    tscError("failed to malloc request");
525 526
  }

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

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

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

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

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

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

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

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

L
Liu Jicong 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
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 已提交
575 576
  if (strlen(tbName) >= TSDB_TABLE_NAME_LEN) {
    tscError("output tb name too long, max length:%d", TSDB_TABLE_NAME_LEN - 1);
L
Liu Jicong 已提交
577 578 579 580 581 582 583 584 585 586 587 588
    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 已提交
589
  int32_t code = 0;
L
Liu Jicong 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
  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 已提交
609
  strcpy(req.outputSTbName, tbName);
L
Liu Jicong 已提交
610 611

  int   tlen = tSerializeSCMCreateStreamReq(NULL, 0, &req);
wafwerar's avatar
wafwerar 已提交
612
  void* buf = taosMemoryMalloc(tlen);
L
Liu Jicong 已提交
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
  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 已提交
636
  taosMemoryFreeClear(astStr);
L
Liu Jicong 已提交
637 638 639 640 641 642 643 644 645 646 647 648
  qDestroyQuery(pQueryNode);
  /*if (sendInfo != NULL) {*/
  /*destroySendMsgInfo(sendInfo);*/
  /*}*/

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

  return pRequest;
}

L
Liu Jicong 已提交
649
#if 0
L
Liu Jicong 已提交
650 651 652
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 已提交
653
  SQuery*      pQueryNode = NULL;
L
Liu Jicong 已提交
654
  char*        astStr = NULL;
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674

  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 已提交
675
  tscDebug("start to create topic: %s", topicName);
676

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

L
Liu Jicong 已提交
737
static char* formatTimestamp(char* buf, int64_t val, int precision) {
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 772
  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 已提交
773
  struct tm* ptm = localtime(&tt);
774 775 776 777 778 779 780 781 782 783 784 785 786
  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 已提交
787 788
int32_t tmqGetSkipLogNum(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return 0;
L
Liu Jicong 已提交
789
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
790 791 792
  return pRsp->skipLogNum;
}

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

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

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

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

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

L
Liu Jicong 已提交
862
#if 0
L
Liu Jicong 已提交
863
  if (pParam->sync == 1) {
wafwerar's avatar
wafwerar 已提交
864
    /**pParam->msg = taosMemoryMalloc(sizeof(tmq_message_t));*/
L
Liu Jicong 已提交
865 866 867 868 869 870 871 872 873 874 875 876 877 878
    *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 已提交
879
#endif
L
Liu Jicong 已提交
880

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

L
temp  
Liu Jicong 已提交
902
  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 已提交
903 904
           pRsp->msg.rspOffset);

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

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

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

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

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

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

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

X
Xiaoyu Wang 已提交
1031
    taosWriteQitem(tmq->mqueue, pRsp);
L
temp  
Liu Jicong 已提交
1032
    /*tsem_post(&tmq->rspSem);*/
1033
  }
L
Liu Jicong 已提交
1034 1035

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

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

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

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

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

  sendInfo->requestId = generateRequestId();
L
Liu Jicong 已提交
1089 1090 1091
  sendInfo->requestObjRefId = 0;
  sendInfo->param = pParam;
  sendInfo->fp = tmqAskEpCb;
L
Liu Jicong 已提交
1092
  sendInfo->msgType = TDMT_MND_GET_SUB_EP;
1093

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

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

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

X
Xiaoyu Wang 已提交
1101
  if (sync) tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1102
  return 0;
1103 1104
}

L
Liu Jicong 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
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 已提交
1119
          tmqClearUnhandleMsg(tmq);
L
Liu Jicong 已提交
1120 1121 1122 1123 1124 1125 1126 1127
          return TMQ_RESP_ERR__SUCCESS;
        }
      }
    }
  }
  return TMQ_RESP_ERR__FAIL;
}

L
Liu Jicong 已提交
1128
SMqPollReq* tmqBuildConsumeReqImpl(tmq_t* tmq, int64_t blockingTime, SMqClientTopic* pTopic, SMqClientVg* pVg) {
L
Liu Jicong 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
  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 已提交
1140
  SMqPollReq* pReq = taosMemoryMalloc(sizeof(SMqPollReq));
1141 1142 1143
  if (pReq == NULL) {
    return NULL;
  }
L
Liu Jicong 已提交
1144

L
Liu Jicong 已提交
1145
  strcpy(pReq->topic, pTopic->topicName);
1146 1147
  strcpy(pReq->cgroup, tmq->groupId);

L
fix  
Liu Jicong 已提交
1148
  pReq->blockingTime = blockingTime;
L
Liu Jicong 已提交
1149
  pReq->consumerId = tmq->consumerId;
X
Xiaoyu Wang 已提交
1150
  pReq->epoch = tmq->epoch;
L
Liu Jicong 已提交
1151
  pReq->currentOffset = reqOffset;
L
Liu Jicong 已提交
1152
  pReq->reqId = generateRequestId();
1153 1154

  pReq->head.vgId = htonl(pVg->vgId);
L
Liu Jicong 已提交
1155
  pReq->head.contLen = htonl(sizeof(SMqPollReq));
1156 1157 1158
  return pReq;
}

L
Liu Jicong 已提交
1159
#if 0
L
Liu Jicong 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
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 已提交
1170
      SMqPollReq* pReq = tmqBuildConsumeReqImpl(tmq, blockingTime, pTopic, pVg);
L
Liu Jicong 已提交
1171 1172 1173 1174 1175
      if (pReq == NULL) {
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
X
Xiaoyu Wang 已提交
1176

wafwerar's avatar
wafwerar 已提交
1177
      SMqPollCbParam* pParam = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1178
      if (pParam == NULL) {
L
Liu Jicong 已提交
1179 1180 1181 1182
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
        // TODO: out of mem
        return NULL;
      }
L
Liu Jicong 已提交
1183 1184 1185 1186 1187 1188 1189
      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 已提交
1190
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1191 1192 1193 1194 1195
      if (sendInfo == NULL) {
        return NULL;
      }

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

      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 已提交
1213
      tsem_wait(&pParam->rspSem);
L
Liu Jicong 已提交
1214 1215 1216 1217
      tmq_message_t* nmsg = NULL;
      while (1) {
        taosReadQitem(tmq->mqueue, (void**)&nmsg);
        if (nmsg == NULL) continue;
L
Liu Jicong 已提交
1218 1219 1220
        while (nmsg->head.mqMsgType != TMQ_MSG_TYPE__POLL_RSP) {
          taosReadQitem(tmq->mqueue, (void**)&nmsg);
        }
L
Liu Jicong 已提交
1221 1222 1223
        return nmsg;
      }
    }
X
Xiaoyu Wang 已提交
1224
  }
L
Liu Jicong 已提交
1225
  return NULL;
X
Xiaoyu Wang 已提交
1226
}
L
Liu Jicong 已提交
1227
#endif
X
Xiaoyu Wang 已提交
1228 1229

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

wafwerar's avatar
wafwerar 已提交
1269
      SMsgSendInfo* sendInfo = taosMemoryMalloc(sizeof(SMsgSendInfo));
L
Liu Jicong 已提交
1270
      if (sendInfo == NULL) {
wafwerar's avatar
wafwerar 已提交
1271 1272
        taosMemoryFree(pReq);
        taosMemoryFree(pParam);
L
Liu Jicong 已提交
1273
        atomic_store_32(&pVg->vgStatus, TMQ_VG_STATUS__IDLE);
L
temp  
Liu Jicong 已提交
1274
        /*tsem_post(&tmq->rspSem);*/
L
Liu Jicong 已提交
1275 1276 1277 1278
        return -1;
      }

      sendInfo->msgInfo = (SDataBuf){
X
Xiaoyu Wang 已提交
1279
          .pData = pReq,
L
Liu Jicong 已提交
1280
          .len = sizeof(SMqPollReq),
X
Xiaoyu Wang 已提交
1281 1282
          .handle = NULL,
      };
L
Liu Jicong 已提交
1283
      sendInfo->requestId = pReq->reqId;
X
Xiaoyu Wang 已提交
1284
      sendInfo->requestObjRefId = 0;
L
Liu Jicong 已提交
1285
      sendInfo->param = pParam;
X
Xiaoyu Wang 已提交
1286
      sendInfo->fp = tmqPollCb;
L
Liu Jicong 已提交
1287
      sendInfo->msgType = TDMT_VND_CONSUME;
X
Xiaoyu Wang 已提交
1288 1289

      int64_t transporterId = 0;
L
fix  
Liu Jicong 已提交
1290 1291
      /*printf("send poll\n");*/
      atomic_add_fetch_32(&tmq->waitingRequest, 1);
L
Liu Jicong 已提交
1292
      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 已提交
1293
      /*printf("send vg %d %ld\n", pVg->vgId, pVg->currentOffset);*/
X
Xiaoyu Wang 已提交
1294 1295 1296 1297 1298 1299 1300 1301 1302
      asyncSendMsgToServer(tmq->pTscObj->pAppInfo->pTransporter, &pVg->epSet, &transporterId, sendInfo);
      pVg->pollCnt++;
      tmq->pollCnt++;
    }
  }
  return 0;
}

// return
L
temp  
Liu Jicong 已提交
1303
int32_t tmqHandleNoPollRsp(tmq_t* tmq, SMqRspHead* rspHead, bool* pReset) {
L
Liu Jicong 已提交
1304
  if (rspHead->mqMsgType == TMQ_MSG_TYPE__EP_RSP) {
L
fix  
Liu Jicong 已提交
1305
    /*printf("ep %d %d\n", rspMsg->head.epoch, tmq->epoch);*/
L
Liu Jicong 已提交
1306 1307 1308
    if (rspHead->epoch > atomic_load_32(&tmq->epoch)) {
      SMqCMGetSubEpRsp* rspMsg = (SMqCMGetSubEpRsp*)rspHead;
      tmqUpdateEp(tmq, rspHead->epoch, rspMsg);
L
temp  
Liu Jicong 已提交
1309
      /*tmqClearUnhandleMsg(tmq);*/
X
Xiaoyu Wang 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
      *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 已提交
1322 1323 1324
    SMqRspHead* rspHead = NULL;
    taosGetQitem(tmq->qall, (void**)&rspHead);
    if (rspHead == NULL) {
L
Liu Jicong 已提交
1325
      taosReadAllQitems(tmq->mqueue, tmq->qall);
L
Liu Jicong 已提交
1326 1327
      taosGetQitem(tmq->qall, (void**)&rspHead);
      if (rspHead == NULL) return NULL;
X
Xiaoyu Wang 已提交
1328 1329
    }

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

L
Liu Jicong 已提交
1363
#if 0
L
Liu Jicong 已提交
1364
tmq_message_t* tmq_consumer_poll_v1(tmq_t* tmq, int64_t blocking_time) {
X
Xiaoyu Wang 已提交
1365 1366
  tmq_message_t* rspMsg = NULL;
  int64_t        startTime = taosGetTimestampMs();
1367 1368

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

L
Liu Jicong 已提交
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
  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 已提交
1384
  }
L
Liu Jicong 已提交
1385
}
L
Liu Jicong 已提交
1386
#endif
X
Xiaoyu Wang 已提交
1387

L
Liu Jicong 已提交
1388 1389
tmq_message_t* tmq_consumer_poll(tmq_t* tmq, int64_t blocking_time) {
  tmq_message_t* rspMsg;
L
Liu Jicong 已提交
1390 1391
  int64_t        startTime = taosGetTimestampMs();

L
Liu Jicong 已提交
1392
  // TODO: put into another thread or delayed queue
1393
  int64_t status = atomic_load_64(&tmq->status);
L
Liu Jicong 已提交
1394 1395
  tmqAskEp(tmq, status == TMQ_CONSUMER_STATUS__INIT);

L
fix  
Liu Jicong 已提交
1396 1397 1398 1399
  rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
  if (rspMsg) {
    return rspMsg;
  }
X
Xiaoyu Wang 已提交
1400 1401 1402

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

L
temp  
Liu Jicong 已提交
1406
    /*tsem_wait(&tmq->rspSem);*/
L
Liu Jicong 已提交
1407 1408

    rspMsg = tmqHandleAllRsp(tmq, blocking_time, false);
X
Xiaoyu Wang 已提交
1409 1410 1411 1412 1413 1414
    if (rspMsg) {
      return rspMsg;
    }
    if (blocking_time != 0) {
      int64_t endTime = taosGetTimestampMs();
      if (endTime - startTime > blocking_time) {
L
Liu Jicong 已提交
1415
        tscDebug("consumer %ld (epoch %d) timeout, no rsp", tmq->consumerId, tmq->epoch);
X
Xiaoyu Wang 已提交
1416 1417 1418 1419 1420 1421 1422
        return NULL;
      }
    }
  }
}

#if 0
1423

L
Liu Jicong 已提交
1424
  if (blocking_time <= 0) blocking_time = 1;
L
Liu Jicong 已提交
1425 1426
  if (blocking_time > 1000) blocking_time = 1000;
  /*blocking_time = 1;*/
1427 1428 1429

  if (taosArrayGetSize(tmq->clientTopics) == 0) {
    tscDebug("consumer:%ld poll but not assigned", tmq->consumerId);
L
Liu Jicong 已提交
1430
    /*printf("over1\n");*/
wafwerar's avatar
wafwerar 已提交
1431
    taosMsleep(blocking_time);
1432 1433 1434 1435
    return NULL;
  }
  SMqClientTopic* pTopic = taosArrayGet(tmq->clientTopics, tmq->nextTopicIdx);
  if (taosArrayGetSize(pTopic->vgs) == 0) {
L
Liu Jicong 已提交
1436
    /*printf("over2\n");*/
wafwerar's avatar
wafwerar 已提交
1437
    taosMsleep(blocking_time);
1438 1439 1440
    return NULL;
  }

L
Liu Jicong 已提交
1441
  tmq->nextTopicIdx = (tmq->nextTopicIdx + 1) % taosArrayGetSize(tmq->clientTopics);
L
Liu Jicong 已提交
1442
  int32_t beginVgIdx = pTopic->nextVgIdx;
L
Liu Jicong 已提交
1443
  while (1) {
L
Liu Jicong 已提交
1444 1445 1446
    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 已提交
1447
    SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, blocking_time, pTopic, pVg);
L
Liu Jicong 已提交
1448 1449
    if (pReq == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1450
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1451 1452
      return NULL;
    }
1453

wafwerar's avatar
wafwerar 已提交
1454
    SMqPollCbParam* param = taosMemoryMalloc(sizeof(SMqPollCbParam));
L
Liu Jicong 已提交
1455 1456
    if (param == NULL) {
      ASSERT(false);
wafwerar's avatar
wafwerar 已提交
1457
      taosMsleep(blocking_time);
L
Liu Jicong 已提交
1458 1459 1460 1461 1462 1463 1464 1465
      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 已提交
1466 1467 1468 1469 1470
    pRequest->body.requestMsg = (SDataBuf){
        .pData = pReq,
        .len = sizeof(SMqConsumeReq),
        .handle = NULL,
    };
1471

L
Liu Jicong 已提交
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
    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 已提交
1485
    taosMemoryFree(param);
L
Liu Jicong 已提交
1486 1487 1488

    if (tmq_message == NULL) {
      if (beginVgIdx == pTopic->nextVgIdx) {
wafwerar's avatar
wafwerar 已提交
1489
        taosMsleep(blocking_time);
L
Liu Jicong 已提交
1490 1491 1492 1493
      } else {
        continue;
      }
    }
L
Liu Jicong 已提交
1494

L
Liu Jicong 已提交
1495
    return tmq_message;
L
Liu Jicong 已提交
1496
  }
1497 1498 1499 1500

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

  /*if (body != NULL) {*/
L
Liu Jicong 已提交
1501
  /*destroySendMsgInfo(body);*/
1502 1503 1504
  /*}*/

  /*if (pRequest != NULL && terrno != TSDB_CODE_SUCCESS) {*/
L
Liu Jicong 已提交
1505
  /*pRequest->code = terrno;*/
1506 1507 1508 1509
  /*}*/

  /*return pRequest;*/
}
X
Xiaoyu Wang 已提交
1510
#endif
1511

L
Liu Jicong 已提交
1512
#if 0
L
Liu Jicong 已提交
1513
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 已提交
1514
  if (tmq_topic_vgroup_list != NULL) {
L
Liu Jicong 已提交
1515
    // TODO
L
Liu Jicong 已提交
1516 1517
  }

L
Liu Jicong 已提交
1518
  // TODO: change semaphore to gate
L
Liu Jicong 已提交
1519 1520 1521
  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 已提交
1522
      SMqClientVg*   pVg = taosArrayGet(pTopic->vgs, j);
L
Liu Jicong 已提交
1523
      SMqConsumeReq* pReq = tmqBuildConsumeReqImpl(tmq, 0, pTopic, pVg);
L
Liu Jicong 已提交
1524

L
Liu Jicong 已提交
1525 1526
      SRequestObj* pRequest = createRequest(tmq->pTscObj, NULL, NULL, TDMT_VND_CONSUME);
      pRequest->body.requestMsg = (SDataBuf){.pData = pReq, .len = sizeof(SMqConsumeReq)};
wafwerar's avatar
wafwerar 已提交
1527
      SMqCommitCbParam* pParam = taosMemoryMalloc(sizeof(SMqCommitCbParam));
L
Liu Jicong 已提交
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
      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 已提交
1548
  return 0;
1549
}
L
Liu Jicong 已提交
1550
#endif
1551 1552 1553

void tmq_message_destroy(tmq_message_t* tmq_message) {
  if (tmq_message == NULL) return;
L
Liu Jicong 已提交
1554
  SMqPollRsp* pRsp = &tmq_message->msg;
L
Liu Jicong 已提交
1555
  tDeleteSMqConsumeRsp(pRsp);
wafwerar's avatar
wafwerar 已提交
1556
  /*taosMemoryFree(tmq_message);*/
X
Xiaoyu Wang 已提交
1557
  taosFreeQitem(tmq_message);
1558 1559
}

L
Liu Jicong 已提交
1560
tmq_resp_err_t tmq_consumer_close(tmq_t* tmq) { return TMQ_RESP_ERR__SUCCESS; }
L
Liu Jicong 已提交
1561 1562 1563 1564 1565 1566 1567

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

L
Liu Jicong 已提交
1569
TAOS_ROW tmq_get_row(tmq_message_t* message) {
L
Liu Jicong 已提交
1570
  SMqPollRsp* rsp = &message->msg;
L
Liu Jicong 已提交
1571
  while (1) {
L
Liu Jicong 已提交
1572 1573 1574
    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 已提交
1575 1576
        for (int i = 0; i < pBlock->info.numOfCols; i++) {
          SColumnInfoData* pData = taosArrayGet(pBlock->pDataBlock, i);
L
Liu Jicong 已提交
1577 1578
          if (colDataIsNull_s(pData, message->iter.curRow))
            message->iter.uData[i] = NULL;
L
Liu Jicong 已提交
1579
          else {
L
Liu Jicong 已提交
1580
            message->iter.uData[i] = colDataGetData(pData, message->iter.curRow);
L
Liu Jicong 已提交
1581 1582
          }
        }
L
Liu Jicong 已提交
1583 1584
        message->iter.curRow++;
        return message->iter.uData;
L
Liu Jicong 已提交
1585
      } else {
L
Liu Jicong 已提交
1586 1587
        message->iter.curBlock++;
        message->iter.curRow = 0;
L
Liu Jicong 已提交
1588 1589 1590 1591 1592 1593 1594 1595
        continue;
      }
    }
    return NULL;
  }
}

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