Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
e8d5876e
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看板
提交
e8d5876e
编写于
8月 05, 2020
作者:
L
Liu Tao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improve taosdemo performance
上级
265ab825
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
70 addition
and
6 deletion
+70
-6
src/kit/taosdemo/taosdemo.c
src/kit/taosdemo/taosdemo.c
+70
-6
未找到文件。
src/kit/taosdemo/taosdemo.c
浏览文件 @
e8d5876e
...
...
@@ -46,6 +46,7 @@ extern char configDir[];
#define MAX_NUM_DATATYPE 8
#define OPT_ABORT 1
/* –abort */
#define STRING_LEN 512
#define MAX_PREPARED_RAND 1000000
/* The options we understand. */
static
struct
argp_option
options
[]
=
{
...
...
@@ -311,6 +312,8 @@ int generateData(char *res, char **data_type, int num_of_cols, int64_t timestamp
void
rand_string
(
char
*
str
,
int
size
);
void
init_rand_data
();
double
getCurrentTime
();
void
callBack
(
void
*
param
,
TAOS_RES
*
res
,
int
code
);
...
...
@@ -403,6 +406,7 @@ int main(int argc, char *argv[]) {
taos_close
(
qtaos
);
return
0
;
}
init_rand_data
();
memset
(
dataString
,
0
,
STRING_LEN
);
int
len
=
0
;
...
...
@@ -1169,6 +1173,66 @@ double getCurrentTime() {
return
tv
.
tv_sec
+
tv
.
tv_usec
/
1E6
;
}
int32_t
randint
[
MAX_PREPARED_RAND
];
int64_t
randbigint
[
MAX_PREPARED_RAND
];
float
randfloat
[
MAX_PREPARED_RAND
];
double
randdouble
[
MAX_PREPARED_RAND
];
int32_t
rand_tinyint
(){
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randint
[
cursor
]
%
128
;
}
int32_t
rand_smallint
(){
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randint
[
cursor
]
%
32767
;
}
int32_t
rand_int
(){
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randint
[
cursor
];
}
int64_t
rand_bigint
(){
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randbigint
[
cursor
];
}
float
rand_float
(){
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randfloat
[
cursor
];
}
double
rand_double
()
{
static
int
cursor
;
cursor
++
;
cursor
=
cursor
%
MAX_PREPARED_RAND
;
return
randdouble
[
cursor
];
}
void
init_rand_data
(){
for
(
int
i
=
0
;
i
<
MAX_PREPARED_RAND
;
i
++
){
randint
[
i
]
=
(
int
)(
rand
()
%
10
);
randbigint
[
i
]
=
(
int64_t
)(
rand
()
%
2147483648
);
randfloat
[
i
]
=
(
float
)(
rand
()
/
1000
.
0
);
randdouble
[
i
]
=
(
double
)(
rand
()
/
1000000
.
0
);
}
}
int32_t
generateData
(
char
*
res
,
char
**
data_type
,
int
num_of_cols
,
int64_t
timestamp
,
int
len_of_binary
)
{
memset
(
res
,
0
,
MAX_DATA_SIZE
);
char
*
pstr
=
res
;
...
...
@@ -1188,17 +1252,17 @@ int32_t generateData(char *res, char **data_type, int num_of_cols, int64_t times
for
(
int
i
=
0
;
i
<
num_of_cols
;
i
++
)
{
if
(
strcasecmp
(
data_type
[
i
%
c
],
"tinyint"
)
==
0
)
{
pstr
+=
sprintf
(
pstr
,
", %d"
,
(
int
)(
rand
()
%
128
)
);
pstr
+=
sprintf
(
pstr
,
", %d"
,
rand_tinyint
()
);
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"smallint"
)
==
0
)
{
pstr
+=
sprintf
(
pstr
,
", %d"
,
(
int
)(
rand
()
%
32767
));
pstr
+=
sprintf
(
pstr
,
", %d"
,
rand_smallint
(
));
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"int"
)
==
0
)
{
pstr
+=
sprintf
(
pstr
,
", %d"
,
(
int
)(
rand
()
%
10
));
pstr
+=
sprintf
(
pstr
,
", %d"
,
rand_int
(
));
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"bigint"
)
==
0
)
{
pstr
+=
sprintf
(
pstr
,
", %"
PRId64
,
rand
()
%
2147483648
);
pstr
+=
sprintf
(
pstr
,
", %"
PRId64
,
rand
_bigint
()
);
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"float"
)
==
0
)
{
pstr
+=
sprintf
(
pstr
,
", %10.4f"
,
(
float
)(
rand
()
/
1000
.
0
));
pstr
+=
sprintf
(
pstr
,
", %10.4f"
,
rand_float
(
));
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"double"
)
==
0
)
{
double
t
=
(
double
)(
rand
()
/
1000000
.
0
);
double
t
=
rand_double
(
);
pstr
+=
sprintf
(
pstr
,
", %20.8f"
,
t
);
}
else
if
(
strcasecmp
(
data_type
[
i
%
c
],
"bool"
)
==
0
)
{
bool
b
=
rand
()
&
1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录