Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
21972ecc
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看板
提交
21972ecc
编写于
8月 25, 2020
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' into feature/2.0tsdb
上级
d02d2e39
d8b4195a
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
70 addition
and
41 deletion
+70
-41
documentation20/webdocs/markdowndocs/faq-ch.md
documentation20/webdocs/markdowndocs/faq-ch.md
+9
-1
src/kit/taosdemo/taosdemo.c
src/kit/taosdemo/taosdemo.c
+42
-24
src/os/inc/osDir.h
src/os/inc/osDir.h
+1
-1
src/os/src/detail/osDir.c
src/os/src/detail/osDir.c
+9
-8
src/util/src/version.c
src/util/src/version.c
+5
-5
src/vnode/src/vnodeMain.c
src/vnode/src/vnodeMain.c
+4
-2
未找到文件。
documentation20/webdocs/markdowndocs/faq-ch.md
浏览文件 @
21972ecc
...
...
@@ -68,5 +68,13 @@ Connection = DriverManager.getConnection(url, properties);
## 12.TDengine GO windows驱动的如何编译?
请看为此问题撰写的
<a
href=
'blog/2020/01/06/tdengine-go-windows驱动的编译/'
>
技术博客
## 13.JDBC报错: the excuted SQL is not a DML or a DDL?
请更新至最新的JDBC驱动
```
JAVA
<dependency>
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>2.0.4</version>
</dependency>
```
src/kit/taosdemo/taosdemo.c
浏览文件 @
21972ecc
...
...
@@ -57,29 +57,30 @@ extern char configDir[];
/* Used by main to communicate with parse_opt. */
typedef
struct
DemoArguments
{
char
*
host
;
uint16_t
port
;
char
*
user
;
char
*
password
;
char
*
database
;
char
*
tb_prefix
;
char
*
sqlFile
;
bool
use_metric
;
bool
insert_only
;
char
*
output_file
;
int
mode
;
char
*
datatype
[
MAX_NUM_DATATYPE
+
1
];
int
len_of_binary
;
int
num_of_CPR
;
int
num_of_threads
;
int
num_of_RPR
;
int
num_of_tables
;
int
num_of_DPT
;
int
abort
;
int
order
;
int
rate
;
int
method_of_delete
;
char
**
arg_list
;
char
*
host
;
uint16_t
port
;
char
*
user
;
char
*
password
;
char
*
database
;
int
replica
;
char
*
tb_prefix
;
char
*
sqlFile
;
bool
use_metric
;
bool
insert_only
;
char
*
output_file
;
int
mode
;
char
*
datatype
[
MAX_NUM_DATATYPE
+
1
];
int
len_of_binary
;
int
num_of_CPR
;
int
num_of_threads
;
int
num_of_RPR
;
int
num_of_tables
;
int
num_of_DPT
;
int
abort
;
int
order
;
int
rate
;
int
method_of_delete
;
char
**
arg_list
;
}
SDemoArguments
;
#ifdef LINUX
...
...
@@ -90,6 +91,7 @@ typedef struct DemoArguments {
{
0
,
'u'
,
"user"
,
0
,
"The TDengine user name to use when connecting to the server. Default is 'root'."
,
2
},
{
0
,
'P'
,
"password"
,
0
,
"The password to use when connecting to the server. Default is 'taosdata'."
,
3
},
{
0
,
'd'
,
"database"
,
0
,
"Destination database. Default is 'test'."
,
3
},
{
0
,
'a'
,
"replica"
,
0
,
"Set the replica parameters of the database, Default 1, min: 1, max: 3."
,
3
},
{
0
,
'm'
,
"table_prefix"
,
0
,
"Table prefix name. Default is 't'."
,
3
},
{
0
,
's'
,
"sql file"
,
0
,
"The select sql file."
,
3
},
{
0
,
'M'
,
0
,
0
,
"Use metric flag."
,
13
},
...
...
@@ -225,6 +227,13 @@ typedef struct DemoArguments {
arguments
->
rate
=
10
;
}
break
;
case
'a'
:
arguments
->
replica
=
atoi
(
arg
);
if
(
arguments
->
replica
>
3
||
arguments
->
replica
<
1
)
{
arguments
->
replica
=
1
;
}
break
;
case
'D'
:
arguments
->
method_of_delete
=
atoi
(
arg
);
if
(
arguments
->
method_of_delete
<
0
||
arguments
->
method_of_delete
>
3
)
...
...
@@ -273,6 +282,8 @@ typedef struct DemoArguments {
printf
(
"%s%s%s
\n
"
,
indent
,
indent
,
"password, The password to use when connecting to the server. Default is 'taosdata'."
);
printf
(
"%s%s
\n
"
,
indent
,
"-d"
);
printf
(
"%s%s%s
\n
"
,
indent
,
indent
,
"database, Destination database. Default is 'test'."
);
printf
(
"%s%s
\n
"
,
indent
,
"-a"
);
printf
(
"%s%s%s
\n
"
,
indent
,
indent
,
"replica, Set the replica parameters of the database, Default 1, min: 1, max: 3."
);
printf
(
"%s%s
\n
"
,
indent
,
"-m"
);
printf
(
"%s%s%s
\n
"
,
indent
,
indent
,
"table_prefix, Table prefix name. Default is 't'."
);
printf
(
"%s%s
\n
"
,
indent
,
"-s"
);
...
...
@@ -396,6 +407,11 @@ typedef struct DemoArguments {
if
(
arguments
->
order
==
1
&&
(
arguments
->
rate
>
50
||
arguments
->
rate
<=
0
))
{
arguments
->
rate
=
10
;
}
}
else
if
(
strcmp
(
argv
[
i
],
"-a"
)
==
0
)
{
arguments
->
replica
=
atoi
(
argv
[
++
i
]);
if
(
arguments
->
rate
>
3
||
arguments
->
rate
<
1
)
{
arguments
->
rate
=
1
;
}
}
else
if
(
strcmp
(
argv
[
i
],
"-D"
)
==
0
)
{
arguments
->
method_of_delete
=
atoi
(
argv
[
++
i
]);
if
(
arguments
->
method_of_delete
<
0
||
arguments
->
method_of_delete
>
3
)
{
...
...
@@ -499,6 +515,7 @@ int main(int argc, char *argv[]) {
"root"
,
// user
"taosdata"
,
// password
"test"
,
// database
1
,
// replica
"t"
,
// tb_prefix
NULL
,
false
,
// use_metric
...
...
@@ -564,6 +581,7 @@ int main(int argc, char *argv[]) {
int
count_data_type
=
0
;
char
dataString
[
STRING_LEN
];
bool
do_aggreFunc
=
true
;
int
replica
=
arguments
.
replica
;
if
(
NULL
!=
arguments
.
sqlFile
)
{
TAOS
*
qtaos
=
taos_connect
(
ip_addr
,
user
,
pass
,
db_name
,
port
);
...
...
@@ -661,7 +679,7 @@ int main(int argc, char *argv[]) {
TAOS_RES
*
res
=
taos_query
(
taos
,
command
);
taos_free_result
(
res
);
sprintf
(
command
,
"create database %s
;"
,
db_name
);
sprintf
(
command
,
"create database %s
replica %d;"
,
db_name
,
replica
);
res
=
taos_query
(
taos
,
command
);
taos_free_result
(
res
);
...
...
src/os/inc/osDir.h
浏览文件 @
21972ecc
...
...
@@ -23,7 +23,7 @@ extern "C" {
// TAOS_OS_FUNC_DIR
void
taosRemoveDir
(
char
*
rootDir
);
int
taosMkDir
(
const
char
*
pathname
,
mode_t
mode
);
void
taos
MvDir
(
char
*
destDir
,
char
*
srcDir
);
void
taos
Rename
(
char
*
oldName
,
char
*
newName
);
#ifdef __cplusplus
}
...
...
src/os/src/detail/osDir.c
浏览文件 @
21972ecc
...
...
@@ -50,18 +50,19 @@ int taosMkDir(const char *path, mode_t mode) {
return
code
;
}
void
taos
MvDir
(
char
*
destDir
,
char
*
srcDir
)
{
void
taos
Rename
(
char
*
oldName
,
char
*
newName
)
{
if
(
0
==
tsEnableVnodeBak
)
{
uInfo
(
"vnode backup not enabled"
);
return
;
}
char
shellCmd
[
1024
+
1
]
=
{
0
};
//(void)snprintf(shellCmd, 1024, "cp -rf %s %s", srcDir, destDir);
(
void
)
snprintf
(
shellCmd
,
1024
,
"mv %s %s"
,
srcDir
,
destDir
);
taosSystem
(
shellCmd
);
uInfo
(
"shell cmd:%s is executed"
,
shellCmd
);
// if newName in not empty, rename return fail.
// the newName must be empty or does not exist
if
(
rename
(
oldName
,
newName
))
{
uError
(
"%s is modify to %s fail, reason:%s"
,
oldName
,
newName
,
strerror
(
errno
));
}
else
{
uInfo
(
"%s is modify to %s success!"
,
oldName
,
newName
);
}
}
#endif
\ No newline at end of file
#endif
src/util/src/version.c
浏览文件 @
21972ecc
char
version
[
12
]
=
"2.0.
1.1
"
;
char
version
[
12
]
=
"2.0.
2.0
"
;
char
compatible_version
[
12
]
=
"2.0.0.0"
;
char
gitinfo
[
48
]
=
"
ae1966332948147bacce3d32f9ad539ab8721db
2"
;
char
gitinfoOfInternal
[
48
]
=
"
bf53767db56cedb1c484df83a1f10536f12647ad
"
;
char
buildinfo
[
64
]
=
"Built by root at 2020-08-2
0 15:46
"
;
char
gitinfo
[
48
]
=
"
d711657139620f6c50f362597020705b8ad26bd
2"
;
char
gitinfoOfInternal
[
48
]
=
"
1d74ae24c541ffbb280e8630883c0236cd45f8c7
"
;
char
buildinfo
[
64
]
=
"Built by root at 2020-08-2
4 16:31
"
;
void
libtaos_2_0_
1_1_Linux_x64
()
{};
void
libtaos_2_0_
2_0_Linux_x64_beta
()
{};
src/vnode/src/vnodeMain.c
浏览文件 @
21972ecc
...
...
@@ -358,9 +358,11 @@ void vnodeRelease(void *pVnodeRaw) {
taosTFree
(
pVnode
->
rootDir
);
if
(
pVnode
->
dropped
)
{
char
rootDir
[
TSDB_FILENAME_LEN
]
=
{
0
};
char
rootDir
[
TSDB_FILENAME_LEN
]
=
{
0
};
char
newDir
[
TSDB_FILENAME_LEN
]
=
{
0
};
sprintf
(
rootDir
,
"%s/vnode%d"
,
tsVnodeDir
,
vgId
);
taosMvDir
(
tsVnodeBakDir
,
rootDir
);
sprintf
(
newDir
,
"%s/vnode%d"
,
tsVnodeBakDir
,
vgId
);
taosRename
(
rootDir
,
newDir
);
taosRemoveDir
(
rootDir
);
dnodeSendStatusMsgToMnode
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录