create_table.c 12.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
#include "os.h"
S
Shengliang Guan 已提交
18
#include "taos.h"
19
#include "taoserror.h"
S
Shengliang Guan 已提交
20
#include "ulog.h"
21 22 23 24 25

#define GREEN "\033[1;32m"
#define NC "\033[0m"

char    dbName[32] = "db";
S
Shengliang Guan 已提交
26
char    stbName[64] = "st";
S
Shengliang Guan 已提交
27
int32_t numOfThreads = 1;
S
Shengliang Guan 已提交
28
int64_t numOfTables = 200000;
S
Shengliang Guan 已提交
29 30
int32_t createTable = 1;
int32_t insertData = 0;
S
Shengliang Guan 已提交
31
int32_t batchNum = 100;
S
Shengliang Guan 已提交
32
int32_t numOfVgroups = 2;
L
lihui 已提交
33
int32_t showTablesFlag = 0;
34 35

typedef struct {
S
Shengliang Guan 已提交
36 37
  int64_t   tableBeginIndex;
  int64_t   tableEndIndex;
38 39
  int32_t   threadIndex;
  char      dbName[32];
S
Shengliang Guan 已提交
40
  char      stbName[64];
41
  float     createTableSpeed;
S
Shengliang Guan 已提交
42
  float     insertDataSpeed;
S
Shengliang Guan 已提交
43
  int64_t   startMs;
L
lihui 已提交
44 45
  int64_t   maxDelay;
  int64_t   minDelay;
46 47 48
  pthread_t thread;
} SThreadInfo;

L
lihui 已提交
49 50 51
//void  parseArgument(int32_t argc, char *argv[]);
//void *threadFunc(void *param);
//void  createDbAndStb();
52

S
Shengliang Guan 已提交
53
void createDbAndStb() {
54 55
  pPrint("start to create db and stable");
  char qstr[64000];
S
Shengliang Guan 已提交
56

57 58
  TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
  if (con == NULL) {
L
lihui 已提交
59
    pError("failed to connect to DB, reason:%s", taos_errstr(NULL));
60 61 62
    exit(1);
  }

S
Shengliang Guan 已提交
63
  sprintf(qstr, "create database if not exists %s vgroups %d", dbName, numOfVgroups);
L
lihui 已提交
64 65
  TAOS_RES *pRes = taos_query(con, qstr);
  int32_t   code = taos_errno(pRes);
66
  if (code != 0) {
L
lihui 已提交
67
    pError("failed to create database:%s, sql:%s, code:%d reason:%s", dbName, qstr, taos_errno(pRes), taos_errstr(pRes));
68 69
    exit(0);
  }
L
lihui 已提交
70
  taos_free_result(pRes);
71 72

  sprintf(qstr, "use %s", dbName);
L
lihui 已提交
73 74
  pRes = taos_query(con, qstr);
  code = taos_errno(pRes);
75
  if (code != 0) {
L
lihui 已提交
76
    pError("failed to use db, code:%d reason:%s", taos_errno(pRes), taos_errstr(pRes));
77 78
    exit(0);
  }
L
lihui 已提交
79
  taos_free_result(pRes);
80

S
Shengliang Guan 已提交
81
  sprintf(qstr, "create table %s (ts timestamp, i int) tags (j int)", stbName);
L
lihui 已提交
82 83
  pRes = taos_query(con, qstr);
  code = taos_errno(pRes);
S
Shengliang Guan 已提交
84
  if (code != 0) {
L
lihui 已提交
85
    pError("failed to use db, code:%d reason:%s", taos_errno(pRes), taos_errstr(pRes));
S
Shengliang Guan 已提交
86 87
    exit(0);
  }
L
lihui 已提交
88
  taos_free_result(pRes);
S
Shengliang Guan 已提交
89

90 91 92
  taos_close(con);
}

