Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
0765c20c
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0765c20c
编写于
4月 15, 2020
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add import test
上级
6b946431
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
122 addition
and
0 deletion
+122
-0
tests/test/c/CMakeLists.txt
tests/test/c/CMakeLists.txt
+3
-0
tests/test/c/importOneRow.c
tests/test/c/importOneRow.c
+119
-0
未找到文件。
tests/test/c/CMakeLists.txt
浏览文件 @
0765c20c
...
...
@@ -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
浏览文件 @
0765c20c
/*
* 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"
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
;
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
==
1
)
{
printf
(
"usage: %s rowNum threadNum replica configDir
\n
"
,
argv
[
0
]);
printf
(
"default rowNum %d
\n
"
,
rowNum
);
printf
(
"default threadNum %d
\n
"
,
threadNum
);
printf
(
"default replica %d
\n
"
,
replica
);
exit
(
0
);
}
// a simple way to parse input parameters
if
(
argc
>=
2
)
rowNum
=
atoi
(
argv
[
1
]);
if
(
argc
>=
3
)
threadNum
=
atoi
(
argv
[
2
]);
if
(
argc
>=
4
)
replica
=
atoi
(
argv
[
3
]);
if
(
argc
>=
5
)
strcpy
(
configDir
,
argv
[
4
]);
printf
(
"rowNum:%d threadNum:%d replica:%d
\n
"
,
threadNum
,
rowNum
,
replica
);
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录