Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
99bc6a5f
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看板
提交
99bc6a5f
编写于
6月 28, 2020
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-776] http cleanup
上级
4f38e00d
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
16 addition
and
4 deletion
+16
-4
documentation/tdenginedocs-cn/administrator/index.html
documentation/tdenginedocs-cn/administrator/index.html
+1
-1
src/common/src/tglobal.c
src/common/src/tglobal.c
+10
-1
src/plugins/http/src/httpServer.c
src/plugins/http/src/httpServer.c
+3
-0
tests/script/sh/deploy.sh
tests/script/sh/deploy.sh
+1
-1
tests/script/test.sh
tests/script/test.sh
+1
-1
未找到文件。
documentation/tdenginedocs-cn/administrator/index.html
浏览文件 @
99bc6a5f
...
...
@@ -55,7 +55,7 @@
<li>
enableMonitor: 系统监测标志位,0:关闭,1:打开
</li>
<li>
logDir: 日志文件目录,缺省是/var/log/taos
</li>
<li>
numOfLogLines:日志文件的最大行数
</li>
<li>
debugFlag: 系统debug日志开关,131:仅错误和报警信息,135:调试信息,1
51
:非常详细的调试信息
</li>
<li>
debugFlag: 系统debug日志开关,131:仅错误和报警信息,135:调试信息,1
43
:非常详细的调试信息
</li>
</ul>
<p>
不同应用场景的数据往往具有不同的数据特征,比如保留天数、副本数、采集频次、记录大小、采集点的数量、压缩等都可完全不同。为获得在存储上的最高效率,TDengine提供如下存储相关的系统配置参数:
</p>
<ul>
...
...
src/common/src/tglobal.c
浏览文件 @
99bc6a5f
...
...
@@ -1080,7 +1080,6 @@ static void doInitGlobalConfig() {
cfg
.
unitType
=
TAOS_CFG_UTYPE_NONE
;
taosInitConfigOption
(
cfg
);
cfg
.
option
=
"monitorDebugFlag"
;
cfg
.
ptr
=
&
monitorDebugFlag
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
...
...
@@ -1101,6 +1100,16 @@ static void doInitGlobalConfig() {
cfg
.
unitType
=
TAOS_CFG_UTYPE_NONE
;
taosInitConfigOption
(
cfg
);
cfg
.
option
=
"vDebugFlag"
;
cfg
.
ptr
=
&
vDebugFlag
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
cfg
.
cfgType
=
TSDB_CFG_CTYPE_B_CONFIG
|
TSDB_CFG_CTYPE_B_LOG
;
cfg
.
minValue
=
0
;
cfg
.
maxValue
=
255
;
cfg
.
ptrLength
=
0
;
cfg
.
unitType
=
TAOS_CFG_UTYPE_NONE
;
taosInitConfigOption
(
cfg
);
cfg
.
option
=
"tsdbDebugFlag"
;
cfg
.
ptr
=
&
tsdbDebugFlag
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
...
...
src/plugins/http/src/httpServer.c
浏览文件 @
99bc6a5f
...
...
@@ -365,6 +365,7 @@ bool httpInitConnect() {
pThread
->
pollFd
=
epoll_create
(
HTTP_MAX_EVENTS
);
// size does not matter
if
(
pThread
->
pollFd
<
0
)
{
httpError
(
"http thread:%s, failed to create HTTP epoll"
,
pThread
->
label
);
pthread_mutex_destroy
(
&
(
pThread
->
threadMutex
));
return
false
;
}
...
...
@@ -374,6 +375,7 @@ bool httpInitConnect() {
if
(
pthread_create
(
&
(
pThread
->
thread
),
&
thattr
,
(
void
*
)
httpProcessHttpData
,
(
void
*
)(
pThread
))
!=
0
)
{
httpError
(
"http thread:%s, failed to create HTTP process data thread, reason:%s"
,
pThread
->
label
,
strerror
(
errno
));
pthread_mutex_destroy
(
&
(
pThread
->
threadMutex
));
return
false
;
}
pthread_attr_destroy
(
&
thattr
);
...
...
@@ -387,6 +389,7 @@ bool httpInitConnect() {
pthread_attr_setdetachstate
(
&
thattr
,
PTHREAD_CREATE_JOINABLE
);
if
(
pthread_create
(
&
(
pServer
->
thread
),
&
thattr
,
(
void
*
)
httpAcceptHttpConnection
,
(
void
*
)(
pServer
))
!=
0
)
{
httpError
(
"http server:%s, failed to create Http accept thread, reason:%s"
,
pServer
->
label
,
strerror
(
errno
));
httpCleanUpConnect
();
return
false
;
}
pthread_attr_destroy
(
&
thattr
);
...
...
tests/script/sh/deploy.sh
浏览文件 @
99bc6a5f
...
...
@@ -113,7 +113,7 @@ echo "logDir $LOG_DIR" >> $TAOS_CFG
echo
"mDebugFlag 135"
>>
$TAOS_CFG
echo
"sdbDebugFlag 135"
>>
$TAOS_CFG
echo
"dDebugFlag 135"
>>
$TAOS_CFG
echo
"vDebugFlag 1
51
"
>>
$TAOS_CFG
echo
"vDebugFlag 1
43
"
>>
$TAOS_CFG
echo
"cDebugFlag 135"
>>
$TAOS_CFG
echo
"jnidebugFlag 135"
>>
$TAOS_CFG
echo
"odbcdebugFlag 135"
>>
$TAOS_CFG
...
...
tests/script/test.sh
浏览文件 @
99bc6a5f
...
...
@@ -112,7 +112,7 @@ echo "numOfLogLines 100000000" >> $TAOS_CFG
echo
"dDebugFlag 135"
>>
$TAOS_CFG
echo
"mDebugFlag 135"
>>
$TAOS_CFG
echo
"sdbDebugFlag 135"
>>
$TAOS_CFG
echo
"rpcDebugFlag 1
51
"
>>
$TAOS_CFG
echo
"rpcDebugFlag 1
43
"
>>
$TAOS_CFG
echo
"tmrDebugFlag 131"
>>
$TAOS_CFG
echo
"cDebugFlag 135"
>>
$TAOS_CFG
echo
"httpDebugFlag 135"
>>
$TAOS_CFG
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录