Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
878f1460
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看板
未验证
提交
878f1460
编写于
8月 16, 2022
作者:
wafwerar
提交者:
GitHub
8月 16, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #16166 from taosdata/fix/ZhiqiangWang/TD-18419-fix-get-dir-size-error
feat: fix get dir size error
上级
14097c35
8bc3de65
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
4 deletion
+18
-4
docs/zh/05-get-started/03-package.md
docs/zh/05-get-started/03-package.md
+2
-2
include/common/tglobal.h
include/common/tglobal.h
+0
-1
source/common/src/tglobal.c
source/common/src/tglobal.c
+16
-1
未找到文件。
docs/zh/05-get-started/03-package.md
浏览文件 @
878f1460
...
...
@@ -7,7 +7,7 @@ import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";
import PkgListV3 from "/components/PkgListV3";
TDengine 完整的软件包包括服务端(taosd)、用于与第三方系统对接并提供 RESTful 接口的 taosAdapter、应用驱动(taosc)、命令行程序 (CLI,taos) 和一些工具软件
,目前服务端 taosd 和 taosAdapter 仅在 Linux 系统上安装和运行,后续将支持 Windows、macOS 等系统。应用驱动 taosc 与 TDengine CLI 可以在 Windows 或 Linux 上安装和运行
。TDengine 除了提供多种语言的连接器之外,还通过
[
taosAdapter
](
../../reference/taosadapter/
)
提供
[
RESTful 接口
](
../../reference/rest-api/
)
。
TDengine 完整的软件包包括服务端(taosd)、用于与第三方系统对接并提供 RESTful 接口的 taosAdapter、应用驱动(taosc)、命令行程序 (CLI,taos) 和一些工具软件
。目前 taosAdapter 仅在 Linux 系统上安装和运行,后续将支持 Windows、macOS 等系统
。TDengine 除了提供多种语言的连接器之外,还通过
[
taosAdapter
](
../../reference/taosadapter/
)
提供
[
RESTful 接口
](
../../reference/rest-api/
)
。
为方便使用,标准的服务端安装包包含了 taos、taosd、taosAdapter、taosdump、taosBenchmark、TDinsight 安装脚本和示例代码;如果您只需要用到服务端程序和客户端连接的 C/C++ 语言支持,也可以仅下载 lite 版本的安装包。
...
...
@@ -205,7 +205,7 @@ Query OK, 2 row(s) in set (0.003128s)
## 使用 taosBenchmark 体验写入速度
启动 TDengine 的服务,在 Linux 终端执行
`taosBenchmark`
(曾命名为
`taosdemo`
):
启动 TDengine 的服务,在 Linux
或 windows
终端执行
`taosBenchmark`
(曾命名为
`taosdemo`
):
```
bash
taosBenchmark
...
...
include/common/tglobal.h
浏览文件 @
878f1460
...
...
@@ -139,7 +139,6 @@ int32_t taosInitCfg(const char *cfgDir, const char **envCmd, const char *envFile
bool
tsc
);
void
taosCleanupCfg
();
void
taosCfgDynamicOptions
(
const
char
*
option
,
const
char
*
value
);
void
taosAddDataDir
(
int32_t
index
,
char
*
v1
,
int32_t
level
,
int32_t
primary
);
struct
SConfig
*
taosGetCfg
();
...
...
source/common/src/tglobal.c
浏览文件 @
878f1460
...
...
@@ -166,7 +166,22 @@ int32_t tsTtlPushInterval = 86400;
int32_t
tsGrantHBInterval
=
60
;
#ifndef _STORAGE
int32_t
taosSetTfsCfg
(
SConfig
*
pCfg
)
{
return
0
;
}
int32_t
taosSetTfsCfg
(
SConfig
*
pCfg
)
{
SConfigItem
*
pItem
=
cfgGetItem
(
pCfg
,
"dataDir"
);
memset
(
tsDataDir
,
0
,
PATH_MAX
);
int32_t
size
=
taosArrayGetSize
(
pItem
->
array
);
tsDiskCfgNum
=
1
;
tstrncpy
(
tsDiskCfg
[
0
].
dir
,
pItem
->
str
,
TSDB_FILENAME_LEN
);
tsDiskCfg
[
0
].
level
=
0
;
tsDiskCfg
[
0
].
primary
=
1
;
tstrncpy
(
tsDataDir
,
pItem
->
str
,
PATH_MAX
);
if
(
taosMulMkDir
(
tsDataDir
)
!=
0
)
{
uError
(
"failed to create dataDir:%s"
,
tsDataDir
);
return
-
1
;
}
return
0
;
}
#else
int32_t
taosSetTfsCfg
(
SConfig
*
pCfg
);
#endif
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录