Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
89b72161
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
89b72161
编写于
4月 15, 2020
作者:
S
slguan
提交者:
GitHub
4月 15, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1618 from taosdata/feature/mpeer
Feature/mpeer
上级
d8472ba3
13b44b30
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
146 addition
and
0 deletion
+146
-0
tests/test/c/CMakeLists.txt
tests/test/c/CMakeLists.txt
+3
-0
tests/test/c/importOneRow.c
tests/test/c/importOneRow.c
+143
-0
未找到文件。
tests/test/c/CMakeLists.txt
浏览文件 @
89b72161
...
...
@@ -11,4 +11,7 @@ IF ((TD_LINUX_64) OR (TD_LINUX_32 AND TD_ARM))
add_executable
(
insertPerRow insertPerRow.c
)
target_link_libraries
(
insertPerRow taos_static pthread
)
add_executable
(
importOneRow importOneRow.c
)
target_link_libraries
(
importOneRow taos_static pthread
)
ENDIF
()
tests/test/c/importOneRow.c
0 → 100644
浏览文件 @
89b72161
/*
* 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"
#include "taos.h"
#include "tlog.h"
#include "ttimer.h"
#include "tutil.h"
#define MAX_RANDOM_POINTS 20000
#define GREEN "\033[1;32m"
#define NC "\033[0m"
void
taos_error
(
TAOS
*
taos
);
void
*
taos_execute
(
void
*
param
);
typedef
struct
{
pthread_t
pid
;
int
index
;
}
ThreadObj
;
int
threadNum
=
1
;
int
rowNum
=
1000
;
int
replica
=
1
;
void
printHelp
()
{
char
indent
[
10
]
=
" "
;
printf
(
"Used to test the performance of TDengine
\n
After writing one row of data to all tables, write the next row
\n
"
);
printf
(
"%s%s
\n
"
,
indent
,
"-r"
);
printf
(
"%s%s%s%d
\n
"
,
indent
,
indent
,
"Number of records to write table, default is "
,
rowNum
);
printf
(
"%s%s
\n
"
,
indent
,
"-t"
);
printf
(
"%s%s%s%d
\n
"
,
indent
,
indent
,
"Number of threads to be used, default is "
,
threadNum
);
printf
(
"%s%s
\n
"
,
indent
,
"-replica"
);
printf
(
"%s%s%s%d
\n
"
,
indent
,
indent
,
"Database parameters replica, default is "
,
replica
);
exit
(
EXIT_SUCCESS
);
}
void
shellParseArgument
(
int
argc
,
char
*
argv
[])
{
for
(
int
i
=
1
;
i
<
argc
;
i
++
)
{
if
(
strcmp
(
argv
[
i
],
"-h"
)
==
0
||
strcmp
(
argv
[
i
],
"--help"
)
==
0
)
{
printHelp
();
exit
(
0
);
}
else
if
(
strcmp
(
argv
[
i
],
"-r"
)
==
0
)
{
rowNum
=
atoi
(
argv
[
++
i
]);
}
else
if
(
strcmp
(
argv
[
i
],
"-t"
)
==
0
)
{
threadNum
=
atoi
(
argv
[
++
i
]);
}
else
if
(
strcmp
(
argv
[
i
],
"-replica"
)
==
0
)
{
replica
=
atoi
(
argv
[
++
i
]);
}
else
{
}
}
dPrint
(
"%s rowNum:%d %s"
,
GREEN
,
rowNum
,
NC
);
dPrint
(
"%s threadNum:%d %s"
,
GREEN
,
threadNum
,
NC
);
dPrint
(
"%s replica:%d %s"
,
GREEN
,
replica
,
NC
);
}
int
main
(
int
argc
,
char
*
argv
[])
{
shellParseArgument
(
argc
,
argv
);
taos_init
();
ThreadObj
*
threads
=
calloc
(
threadNum
,
sizeof
(
ThreadObj
));
for
(
int
i
=
0
;
i
<
threadNum
;
++
i
)
{
ThreadObj
*
pthread
=
threads
+
i
;
pthread_attr_t
thattr
;
pthread
->
index
=
i
;
pthread_attr_init
(
&
thattr
);
pthread_attr_setdetachstate
(
&
thattr
,
PTHREAD_CREATE_JOINABLE
);
pthread_create
(
&
pthread
->
pid
,
&
thattr
,
taos_execute
,
pthread
);
}
for
(
int
i
=
0
;
i
<
threadNum
;
i
++
)
{
pthread_join
(
threads
[
i
].
pid
,
NULL
);
}
printf
(
"all finished
\n
"
);
return
0
;
}
void
taos_error
(
TAOS
*
con
)
{
fprintf
(
stderr
,
"TDengine error: %s
\n
"
,
taos_errstr
(
con
));
taos_close
(
con
);
exit
(
1
);
}
void
*
taos_execute
(
void
*
param
)
{
ThreadObj
*
pThread
=
(
ThreadObj
*
)
param
;
void
*
taos
=
taos_connect
(
tsMasterIp
,
tsDefaultUser
,
tsDefaultPass
,
NULL
,
0
);
if
(
taos
==
NULL
)
taos_error
(
taos
);
char
sql
[
1024
]
=
{
0
};
sprintf
(
sql
,
"create database if not exists db replica %d"
,
replica
);
taos_query
(
taos
,
sql
);
sprintf
(
sql
,
"create table if not exists db.t%d (ts timestamp, i int, j float, k double)"
,
pThread
->
index
);
taos_query
(
taos
,
sql
);
int64_t
timestamp
=
1530374400000L
;
sprintf
(
sql
,
"insert into db.t%d values(%ld, %d, %d, %d)"
,
pThread
->
index
,
timestamp
,
0
,
0
,
0
);
int
code
=
taos_query
(
taos
,
sql
);
if
(
code
!=
0
)
printf
(
"error code:%d, sql:%s
\n
"
,
code
,
sql
);
int
affectrows
=
taos_affected_rows
(
taos
);
if
(
affectrows
!=
1
)
printf
(
"affect rows:%d, sql:%s
\n
"
,
affectrows
,
sql
);
timestamp
-=
1000
;
int
total_affect_rows
=
affectrows
;
for
(
int
i
=
1
;
i
<
rowNum
;
++
i
)
{
sprintf
(
sql
,
"import into db.t%d values(%ld, %d, %d, %d)"
,
pThread
->
index
,
timestamp
,
i
,
i
,
i
);
code
=
taos_query
(
taos
,
sql
);
if
(
code
!=
0
)
printf
(
"error code:%d, sql:%s
\n
"
,
code
,
sql
);
int
affectrows
=
taos_affected_rows
(
taos
);
if
(
affectrows
!=
1
)
printf
(
"affect rows:%d, sql:%s
\n
"
,
affectrows
,
sql
);
total_affect_rows
+=
affectrows
;
timestamp
-=
1000
;
}
printf
(
"thread:%d run finished total_affect_rows:%d
\n
"
,
pThread
->
index
,
total_affect_rows
);
return
NULL
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录