test for create table
This commit is contained in:
parent
89a0dd76c2
commit
f469521f24
|
@ -28,35 +28,35 @@
|
||||||
#define NC "\033[0m"
|
#define NC "\033[0m"
|
||||||
|
|
||||||
char dbName[32] = "db";
|
char dbName[32] = "db";
|
||||||
char stableName[64] = "st";
|
char stbName[64] = "st";
|
||||||
int32_t numOfThreads = 30;
|
int32_t numOfThreads = 2;
|
||||||
int32_t numOfTables = 100000;
|
int32_t numOfTables = 100;
|
||||||
int32_t replica = 1;
|
int32_t createTable = 1;
|
||||||
int32_t numOfColumns = 2;
|
int32_t insertData = 0;
|
||||||
|
int32_t batchNum = 1;
|
||||||
|
int32_t numOfVgroups = 2;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int32_t tableBeginIndex;
|
int32_t tableBeginIndex;
|
||||||
int32_t tableEndIndex;
|
int32_t tableEndIndex;
|
||||||
int32_t threadIndex;
|
int32_t threadIndex;
|
||||||
char dbName[32];
|
char dbName[32];
|
||||||
char stableName[64];
|
char stbName[64];
|
||||||
float createTableSpeed;
|
float createTableSpeed;
|
||||||
|
float insertDataSpeed;
|
||||||
pthread_t thread;
|
pthread_t thread;
|
||||||
} SThreadInfo;
|
} SThreadInfo;
|
||||||
|
|
||||||
void shellParseArgument(int argc, char *argv[]);
|
void parseArgument(int argc, char *argv[]);
|
||||||
void *threadFunc(void *param);
|
void *threadFunc(void *param);
|
||||||
void createDbAndSTable();
|
void createDbAndStb();
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
shellParseArgument(argc, argv);
|
parseArgument(argc, argv);
|
||||||
taos_init();
|
createDbAndStb();
|
||||||
if (replica != 0) {
|
|
||||||
createDbAndSTable();
|
pPrint("%d threads are spawned to create %d tables", numOfThreads, numOfThreads);
|
||||||
}
|
|
||||||
|
|
||||||
pPrint("%d threads are spawned to create table", numOfThreads);
|
|
||||||
|
|
||||||
pthread_attr_t thattr;
|
pthread_attr_t thattr;
|
||||||
pthread_attr_init(&thattr);
|
pthread_attr_init(&thattr);
|
||||||
pthread_attr_setdetachstate(&thattr, PTHREAD_CREATE_JOINABLE);
|
pthread_attr_setdetachstate(&thattr, PTHREAD_CREATE_JOINABLE);
|
||||||
|
@ -69,7 +69,7 @@ int main(int argc, char *argv[]) {
|
||||||
pInfo[i].tableEndIndex = (i + 1) * numOfTablesPerThread;
|
pInfo[i].tableEndIndex = (i + 1) * numOfTablesPerThread;
|
||||||
pInfo[i].threadIndex = i;
|
pInfo[i].threadIndex = i;
|
||||||
strcpy(pInfo[i].dbName, dbName);
|
strcpy(pInfo[i].dbName, dbName);
|
||||||
strcpy(pInfo[i].stableName, stableName);
|
strcpy(pInfo[i].stbName, stbName);
|
||||||
pthread_create(&(pInfo[i].thread), &thattr, threadFunc, (void *)(pInfo + i));
|
pthread_create(&(pInfo[i].thread), &thattr, threadFunc, (void *)(pInfo + i));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,25 +83,31 @@ int main(int argc, char *argv[]) {
|
||||||
createTableSpeed += pInfo[i].createTableSpeed;
|
createTableSpeed += pInfo[i].createTableSpeed;
|
||||||
}
|
}
|
||||||
|
|
||||||
pPrint("%s total speed:%.1f tables/second, threads:%d %s", GREEN, createTableSpeed, numOfThreads, NC);
|
float insertDataSpeed = 0;
|
||||||
|
for (int i = 0; i < numOfThreads; ++i) {
|
||||||
|
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);
|
||||||
|
|
||||||
pthread_attr_destroy(&thattr);
|
pthread_attr_destroy(&thattr);
|
||||||
free(pInfo);
|
free(pInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
void createDbAndSTable() {
|
void createDbAndStb() {
|
||||||
pPrint("start to create db and stable");
|
pPrint("start to create db and stable");
|
||||||
char qstr[64000];
|
char qstr[64000];
|
||||||
|
|
||||||
TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
|
TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
|
||||||
if (con == NULL) {
|
if (con == NULL) {
|
||||||
pError("failed to connect to DB, reason:%s", taos_errstr(con));
|
pError("failed to connect to DB, reason:%s", taos_errstr(con));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(qstr, "create database if not exists %s replica %d", dbName, replica);
|
sprintf(qstr, "create database if not exists %s vgroups %d", dbName, numOfVgroups);
|
||||||
TAOS_RES *pSql = taos_query(con, qstr);
|
TAOS_RES *pSql = taos_query(con, qstr);
|
||||||
int32_t code = taos_errno(pSql);
|
int32_t code = taos_errno(pSql);
|
||||||
if (code != 0) {
|
if (code != 0) {
|
||||||
pError("failed to create database:%s, sql:%s, code:%d reason:%s", dbName, qstr, taos_errno(con), taos_errstr(con));
|
pError("failed to create database:%s, sql:%s, code:%d reason:%s", dbName, qstr, taos_errno(con), taos_errstr(con));
|
||||||
exit(0);
|
exit(0);
|
||||||
|
@ -122,8 +128,8 @@ void createDbAndSTable() {
|
||||||
|
|
||||||
void *threadFunc(void *param) {
|
void *threadFunc(void *param) {
|
||||||
SThreadInfo *pInfo = (SThreadInfo *)param;
|
SThreadInfo *pInfo = (SThreadInfo *)param;
|
||||||
char qstr[65000];
|
char qstr[65000];
|
||||||
int code;
|
int code;
|
||||||
|
|
||||||
TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
|
TAOS *con = taos_connect(NULL, "root", "taosdata", NULL, 0);
|
||||||
if (con == NULL) {
|
if (con == NULL) {
|
||||||
|
@ -135,49 +141,45 @@ void *threadFunc(void *param) {
|
||||||
TAOS_RES *pSql = taos_query(con, qstr);
|
TAOS_RES *pSql = taos_query(con, qstr);
|
||||||
taos_free_result(pSql);
|
taos_free_result(pSql);
|
||||||
|
|
||||||
int64_t startMs = taosGetTimestampMs();
|
if (createTable) {
|
||||||
|
int64_t startMs = taosGetTimestampMs();
|
||||||
if (replica != 0) {
|
|
||||||
for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
|
for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
|
||||||
sprintf(qstr, "create table %s%d (ts timestamp, i int)", stableName, t);
|
sprintf(qstr, "create table %s%d (ts timestamp, i int)", stbName, t);
|
||||||
TAOS_RES *pSql = taos_query(con, qstr);
|
TAOS_RES *pSql = taos_query(con, qstr);
|
||||||
code = taos_errno(pSql);
|
code = taos_errno(pSql);
|
||||||
if (code != 0) {
|
if (code != 0) {
|
||||||
pError("failed to create table %s%d, reason:%s", stableName, t, tstrerror(code));
|
pError("failed to create table %s%d, reason:%s", stbName, t, tstrerror(code));
|
||||||
}
|
}
|
||||||
taos_free_result(pSql);
|
taos_free_result(pSql);
|
||||||
}
|
}
|
||||||
} else {
|
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();
|
||||||
for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
|
for (int32_t t = pInfo->tableBeginIndex; t < pInfo->tableEndIndex; ++t) {
|
||||||
sprintf(qstr, "insert into %s%d values(now, 1)", stableName, t);
|
sprintf(qstr, "insert into %s%d values(now, 1)", stbName, t);
|
||||||
TAOS_RES *pSql = taos_query(con, qstr);
|
TAOS_RES *pSql = taos_query(con, qstr);
|
||||||
code = taos_errno(pSql);
|
code = taos_errno(pSql);
|
||||||
if (code != 0) {
|
if (code != 0) {
|
||||||
if (code != TSDB_CODE_MND_INVALID_TABLE_NAME) {
|
pError("failed to create table %s%d, reason:%s", stbName, t, tstrerror(code));
|
||||||
pError("failed to create table %s%d, reason:%s", stableName, t, tstrerror(code));
|
|
||||||
}
|
|
||||||
if (code == TSDB_CODE_VND_INVALID_VGROUP_ID) {
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
taos_free_result(pSql);
|
taos_free_result(pSql);
|
||||||
}
|
}
|
||||||
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
float createTableSpeed = 0;
|
|
||||||
for (int i = 0; i < numOfThreads; ++i) {
|
|
||||||
createTableSpeed += pInfo[i].createTableSpeed;
|
|
||||||
}
|
|
||||||
|
|
||||||
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);
|
|
||||||
taos_close(con);
|
taos_close(con);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,20 +192,24 @@ void printHelp() {
|
||||||
printf("%s%s\n", indent, "-d");
|
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%s%s\n", indent, indent, "The name of the database to be created, default is ", dbName);
|
||||||
printf("%s%s\n", indent, "-s");
|
printf("%s%s\n", indent, "-s");
|
||||||
printf("%s%s%s%s\n", indent, indent, "The name of the super table to be created, default is ", stableName);
|
printf("%s%s%s%s\n", indent, indent, "The name of the super table to be created, default is ", stbName);
|
||||||
printf("%s%s\n", indent, "-t");
|
printf("%s%s\n", indent, "-t");
|
||||||
printf("%s%s%s%d\n", indent, indent, "numOfThreads, default is ", numOfThreads);
|
printf("%s%s%s%d\n", indent, indent, "numOfThreads, default is ", numOfThreads);
|
||||||
printf("%s%s\n", indent, "-n");
|
printf("%s%s\n", indent, "-n");
|
||||||
printf("%s%s%s%d\n", indent, indent, "numOfTables, default is ", numOfTables);
|
printf("%s%s%s%d\n", indent, indent, "numOfTables, default is ", numOfTables);
|
||||||
printf("%s%s\n", indent, "-r");
|
printf("%s%s\n", indent, "-v");
|
||||||
printf("%s%s%s%d\n", indent, indent, "replica, default is ", replica);
|
printf("%s%s%s%d\n", indent, indent, "numOfVgroups, default is ", numOfVgroups);
|
||||||
printf("%s%s\n", indent, "-columns");
|
printf("%s%s\n", indent, "-a");
|
||||||
printf("%s%s%s%d\n", indent, indent, "numOfColumns, default is ", numOfColumns);
|
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);
|
||||||
|
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
void shellParseArgument(int argc, char *argv[]) {
|
void parseArgument(int argc, char *argv[]) {
|
||||||
for (int i = 1; i < argc; i++) {
|
for (int i = 1; i < argc; i++) {
|
||||||
if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) {
|
if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) {
|
||||||
printHelp();
|
printHelp();
|
||||||
|
@ -213,26 +219,32 @@ void shellParseArgument(int argc, char *argv[]) {
|
||||||
} else if (strcmp(argv[i], "-c") == 0) {
|
} else if (strcmp(argv[i], "-c") == 0) {
|
||||||
strcpy(configDir, argv[++i]);
|
strcpy(configDir, argv[++i]);
|
||||||
} else if (strcmp(argv[i], "-s") == 0) {
|
} else if (strcmp(argv[i], "-s") == 0) {
|
||||||
strcpy(stableName, argv[++i]);
|
strcpy(stbName, argv[++i]);
|
||||||
} else if (strcmp(argv[i], "-t") == 0) {
|
} else if (strcmp(argv[i], "-t") == 0) {
|
||||||
numOfThreads = atoi(argv[++i]);
|
numOfThreads = atoi(argv[++i]);
|
||||||
} else if (strcmp(argv[i], "-n") == 0) {
|
} else if (strcmp(argv[i], "-n") == 0) {
|
||||||
numOfTables = atoi(argv[++i]);
|
numOfTables = atoi(argv[++i]);
|
||||||
} else if (strcmp(argv[i], "-r") == 0) {
|
} else if (strcmp(argv[i], "-n") == 0) {
|
||||||
replica = atoi(argv[++i]);
|
numOfVgroups = atoi(argv[++i]);
|
||||||
} else if (strcmp(argv[i], "-columns") == 0) {
|
} else if (strcmp(argv[i], "-a") == 0) {
|
||||||
numOfColumns = atoi(argv[++i]);
|
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]);
|
||||||
} else {
|
} else {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pPrint("%s dbName:%s %s", GREEN, dbName, NC);
|
pPrint("%s dbName:%s %s", GREEN, dbName, NC);
|
||||||
pPrint("%s stableName:%s %s", GREEN, stableName, NC);
|
pPrint("%s stbName:%s %s", GREEN, stbName, NC);
|
||||||
pPrint("%s configDir:%s %s", GREEN, configDir, NC);
|
pPrint("%s configDir:%s %s", GREEN, configDir, NC);
|
||||||
pPrint("%s numOfTables:%d %s", GREEN, numOfTables, NC);
|
pPrint("%s numOfTables:%d %s", GREEN, numOfTables, NC);
|
||||||
pPrint("%s numOfThreads:%d %s", GREEN, numOfThreads, NC);
|
pPrint("%s numOfThreads:%d %s", GREEN, numOfThreads, NC);
|
||||||
pPrint("%s numOfColumns:%d %s", GREEN, numOfColumns, NC);
|
pPrint("%s numOfVgroups:%d %s", GREEN, numOfVgroups, NC);
|
||||||
pPrint("%s replica:%d %s", GREEN, replica, 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);
|
||||||
|
|
||||||
pPrint("%s start create table performace test %s", GREEN, NC);
|
pPrint("%s start create table performace test %s", GREEN, NC);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue