tmq.c 14.0 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
#include <stdio.h>
L
Liu Jicong 已提交
18
#include <stdlib.h>
L
Liu Jicong 已提交
19
#include <string.h>
L
Liu Jicong 已提交
20
#include <time.h>
L
Liu Jicong 已提交
21 22
#include "taos.h"

L
Liu Jicong 已提交
23 24 25
static int  running = 1;
static void msg_process(TAOS_RES* msg) {
  char buf[1024];
L
Liu Jicong 已提交
26
  /*memset(buf, 0, 1024);*/
L
Liu Jicong 已提交
27
  printf("topic: %s\n", tmq_get_topic_name(msg));
L
Liu Jicong 已提交
28
  printf("db: %s\n", tmq_get_db_name(msg));
L
Liu Jicong 已提交
29
  printf("vg: %d\n", tmq_get_vgroup_id(msg));
L
Liu Jicong 已提交
30
  if (tmq_get_res_type(msg) == TMQ_RES_TABLE_META) {
wmmhello's avatar
wmmhello 已提交
31
    tmq_raw_data raw = {0};
32
    int32_t      code = tmq_get_raw(msg, &raw);
wmmhello's avatar
wmmhello 已提交
33
    if (code == 0) {
wmmhello's avatar
wmmhello 已提交
34
      TAOS* pConn = taos_connect("192.168.1.86", "root", "taosdata", NULL, 0);
wmmhello's avatar
wmmhello 已提交
35 36 37
      if (pConn == NULL) {
        return;
      }
wmmhello's avatar
wmmhello 已提交
38

wmmhello's avatar
wmmhello 已提交
39
      TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1 vgroups 5");
wmmhello's avatar
wmmhello 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52
      if (taos_errno(pRes) != 0) {
        printf("error in create db, reason:%s\n", taos_errstr(pRes));
        return;
      }
      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;
      }
      taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
53
      int32_t ret = tmq_write_raw(pConn, raw);
wmmhello's avatar
wmmhello 已提交
54 55 56
      printf("write raw data: %s\n", tmq_err2str(ret));
      taos_close(pConn);
    }
wmmhello's avatar
wmmhello 已提交
57
    char* result = tmq_get_json_meta(msg);
L
Liu Jicong 已提交
58
    if (result) {
wmmhello's avatar
wmmhello 已提交
59 60
      printf("meta result: %s\n", result);
    }
wmmhello's avatar
wmmhello 已提交
61
    tmq_free_json_meta(result);
L
Liu Jicong 已提交
62 63
    return;
  }
L
Liu Jicong 已提交
64 65 66 67 68 69 70
  while (1) {
    TAOS_ROW row = taos_fetch_row(msg);
    if (row == NULL) break;
    TAOS_FIELD* fields = taos_fetch_fields(msg);
    int32_t     numOfFields = taos_field_count(msg);
    taos_print_row(buf, row, fields, numOfFields);
    printf("%s\n", buf);
L
Liu Jicong 已提交
71 72 73 74 75

    const char* tbName = tmq_get_table_name(msg);
    if (tbName) {
      printf("from tb: %s\n", tbName);
    }
L
Liu Jicong 已提交
76 77
  }
}
L
Liu Jicong 已提交
78 79 80 81 82 83 84

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

wmmhello's avatar
wmmhello 已提交
85
  TAOS_RES* pRes = taos_query(pConn, "create database if not exists abc1 vgroups 5");
L
Liu Jicong 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98
  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);

L
Liu Jicong 已提交
99 100 101
  pRes = taos_query(pConn,
                    "create stable if not exists st1 (ts timestamp, c1 int, c2 float, c3 binary(16)) tags(t1 int, t3 "
                    "nchar(8), t4 bool)");