S
Shengliang Guan 已提交
93
void printCreateProgress(SThreadInfo *pInfo, int64_t t) {
S
Shengliang Guan 已提交
94
  int64_t endMs = taosGetTimestampMs();
S
Shengliang Guan 已提交
95
  int64_t totalTables = t - pInfo->tableBeginIndex;
S
Shengliang Guan 已提交
96 97 98
  float   seconds = (endMs - pInfo->startMs) / 1000.0;
  float   speed = totalTables / seconds;
  pInfo->createTableSpeed = speed;
S
Shengliang Guan 已提交
99 100
  pPrint("thread:%d, %" PRId64 " tables created, time:%.2f sec, speed:%.1f tables/second, ", pInfo->threadIndex,
         totalTables, seconds, speed);
S
Shengliang Guan 已提交
101 102
}

S
Shengliang Guan 已提交
103
void printInsertProgress(SThreadInfo *pInfo, int64_t t) {
S
Shengliang Guan 已提交
104
  int64_t endMs = taosGetTimestampMs();
S
Shengliang Guan 已提交
105
  int64_t totalTables = t - pInfo->tableBeginIndex;
S
Shengliang Guan 已提交
106 107 108
  float   seconds = (endMs - pInfo->startMs) / 1000.0;
  float   speed = totalTables / seconds;
  pInfo->insertDataSpeed = speed;
S
Shengliang Guan 已提交
109 110
  pPrint("thread:%d, %" PRId64 " rows inserted, time:%.2f sec, speed:%.1f rows/second, ", pInfo->threadIndex,
         totalTables, seconds, speed);
S
Shengliang Guan 已提交
111 112
}

L
lihui 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
static int64_t getResult(TAOS_RES *tres) {
  TAOS_ROW row = taos_fetch_row(tres);
  if (row == NULL) {
    return 0;
  }

  int         num_fields = taos_num_fields(tres);
  TAOS_FIELD *fields = taos_fetch_fields(tres);
  int         precision = taos_result_precision(tres);

  int64_t numOfRows = 0;
  do {
    numOfRows++;
    row = taos_fetch_row(tres);
  } while (row != NULL);

  return numOfRows;
}


void showTables() {  
  pPrint("start to show tables");
  char qstr[32];

  TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
  if (con == NULL) {
    pError("failed to connect to DB, reason:%s", taos_errstr(NULL));
    exit(1);
  }

  sprintf(qstr, "use %s", dbName);
  TAOS_RES *pRes = taos_query(con, qstr);
  int code = taos_errno(pRes);
  if (code != 0) {
    pError("failed to use db, code:%d reason:%s", taos_errno(pRes), taos_errstr(pRes));
    exit(1);
  }
  taos_free_result(pRes);

  sprintf(qstr, "show tables");
  pRes = taos_query(con, qstr);
  code = taos_errno(pRes);
  if (code != 0) {
    pError("failed to show tables, code:%d reason:%s", taos_errno(pRes), taos_errstr(pRes));
    exit(0);
  }

  int64_t totalTableNum = getResult(pRes);
  taos_free_result(pRes);

  pPrint("%s database: %s, total %" PRId64 " tables %s", GREEN, dbName, totalTableNum, NC);  

  taos_close(con);
}


