Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
6fb7ff87
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6fb7ff87
编写于
12月 20, 2021
作者:
S
shenglian zhou
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify sqlsml to sqlperf
上级
700bd8f2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
27 addition
and
19 deletion
+27
-19
tests/examples/c/CMakeLists.txt
tests/examples/c/CMakeLists.txt
+2
-2
tests/examples/c/sqlperf.c
tests/examples/c/sqlperf.c
+25
-17
未找到文件。
tests/examples/c/CMakeLists.txt
浏览文件 @
6fb7ff87
...
...
@@ -7,8 +7,8 @@ IF (TD_LINUX)
TARGET_LINK_LIBRARIES
(
demo taos_static trpc tutil pthread
)
ADD_EXECUTABLE
(
sml schemaless.c
)
TARGET_LINK_LIBRARIES
(
sml taos_static trpc tutil pthread
)
ADD_EXECUTABLE
(
sql
sml sqlsml
.c
)
TARGET_LINK_LIBRARIES
(
sql
sml
taos_static trpc tutil pthread
)
ADD_EXECUTABLE
(
sql
perf sqlperf
.c
)
TARGET_LINK_LIBRARIES
(
sql
perf
taos_static trpc tutil pthread
)
ADD_EXECUTABLE
(
subscribe subscribe.c
)
TARGET_LINK_LIBRARIES
(
subscribe taos_static trpc tutil pthread
)
ADD_EXECUTABLE
(
epoll epoll.c
)
...
...
tests/examples/c/sql
sml
.c
→
tests/examples/c/sql
perf
.c
浏览文件 @
6fb7ff87
...
...
@@ -81,24 +81,32 @@ int main(int argc, char *argv[]) {
int
numSTables
=
20000
;
int
numThreads
=
32
;
// connect to server
if
(
argc
>
1
)
{
numSTables
=
atoi
(
argv
[
1
]);
}
if
(
argc
>
2
)
{
numThreads
=
atoi
(
argv
[
2
]);
}
if
(
argc
>
3
)
{
describeTableFirst
=
atoi
(
argv
[
3
])
?
true
:
false
;
}
if
(
argc
>
4
)
{
verbose
=
atoi
(
argv
[
4
])
?
true
:
false
;
int
opt
;
while
((
opt
=
getopt
(
argc
,
argv
,
"s:t:fvh"
))
!=
-
1
)
{
switch
(
opt
)
{
case
's'
:
numSTables
=
atoi
(
optarg
);
break
;
case
't'
:
numThreads
=
atoi
(
optarg
);
break
;
case
'f'
:
describeTableFirst
=
true
;
break
;
case
'v'
:
verbose
=
true
;
break
;
case
'h'
:
fprintf
(
stderr
,
"Usage: %s -s supertable -t thread -FirstDescribeSTable -Verbose
\n
"
,
argv
[
0
]);
exit
(
0
);
default:
fprintf
(
stderr
,
"Usage: %s -s supertable -t thread -FirstDescribeSTable -Verbose
\n
"
,
argv
[
0
]);
exit
(
-
1
);
}
}
// connect to server
TAOS
*
taos
=
taos_connect
(
NULL
,
"root"
,
"taosdata"
,
NULL
,
0
);
if
(
taos
==
NULL
)
{
printf
(
"failed to connect to server, reason:%s
\n
"
,
"null taos"
/*taos_errstr(taos)*/
);
...
...
@@ -124,10 +132,10 @@ int main(int argc, char *argv[]) {
pthread_join
(
tids
[
i
],
NULL
);
}
int64_t
end
=
taosGetTimestampUs
();
printf
(
"TIME: %
ld
\n
"
,
end
-
begin
);
printf
(
"TIME: %
d(ms)
\n
"
,
(
int
)((
end
-
begin
)
/
1000
)
);
printf
(
"THROUGHPUT: %d
\n
"
,
(
int
)((
numSTables
*
1e6
)
/
(
end
-
begin
)));
free
(
threadArgs
);
free
(
tids
);
taos_close
(
taos
);
taos_cleanup
();
}
\ No newline at end of file
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录