102
  if (taos_errno(pRes) != 0) {
L
Liu Jicong 已提交
103
    printf("failed to create super table st1, reason:%s\n", taos_errstr(pRes));
104 105 106 107
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
108
  pRes = taos_query(pConn, "create table if not exists ct0 using st1 tags(1000, \"ttt\", true)");
109 110 111 112 113 114
  if (taos_errno(pRes) != 0) {
    printf("failed to create child table tu1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

L
Liu Jicong 已提交
115 116 117 118 119 120 121
  pRes = taos_query(pConn, "insert into ct0 values(now, 1, 2, 'a')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert into ct0, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
122
  pRes = taos_query(pConn, "create table if not exists ct1 using st1(t1) tags(2000)");
123
  if (taos_errno(pRes) != 0) {
L
Liu Jicong 已提交
124 125 126 127 128
    printf("failed to create child table ct1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
129
  pRes = taos_query(pConn, "create table if not exists ct2 using st1(t1) tags(NULL)");
wmmhello's avatar
wmmhello 已提交
130 131 132 133 134 135
  if (taos_errno(pRes) != 0) {
    printf("failed to create child table ct2, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

L
Liu Jicong 已提交
136 137 138
  pRes = taos_query(pConn, "insert into ct1 values(now, 3, 4, 'b')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert into ct1, reason:%s\n", taos_errstr(pRes));
139 140
    return -1;
  }
L
Liu Jicong 已提交
141
  taos_free_result(pRes);
L
fix  
Liu Jicong 已提交
142

wmmhello's avatar
wmmhello 已提交
143
  pRes = taos_query(pConn, "create table if not exists ct3 using st1(t1) tags(3000)");
L
fix  
Liu Jicong 已提交
144
  if (taos_errno(pRes) != 0) {
L
Liu Jicong 已提交
145
    printf("failed to create child table ct3, reason:%s\n", taos_errstr(pRes));
L
fix  
Liu Jicong 已提交
146 147
    return -1;
  }
L
Liu Jicong 已提交
148
  taos_free_result(pRes);
L
fix  
Liu Jicong 已提交
149

L
Liu Jicong 已提交
150 151 152 153 154
  pRes = taos_query(pConn, "insert into ct3 values(now, 5, 6, 'c')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert into ct3, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
155
  taos_free_result(pRes);
L
Liu Jicong 已提交
156

L
Liu Jicong 已提交
157
#if 0
wmmhello's avatar
wmmhello 已提交
158 159 160 161 162 163
  pRes = taos_query(pConn, "alter table st1 add column c4 bigint");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
wmmhello's avatar
wmmhello 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

  pRes = taos_query(pConn, "alter table st1 modify column c3 binary(64)");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "alter table st1 add tag t2 binary(64)");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "alter table ct3 set tag t1=5000");
  if (taos_errno(pRes) != 0) {
    printf("failed to slter child table ct3, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198
  pRes = taos_query(pConn, "drop table ct3 ct1");
  if (taos_errno(pRes) != 0) {
    printf("failed to drop child table ct3, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "drop table st1");
  if (taos_errno(pRes) != 0) {
    printf("failed to drop super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
wmmhello's avatar
wmmhello 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226

  pRes = taos_query(pConn, "create table if not exists n1(ts timestamp, c1 int, c2 nchar(4))");
  if (taos_errno(pRes) != 0) {
    printf("failed to create normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "alter table n1 add column c3 bigint");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "alter table n1 modify column c2 nchar(8)");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "alter table n1 rename column c3 cc3");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
wmmhello's avatar
wmmhello 已提交
227 228 229 230 231 232 233

  pRes = taos_query(pConn, "alter table n1 comment 'hello'");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
wmmhello's avatar
wmmhello 已提交
234 235 236 237 238 239 240 241

  pRes = taos_query(pConn, "alter table n1 drop column c1");
  if (taos_errno(pRes) != 0) {
    printf("failed to alter normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
242 243 244 245 246 247
  pRes = taos_query(pConn, "drop table n1");
  if (taos_errno(pRes) != 0) {
    printf("failed to drop normal table n1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
wmmhello's avatar
wmmhello 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

  pRes = taos_query(pConn, "create table jt(ts timestamp, i int) tags(t json)");
  if (taos_errno(pRes) != 0) {
    printf("failed to create super table jt, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create table jt1 using jt tags('{\"k1\":1, \"k2\":\"hello\"}')");
  if (taos_errno(pRes) != 0) {
    printf("failed to create super table jt, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

wmmhello's avatar
wmmhello 已提交
263 264 265 266 267 268 269
  pRes = taos_query(pConn, "create table jt2 using jt tags('')");
  if (taos_errno(pRes) != 0) {
    printf("failed to create super table jt2, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

L
Liu Jicong 已提交
270 271 272
  pRes = taos_query(pConn,
                    "create stable if not exists st1 (ts timestamp, c1 int, c2 float, c3 binary(16)) tags(t1 int, t3 "
                    "nchar(8), t4 bool)");
273 274 275 276 277 278 279 280 281 282 283 284
  if (taos_errno(pRes) != 0) {
    printf("failed to create super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "drop table st1");
  if (taos_errno(pRes) != 0) {
    printf("failed to drop super table st1, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
L
Liu Jicong 已提交
285
#endif
286

L
Liu Jicong 已提交
287 288 289 290
  return 0;
}

int32_t create_topic() {
L
Liu Jicong 已提交
291
  printf("create topic\n");
L
Liu Jicong 已提交
292 293 294 295 296 297 298 299 300 301 302 303
  TAOS_RES* pRes;
  TAOS*     pConn = taos_connect("localhost", "root", "taosdata", NULL, 0);
  if (pConn == NULL) {
    return -1;
  }

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

305
  //  pRes = taos_query(pConn, "create topic topic_ctb_column with meta as database abc1");
306
  pRes = taos_query(pConn, "create topic topic_ctb_column as select ts, c1, c2, c3 from st1");
L
Liu Jicong 已提交
307 308 309 310 311 312 313
  if (taos_errno(pRes) != 0) {
    printf("failed to create topic topic_ctb_column, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

  pRes = taos_query(pConn, "create topic topic2  as select ts, c1, c2, c3 from st1");
L
fix  
Liu Jicong 已提交
314 315 316 317 318 319 320 321
  if (taos_errno(pRes) != 0) {
    printf("failed to create topic topic_ctb_column, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);

#if 0
  pRes = taos_query(pConn, "insert into tu1 values(now, 1, 1.0, 'bi1')");
322
  if (taos_errno(pRes) != 0) {
L
fix  
Liu Jicong 已提交
323
    printf("failed to insert, reason:%s\n", taos_errstr(pRes));
324 325 326
    return -1;
  }
  taos_free_result(pRes);
L
fix  
Liu Jicong 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
  pRes = taos_query(pConn, "insert into tu1 values(now+1d, 1, 1.0, 'bi1')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
  pRes = taos_query(pConn, "insert into tu2 values(now, 2, 2.0, 'bi2')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
  pRes = taos_query(pConn, "insert into tu2 values(now+1d, 2, 2.0, 'bi2')");
  if (taos_errno(pRes) != 0) {
    printf("failed to insert, reason:%s\n", taos_errstr(pRes));
    return -1;
  }
  taos_free_result(pRes);
#endif

L
Liu Jicong 已提交
347 348 349 350
  taos_close(pConn);
  return 0;
}

L
Liu Jicong 已提交
351 352
void tmq_commit_cb_print(tmq_t* tmq, int32_t code, void* param) {
  printf("commit %d tmq %p param %p\n", code, tmq, param);
L
Liu Jicong 已提交
353 354
}

L
Liu Jicong 已提交
355
tmq_t* build_consumer() {
L
Liu Jicong 已提交
356
#if 0
L
Liu Jicong 已提交
357 358 359 360 361 362 363 364
  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);
L
Liu Jicong 已提交
365
#endif
L
Liu Jicong 已提交
366 367 368

  tmq_conf_t* conf = tmq_conf_new();
  tmq_conf_set(conf, "group.id", "tg2");
L
Liu Jicong 已提交
369
  tmq_conf_set(conf, "client.id", "my app 1");
L
Liu Jicong 已提交
370 371
  tmq_conf_set(conf, "td.connect.user", "root");
  tmq_conf_set(conf, "td.connect.pass", "taosdata");
372
  tmq_conf_set(conf, "msg.with.table.name", "true");
L
Liu Jicong 已提交
373
  tmq_conf_set(conf, "enable.auto.commit", "true");
L
Liu Jicong 已提交
374

375
  /*tmq_conf_set(conf, "experimental.snapshot.enable", "true");*/
L
Liu Jicong 已提交
376

L
Liu Jicong 已提交
377
  tmq_conf_set_auto_commit_cb(conf, tmq_commit_cb_print, NULL);
L
Liu Jicong 已提交
378
  tmq_t* tmq = tmq_consumer_new(conf, NULL, 0);
L
Liu Jicong 已提交
379
  assert(tmq);
L
Liu Jicong 已提交
380
  tmq_conf_destroy(conf);
L
Liu Jicong 已提交
381 382 383 384 385
  return tmq;
}

tmq_list_t* build_topic_list() {
  tmq_list_t* topic_list = tmq_list_new();
L
Liu Jicong 已提交
386 387
  tmq_list_append(topic_list, "topic_ctb_column");
  /*tmq_list_append(topic_list, "tmq_test_db_multi_insert_topic");*/
L
Liu Jicong 已提交
388 389 390
  return topic_list;
}

391
void basic_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
L
Liu Jicong 已提交
392
  int32_t code;
L
Liu Jicong 已提交
393

L
Liu Jicong 已提交
394 395
  if ((code = tmq_subscribe(tmq, topics))) {
    fprintf(stderr, "%% Failed to start consuming topics: %s\n", tmq_err2str(code));
L
Liu Jicong 已提交
396 397 398
    printf("subscribe err\n");
    return;
  }
L
Liu Jicong 已提交
399
  int32_t cnt = 0;
L
Liu Jicong 已提交
400
  while (running) {
L
Liu Jicong 已提交
401
    TAOS_RES* tmqmessage = tmq_consumer_poll(tmq, -1);
L
Liu Jicong 已提交
402
    if (tmqmessage) {
L
Liu Jicong 已提交
403
      cnt++;
404
      msg_process(tmqmessage);
L
Liu Jicong 已提交
405
      /*if (cnt >= 2) break;*/
L
Liu Jicong 已提交
406
      /*printf("get data\n");*/
L
Liu Jicong 已提交
407
      taos_free_result(tmqmessage);
408
      /*} else {*/
L
Liu Jicong 已提交
409
      /*break;*/
L
Liu Jicong 已提交
410
      /*tmq_commit_sync(tmq, NULL);*/
L
Liu Jicong 已提交
411 412 413
    }
  }

L
Liu Jicong 已提交
414 415 416
  code = tmq_consumer_close(tmq);
  if (code)
    fprintf(stderr, "%% Failed to close consumer: %s\n", tmq_err2str(code));
L
Liu Jicong 已提交
417 418 419 420
  else
    fprintf(stderr, "%% Consumer closed\n");
}

421
void sync_consume_loop(tmq_t* tmq, tmq_list_t* topics) {
L
Liu Jicong 已提交
422
  static const int MIN_COMMIT_COUNT = 1;
L
Liu Jicong 已提交
423

L
Liu Jicong 已提交
424 425
  int     msg_count = 0;
  int32_t code;
L
Liu Jicong 已提交
426

L
Liu Jicong 已提交
427 428
  if ((code = tmq_subscribe(tmq, topics))) {
    fprintf(stderr, "%% Failed to start consuming topics: %s\n", tmq_err2str(code));
L
Liu Jicong 已提交
429 430 431
    return;
  }

L
Liu Jicong 已提交
432 433 434 435 436 437 438 439 440
  tmq_list_t* subList = NULL;
  tmq_subscription(tmq, &subList);
  char**  subTopics = tmq_list_to_c_array(subList);
  int32_t sz = tmq_list_get_size(subList);
  printf("subscribed topics: ");
  for (int32_t i = 0; i < sz; i++) {
    printf("%s, ", subTopics[i]);
  }
  printf("\n");
L
Liu Jicong 已提交
441
  tmq_list_destroy(subList);
L
Liu Jicong 已提交
442

L
Liu Jicong 已提交
443
  while (running) {
L
Liu Jicong 已提交
444
    TAOS_RES* tmqmessage = tmq_consumer_poll(tmq, 1000);
L
Liu Jicong 已提交
445
    if (tmqmessage) {
L
Liu Jicong 已提交
446
      msg_process(tmqmessage);
L
Liu Jicong 已提交
447
      taos_free_result(tmqmessage);
L
Liu Jicong 已提交
448

L
Liu Jicong 已提交
449
      /*tmq_commit_sync(tmq, NULL);*/
L
Liu Jicong 已提交
450
      /*if ((++msg_count % MIN_COMMIT_COUNT) == 0) tmq_commit(tmq, NULL, 0);*/
L
Liu Jicong 已提交
451
    }
452
  }
L
Liu Jicong 已提交
453

L
Liu Jicong 已提交
454 455 456
  code = tmq_consumer_close(tmq);
  if (code)
    fprintf(stderr, "%% Failed to close consumer: %s\n", tmq_err2str(code));
L
Liu Jicong 已提交
457 458 459 460
  else
    fprintf(stderr, "%% Consumer closed\n");
}

L
Liu Jicong 已提交
461 462 463
int main(int argc, char* argv[]) {
  if (argc > 1) {
    printf("env init\n");
L
Liu Jicong 已提交
464 465 466
    if (init_env() < 0) {
      return -1;
    }
L
fix  
Liu Jicong 已提交
467
    create_topic();
L
Liu Jicong 已提交
468
  }
469
  tmq_t*      tmq = build_consumer();
L
Liu Jicong 已提交
470
  tmq_list_t* topic_list = build_topic_list();
471 472
  basic_consume_loop(tmq, topic_list);
  /*sync_consume_loop(tmq, topic_list);*/
L
Liu Jicong 已提交
473
}