169 170
void *threadFunc(void *param) {
  SThreadInfo *pInfo = (SThreadInfo *)param;
S
Shengliang Guan 已提交
171 172
  char        *qstr = malloc(2000 * 1000);
  int32_t      code = 0;
173 174 175

  TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
  if (con == NULL) {
L
lihui 已提交
176
    pError("index:%d, failed to connect to DB, reason:%s", pInfo->threadIndex, taos_errstr(NULL));
177 178 179
    exit(1);
  }

L
lihui 已提交
180
  //printf("thread:%d, table range: %"PRId64 " - %"PRId64 "\n", pInfo->threadIndex, pInfo->tableBeginIndex, pInfo->tableEndIndex);
181
  sprintf(qstr, "use %s", pInfo->dbName);
L
lihui 已提交
182 183 184
  TAOS_RES *pRes = taos_query(con, qstr);
  taos_free_result(pRes);

185

S
Shengliang Guan 已提交
186
  if (createTable) {
L
lihui 已提交
187 188 189
    int64_t curMs = 0;
    int64_t beginMs = taosGetTimestampMs();
    pInfo->startMs = beginMs;
S
Shengliang Guan 已提交
190 191
    for (int64_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
      int64_t batch = (pInfo->tableEndIndex - t);
S
Shengliang Guan 已提交
192 193 194 195
      batch = MIN(batch, batchNum);

      int32_t len = sprintf(qstr, "create table");
      for (int32_t i = 0; i < batch; ++i) {
S
Shengliang Guan 已提交
196
        len += sprintf(qstr + len, " t%" PRId64 " using %s tags(%" PRId64 ")", t + i, stbName, t + i);
S
Shengliang Guan 已提交
197
      }
S
Shengliang Guan 已提交
198

L
lihui 已提交
199 200 201
      int64_t startTs = taosGetTimestampUs();
      TAOS_RES *pRes = taos_query(con, qstr);
      code = taos_errno(pRes);
S
TD-1415  
Shengliang Guan 已提交
202
      if (code != 0) {
S
Shengliang Guan 已提交
203
        pError("failed to create table t%" PRId64 ", reason:%s", t, tstrerror(code));
S
TD-1415  
Shengliang Guan 已提交
204
      }
L
lihui 已提交
205 206 207 208 209 210 211 212 213 214
      taos_free_result(pRes);
	  int64_t endTs = taosGetTimestampUs();
	  int64_t delay = endTs - startTs;
	  //printf("==== %"PRId64" -  %"PRId64", %"PRId64"\n", startTs, endTs, delay);
	  if (delay > pInfo->maxDelay) pInfo->maxDelay = delay;
      if (delay < pInfo->minDelay) pInfo->minDelay = delay;

	  curMs = taosGetTimestampMs();
      if (curMs -  beginMs > 10000) {
	  	beginMs = curMs;
S
Shengliang Guan 已提交
215 216 217
        printCreateProgress(pInfo, t);
      }
      t += (batch - 1);
S
TD-1415  
Shengliang Guan 已提交
218
    }
S
Shengliang Guan 已提交
219
    printCreateProgress(pInfo, pInfo->tableEndIndex);
S
Shengliang Guan 已提交
220 221 222
  }

  if (insertData) {
L
lihui 已提交
223 224 225
    int64_t curMs = 0;
    int64_t beginMs = taosGetTimestampMs();;

S
Shengliang Guan 已提交
226
    pInfo->startMs = taosGetTimestampMs();
S
Shengliang Guan 已提交
227 228
    for (int64_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
      int64_t batch = (pInfo->tableEndIndex - t);
S
Shengliang Guan 已提交
229 230 231 232
      batch = MIN(batch, batchNum);

      int32_t len = sprintf(qstr, "insert into");
      for (int32_t i = 0; i < batch; ++i) {
S
Shengliang Guan 已提交
233
        len += sprintf(qstr + len, " t%" PRId64 " values(now, %" PRId64 ")", t + i, t + i);
S
Shengliang Guan 已提交
234 235
      }

L
lihui 已提交
236 237
      TAOS_RES *pRes = taos_query(con, qstr);
      code = taos_errno(pRes);
S
TD-1415  
Shengliang Guan 已提交
238
      if (code != 0) {
S
Shengliang Guan 已提交
239
        pError("failed to insert table t%" PRId64 ", reason:%s", t, tstrerror(code));
S
TD-1415  
Shengliang Guan 已提交
240
      }
L
lihui 已提交
241
      taos_free_result(pRes);
S
Shengliang Guan 已提交
242

L
lihui 已提交
243 244
      curMs = taosGetTimestampMs();
      if (curMs -  beginMs > 10000) {
S
Shengliang Guan 已提交
245 246 247
        printInsertProgress(pInfo, t);
      }
      t += (batch - 1);
248
    }
S
Shengliang Guan 已提交
249
    printInsertProgress(pInfo, pInfo->tableEndIndex);
250 251 252
  }

  taos_close(con);
S
Shengliang Guan 已提交
253
  free(qstr);
254 255 256 257 258 259 260 261 262 263 264 265
  return 0;
}

