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

16
#include <assert.h>
L
Liu Jicong 已提交
17 18
#include <stdio.h>
#include <string.h>
L
Liu Jicong 已提交
19
#include <time.h>
L
Liu Jicong 已提交
20 21
#include "taos.h"

22 23
static int  running = 1;
static void msg_process(tmq_message_t* message) { tmqShowMsg(message); }
L
Liu Jicong 已提交
24 25 26 27 28 29 30

int32_t init_env() {
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  if (pConn == NULL) {
    return -1;
  }

L
Liu Jicong 已提交
31
  TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1 vgroups 2");
L
Liu Jicong 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44
  if (taos_errno(pRes) != 0) {
    printf("error in create db, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "use abc1");
  if (taos_errno(pRes) != 0) {
    printf("error in use db, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
  pRes = taos_query(pConn, "create stable if not exists st1 (ts timestamp, k int) tags(a int)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create super table 123_$^), reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create table if not exists tu1 using st1 tags(1)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create child table tu1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create table if not exists tu2 using st1 tags(2)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create child table tu2, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

L
Liu Jicong 已提交
66
  const char* sql = "select * from tu1";
67 68 69 70 71 72
  pRes = tmq_create_topic(pConn, "test_stb_topic_1", sql, strlen(sql));
  if (taos_errno(pRes) != 0) {
    printf("failed to create topic test_stb_topic_1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
L
Liu Jicong 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  taos_close(pConn);
  return 0;
}

tmq_t* build_consumer() {
  TAOS* pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  assert(pConn != NULL);

  TAOS_RES* pRes = taos_query(pConn, "use abc1");
  if (taos_errno(pRes) != 0) {
    printf("error in use db, reason:%s\n", taos_errstr(pRes));
  }
  taos_free_result(pRes);

  tmq_conf_t* conf = tmq_conf_new();
  tmq_conf_set(conf, "group.id", "tg2");
  tmq_t* tmq = tmq_consumer_new(pConn, conf, NULL, 0);
  return tmq;
}

tmq_list_t* build_topic_list() {
  tmq_list_t* topic_list = tmq_list_new();
  tmq_list_append(topic_list, "test_stb_topic_1");
  return topic_list;
}

99
void basic_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
L
Liu Jicong 已提交
100 101 102 103 104 105 106
  tmq_resp_err_t err;

  if ((err = tmq_subscribe(tmq, topics))) {
    fprintf(stderr, "%% Failed to start consuming topics: %s\n", tmq_err2str(err));
    printf("subscribe err\n");
    return;
  }
L
Liu Jicong 已提交
107
  /*int32_t cnt = 0;*/
L
Liu Jicong 已提交
108
  /*clock_t startTime = clock();*/
L
Liu Jicong 已提交
109
  while (running) {
110
    tmq_message_t* tmqmessage = tmq_consumer_poll(tmq, 500);
L
Liu Jicong 已提交
111
    if (tmqmessage) {
L
Liu Jicong 已提交
112
      /*cnt++;*/
L
Liu Jicong 已提交
113
      msg_process(tmqmessage);
L
Liu Jicong 已提交
114
      tmq_message_destroy(tmqmessage);
115
      /*} else {*/
L
Liu Jicong 已提交
116
      /*break;*/
L
Liu Jicong 已提交
117 118
    }
  }
L
Liu Jicong 已提交
119 120
  /*clock_t endTime = clock();*/
  /*printf("log cnt: %d %f s\n", cnt, (double)(endTime - startTime) / CLOCKS_PER_SEC);*/
L
Liu Jicong 已提交
121 122 123 124 125 126 127 128

  err = tmq_consumer_close(tmq);
  if (err)
    fprintf(stderr, "%% Failed to close consumer: %s\n", tmq_err2str(err));
  else
    fprintf(stderr, "%% Consumer closed\n");
}

129
void sync_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
L
Liu Jicong 已提交
130 131
  static const int MIN_COMMIT_COUNT = 1000;

132
  int            msg_count = 0;
L
Liu Jicong 已提交
133 134
  tmq_resp_err_t err;

L
Liu Jicong 已提交
135
  if ((err = tmq_subscribe(tmq, topics))) {
L
Liu Jicong 已提交
136 137 138 139 140
    fprintf(stderr, "%% Failed to start consuming topics: %s\n", tmq_err2str(err));
    return;
  }

  while (running) {
141
    tmq_message_t* tmqmessage = tmq_consumer_poll(tmq, 500);
L
Liu Jicong 已提交
142 143 144 145
    if (tmqmessage) {
      msg_process(tmqmessage);
      tmq_message_destroy(tmqmessage);

146
      if ((++msg_count % MIN_COMMIT_COUNT) == 0) tmq_commit(tmq, NULL, 0);
L
Liu Jicong 已提交
147
    }
148
  }
L
Liu Jicong 已提交
149

L
Liu Jicong 已提交
150
  err = tmq_consumer_close(tmq);
L
Liu Jicong 已提交
151 152 153 154 155 156
  if (err)
    fprintf(stderr, "%% Failed to close consumer: %s\n", tmq_err2str(err));
  else
    fprintf(stderr, "%% Consumer closed\n");
}

L
Liu Jicong 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
void perf_loop(tmq_t* tmq, tmq_list_t* topics) {
  tmq_resp_err_t err;

  if ((err = tmq_subscribe(tmq, topics))) {
    fprintf(stderr, "%% Failed to start consuming topics: %s\n", tmq_err2str(err));
    printf("subscribe err\n");
    return;
  }
  int32_t batchCnt = 0;
  int32_t skipLogNum = 0;
  clock_t startTime = clock();
  while (running) {
    tmq_message_t* tmqmessage = tmq_consumer_poll(tmq, 500);
    if (tmqmessage) {
      batchCnt++;
      skipLogNum += tmqGetSkipLogNum(tmqmessage);
      /*msg_process(tmqmessage);*/
      tmq_message_destroy(tmqmessage);
    } else {
      break;
    }
  }
  clock_t endTime = clock();
  printf("log batch cnt: %d, skip log cnt: %d, time used:%f s\n", batchCnt, skipLogNum,
         (double)(endTime - startTime) / CLOCKS_PER_SEC);

  err = tmq_consumer_close(tmq);
  if (err)
    fprintf(stderr, "%% Failed to close consumer: %s\n", tmq_err2str(err));
  else
    fprintf(stderr, "%% Consumer closed\n");
}

L
Liu Jicong 已提交
190
int main(int argc, char* argv[]) {
L
Liu Jicong 已提交
191
  int code;
L
Liu Jicong 已提交
192 193 194 195
  if (argc > 1) {
    printf("env init\n");
    code = init_env();
  }
196
  tmq_t*      tmq = build_consumer();
L
Liu Jicong 已提交
197
  tmq_list_t* topic_list = build_topic_list();
L
Liu Jicong 已提交
198 199
  /*perf_loop(tmq, topic_list);*/
  basic_consume_loop(tmq, topic_list);
L
Liu Jicong 已提交
200
  /*sync_consume_loop(tmq, topic_list);*/
L
Liu Jicong 已提交
201
}