create_table.c 8.8 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
int32_t numOfTables = 10000;
S
Shengliang Guan 已提交
29 30
int32_t createTable = 1;
int32_t insertData = 0;
S
Shengliang Guan 已提交
31
int32_t batchNum = 10;
S
Shengliang Guan 已提交
32
int32_t numOfVgroups = 2;
33 34 35 36 37 38

typedef struct {
  int32_t   tableBeginIndex;
  int32_t   tableEndIndex;
  int32_t   threadIndex;
  char      dbName[32];
S
Shengliang Guan 已提交
39
  char      stbName[64];
40
  float     createTableSpeed;
S
Shengliang Guan 已提交
41
  float     insertDataSpeed;
42 43 44
  pthread_t thread;
} SThreadInfo;

S
Shengliang Guan 已提交
45
void  parseArgument(int32_t argc, char *argv[]);
46
void *threadFunc(void *param);
S
Shengliang Guan 已提交
47
void  createDbAndStb();
48

S
Shengliang Guan 已提交
49
int32_t main(int32_t argc, char *argv[]) {
S
Shengliang Guan 已提交
50 51 52 53
  parseArgument(argc, argv);
  createDbAndStb();

  pPrint("%d threads are spawned to create %d tables", numOfThreads, numOfThreads);
54 55 56 57 58 59 60 61

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

  int32_t numOfTablesPerThread = numOfTables / numOfThreads;
  numOfTables = numOfTablesPerThread * numOfThreads;
S
Shengliang Guan 已提交
62
  for (int32_t i = 0; i < numOfThreads; ++i) {
63 64 65 66
    pInfo[i].tableBeginIndex = i * numOfTablesPerThread;
    pInfo[i].tableEndIndex = (i + 1) * numOfTablesPerThread;
    pInfo[i].threadIndex = i;
    strcpy(pInfo[i].dbName, dbName);
S
Shengliang Guan 已提交
67
    strcpy(pInfo[i].stbName, stbName);
68 69 70 71
    pthread_create(&(pInfo[i].thread), &thattr, threadFunc, (void *)(pInfo + i));
  }

  taosMsleep(300);
S
Shengliang Guan 已提交
72
  for (int32_t i = 0; i < numOfThreads; i++) {
73 74 75 76
    pthread_join(pInfo[i].thread, NULL);
  }

  float createTableSpeed = 0;
S
Shengliang Guan 已提交
77
  for (int32_t i = 0; i < numOfThreads; ++i) {
78 79 80
    createTableSpeed += pInfo[i].createTableSpeed;
  }

S
Shengliang Guan 已提交
81
  float insertDataSpeed = 0;
S
Shengliang Guan 已提交
82
  for (int32_t i = 0; i < numOfThreads; ++i) {
S
Shengliang Guan 已提交
83 84 85 86 87
    insertDataSpeed += pInfo[i].insertDataSpeed;
  }

  pPrint("%s total %.1f tables/second, threads:%d %s", GREEN, createTableSpeed, numOfThreads, NC);
  pPrint("%s total %.1f rows/second, threads:%d %s", GREEN, insertDataSpeed, numOfThreads, NC);
88 89 90 91 92

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

S
Shengliang Guan 已提交
93
void createDbAndStb() {
94 95
  pPrint("start to create db and stable");
  char qstr[64000];
S
Shengliang Guan 已提交
96

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

S
Shengliang Guan 已提交
103
  sprintf(qstr, "create database if not exists %s vgroups %d", dbName, numOfVgroups);
104
  TAOS_RES *pSql = taos_query(con, qstr);
S
Shengliang Guan 已提交
105
  int32_t   code = taos_errno(pSql);
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
  if (code != 0) {
    pError("failed to create database:%s, sql:%s, code:%d reason:%s", dbName, qstr, taos_errno(con), taos_errstr(con));
    exit(0);
  }
  taos_free_result(pSql);

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

S
Shengliang Guan 已提交
121 122 123 124 125 126 127 128 129
  sprintf(qstr, "create table %s (ts timestamp, i int) tags (j int)", stbName);
  pSql = taos_query(con, qstr);
  code = taos_errno(pSql);
  if (code != 0) {
    pError("failed to use db, code:%d reason:%s", taos_errno(con), taos_errstr(con));
    exit(0);
  }
  taos_free_result(pSql);

130 131 132 133 134
  taos_close(con);
}

void *threadFunc(void *param) {
  SThreadInfo *pInfo = (SThreadInfo *)param;
S
Shengliang Guan 已提交
135 136
  char        *qstr = malloc(2000 * 1000);
  int32_t      code = 0;
137 138 139 140 141 142 143 144 145 146 147

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

  sprintf(qstr, "use %s", pInfo->dbName);
  TAOS_RES *pSql = taos_query(con, qstr);
  taos_free_result(pSql);

S
Shengliang Guan 已提交
148 149
  if (createTable) {
    int64_t startMs = taosGetTimestampMs();
S
TD-1415  
Shengliang Guan 已提交
150
    for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
S
Shengliang Guan 已提交
151 152 153 154 155 156 157
      int32_t batch = (pInfo->tableEndIndex - t);
      batch = MIN(batch, batchNum);

      int32_t len = sprintf(qstr, "create table");
      for (int32_t i = 0; i < batch; ++i) {
        len += sprintf(qstr + len, " t%d using %s tags(%d)", t + i, stbName, t + i);
      }
S
TD-1415  
Shengliang Guan 已提交
158 159 160
      TAOS_RES *pSql = taos_query(con, qstr);
      code = taos_errno(pSql);
      if (code != 0) {
S
Shengliang Guan 已提交
161
        pError("failed to create table t%d, reason:%s", t, tstrerror(code));
S
TD-1415  
Shengliang Guan 已提交
162 163 164
      }
      taos_free_result(pSql);
    }
S
Shengliang Guan 已提交
165 166 167 168 169 170 171 172 173 174
    int64_t endMs = taosGetTimestampMs();
    int32_t totalTables = pInfo->tableEndIndex - pInfo->tableBeginIndex;
    float   seconds = (endMs - startMs) / 1000.0;
    float   speed = totalTables / seconds;
    pInfo->createTableSpeed = speed;
    pPrint("thread:%d, time:%.2f sec, speed:%.1f tables/second, ", pInfo->threadIndex, seconds, speed);
  }

  if (insertData) {
    int64_t startMs = taosGetTimestampMs();
S
TD-1415  
Shengliang Guan 已提交
175
    for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
S
Shengliang Guan 已提交
176
      sprintf(qstr, "insert into %s%d values(now, 1)", stbName, t);
S
TD-1415  
Shengliang Guan 已提交
177 178 179
      TAOS_RES *pSql = taos_query(con, qstr);
      code = taos_errno(pSql);
      if (code != 0) {
S
Shengliang Guan 已提交
180
        pError("failed to create table %s%d, reason:%s", stbName, t, tstrerror(code));
S
TD-1415  
Shengliang Guan 已提交
181 182
      }
      taos_free_result(pSql);
183
    }
S
Shengliang Guan 已提交
184 185 186 187 188 189
    int64_t endMs = taosGetTimestampMs();
    int32_t totalTables = pInfo->tableEndIndex - pInfo->tableBeginIndex;
    float   seconds = (endMs - startMs) / 1000.0;
    float   speed = totalTables / seconds;
    pInfo->insertDataSpeed = speed;
    pPrint("thread:%d, time:%.2f sec, speed:%.1f rows/second, ", pInfo->threadIndex, seconds, speed);
190 191 192
  }

  taos_close(con);