void printHelp() {
  char indent[10] = "        ";
  printf("Used to test the performance while create table\n");

  printf("%s%s\n", indent, "-c");
  printf("%s%s%s%s\n", indent, indent, "Configuration directory, default is ", configDir);
  printf("%s%s\n", indent, "-d");
  printf("%s%s%s%s\n", indent, indent, "The name of the database to be created, default is ", dbName);
  printf("%s%s\n", indent, "-s");
S
Shengliang Guan 已提交
266
  printf("%s%s%s%s\n", indent, indent, "The name of the super table to be created, default is ", stbName);
267 268 269
  printf("%s%s\n", indent, "-t");
  printf("%s%s%s%d\n", indent, indent, "numOfThreads, default is ", numOfThreads);
  printf("%s%s\n", indent, "-n");
S
Shengliang Guan 已提交
270
  printf("%s%s%s%" PRId64 "\n", indent, indent, "numOfTables, default is ", numOfTables);
S
Shengliang Guan 已提交
271 272 273 274 275 276 277 278
  printf("%s%s\n", indent, "-v");
  printf("%s%s%s%d\n", indent, indent, "numOfVgroups, default is ", numOfVgroups);
  printf("%s%s\n", indent, "-a");
  printf("%s%s%s%d\n", indent, indent, "createTable, default is ", createTable);
  printf("%s%s\n", indent, "-i");
  printf("%s%s%s%d\n", indent, indent, "insertData, default is ", insertData);
  printf("%s%s\n", indent, "-b");
  printf("%s%s%s%d\n", indent, indent, "batchNum, default is ", batchNum);
L
lihui 已提交
279 280
  printf("%s%s\n", indent, "-w");
  printf("%s%s%s%d\n", indent, indent, "showTablesFlag, default is ", showTablesFlag);
S
Shengliang Guan 已提交
281

282 283 284
  exit(EXIT_SUCCESS);
}

S
Shengliang Guan 已提交
285 286
void parseArgument(int32_t argc, char *argv[]) {
  for (int32_t i = 1; i < argc; i++) {
287 288 289 290 291 292 293 294
    if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) {
      printHelp();
      exit(0);
    } else if (strcmp(argv[i], "-d") == 0) {
      strcpy(dbName, argv[++i]);
    } else if (strcmp(argv[i], "-c") == 0) {
      strcpy(configDir, argv[++i]);
    } else if (strcmp(argv[i], "-s") == 0) {
S
Shengliang Guan 已提交
295
      strcpy(stbName, argv[++i]);
296 297 298
    } else if (strcmp(argv[i], "-t") == 0) {
      numOfThreads = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-n") == 0) {
S
Shengliang Guan 已提交
299
      numOfTables = atoll(argv[++i]);
L
lihui 已提交
300
    } else if (strcmp(argv[i], "-v") == 0) {
S
Shengliang Guan 已提交
301 302 303 304 305 306 307
      numOfVgroups = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-a") == 0) {
      createTable = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-i") == 0) {
      insertData = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-b") == 0) {
      batchNum = atoi(argv[++i]);
L
lihui 已提交
308 309
    } else if (strcmp(argv[i], "-w") == 0) {
      showTablesFlag = atoi(argv[++i]);
310 311 312 313 314
    } else {
    }
  }

  pPrint("%s dbName:%s %s", GREEN, dbName, NC);
S
Shengliang Guan 已提交
315
  pPrint("%s stbName:%s %s", GREEN, stbName, NC);
316
  pPrint("%s configDir:%s %s", GREEN, configDir, NC);
S
Shengliang Guan 已提交
317
  pPrint("%s numOfTables:%" PRId64 " %s", GREEN, numOfTables, NC);
318
  pPrint("%s numOfThreads:%d %s", GREEN, numOfThreads, NC);
S
Shengliang Guan 已提交
319 320 321 322
  pPrint("%s numOfVgroups:%d %s", GREEN, numOfVgroups, NC);
  pPrint("%s createTable:%d %s", GREEN, createTable, NC);
  pPrint("%s insertData:%d %s", GREEN, insertData, NC);
  pPrint("%s batchNum:%d %s", GREEN, batchNum, NC);
L
lihui 已提交
323
  pPrint("%s showTablesFlag:%d %s", GREEN, showTablesFlag, NC);
S
Shengliang Guan 已提交
324

325 326
  pPrint("%s start create table performace test %s", GREEN, NC);
}
L
lihui 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412

int32_t main(int32_t argc, char *argv[]) {
  parseArgument(argc, argv);

  if (showTablesFlag) {
      showTables();
	  return 0;
  }
  
  createDbAndStb();

  pPrint("%d threads are spawned to create %d tables", numOfThreads, numOfThreads);

  pthread_attr_t thattr;
  pthread_attr_init(&thattr);
  pthread_attr_setdetachstate(&thattr, PTHREAD_CREATE_JOINABLE);
  SThreadInfo *pInfo = (SThreadInfo *)calloc(numOfThreads, sizeof(SThreadInfo));

  //int64_t numOfTablesPerThread = numOfTables / numOfThreads;
  //numOfTables = numOfTablesPerThread * numOfThreads;


  if (numOfThreads < 1) {
    numOfThreads = 1;
  }
  
  int64_t a = numOfTables / numOfThreads;
  if (a < 1) {
  	  numOfThreads = numOfTables;
  	  a = 1;
  }
  
  int64_t b = 0;
  b = numOfTables % numOfThreads;

  int64_t tableFrom = 0;
  for (int32_t i = 0; i < numOfThreads; ++i) {
    pInfo[i].tableBeginIndex = tableFrom;
    pInfo[i].tableEndIndex = i < b ? tableFrom + a : tableFrom + a - 1;
    tableFrom = pInfo[i].tableEndIndex + 1;
    pInfo[i].threadIndex = i;
	pInfo[i].minDelay = INT64_MAX;
    strcpy(pInfo[i].dbName, dbName);
    strcpy(pInfo[i].stbName, stbName);
    pthread_create(&(pInfo[i].thread), &thattr, threadFunc, (void *)(pInfo + i));
  }

  taosMsleep(300);
  for (int32_t i = 0; i < numOfThreads; i++) {
    pthread_join(pInfo[i].thread, NULL);
  }

  int64_t maxDelay = 0;
  int64_t minDelay = INT64_MAX;

  float createTableSpeed = 0;
  for (int32_t i = 0; i < numOfThreads; ++i) {
    createTableSpeed += pInfo[i].createTableSpeed;

    if (pInfo[i].maxDelay > maxDelay) maxDelay = pInfo[i].maxDelay;
    if (pInfo[i].minDelay < minDelay) minDelay = pInfo[i].minDelay;  
  }

  float insertDataSpeed = 0;
  for (int32_t i = 0; i < numOfThreads; ++i) {
    insertDataSpeed += pInfo[i].insertDataSpeed;
  }

  pPrint("%s total %" PRId64 " tables, %.1f tables/second, threads:%d, maxDelay: %" PRId64 "us, minDelay: %" PRId64 "us %s", 
           GREEN, 
           numOfTables, 
           createTableSpeed, 
           numOfThreads, 
           maxDelay, 
           minDelay,
           NC);

  if (insertData) {
      pPrint("%s total %" PRId64 " tables, %.1f rows/second, threads:%d %s", GREEN, numOfTables, insertDataSpeed,
         numOfThreads, NC);
  }

  pthread_attr_destroy(&thattr);
  free(pInfo);
}