S
Shengliang Guan 已提交
193
  free(qstr);
194 195 196 197 198 199 200 201 202 203 204 205
  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 已提交
206
  printf("%s%s%s%s\n", indent, indent, "The name of the super table to be created, default is ", stbName);
207 208 209 210
  printf("%s%s\n", indent, "-t");
  printf("%s%s%s%d\n", indent, indent, "numOfThreads, default is ", numOfThreads);
  printf("%s%s\n", indent, "-n");
  printf("%s%s%s%d\n", indent, indent, "numOfTables, default is ", numOfTables);
S
Shengliang Guan 已提交
211 212 213 214 215 216 217 218 219
  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);

220 221 222
  exit(EXIT_SUCCESS);
}

S
Shengliang Guan 已提交
223 224
void parseArgument(int32_t argc, char *argv[]) {
  for (int32_t i = 1; i < argc; i++) {
225 226 227 228 229 230 231 232
    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 已提交
233
      strcpy(stbName, argv[++i]);
234 235 236 237
    } else if (strcmp(argv[i], "-t") == 0) {
      numOfThreads = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-n") == 0) {
      numOfTables = atoi(argv[++i]);
S
Shengliang Guan 已提交
238 239 240 241 242 243 244 245
    } else if (strcmp(argv[i], "-n") == 0) {
      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]);
246 247 248 249 250
    } else {
    }
  }

  pPrint("%s dbName:%s %s", GREEN, dbName, NC);
S
Shengliang Guan 已提交
251
  pPrint("%s stbName:%s %s", GREEN, stbName, NC);
252 253 254
  pPrint("%s configDir:%s %s", GREEN, configDir, NC);
  pPrint("%s numOfTables:%d %s", GREEN, numOfTables, NC);
  pPrint("%s numOfThreads:%d %s", GREEN, numOfThreads, NC);
S
Shengliang Guan 已提交
255 256 257 258 259
  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);

260 261
  pPrint("%s start create table performace test %s", GREEN, NC);
}