Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
75d7493c
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看板
未验证
提交
75d7493c
编写于
7月 29, 2022
作者:
S
Shengliang Guan
提交者:
GitHub
7月 29, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #15546 from taosdata/fix/dnode
fix: alter dnode debugflag error
上级
f4114e4b
6ff24198
变更
12
展开全部
隐藏空白更改
内联
并排
Showing
12 changed file
with
70 addition
and
78 deletion
+70
-78
docs/zh/21-tdinternal/01-arch.md
docs/zh/21-tdinternal/01-arch.md
+54
-63
docs/zh/21-tdinternal/message.webp
docs/zh/21-tdinternal/message.webp
+0
-0
docs/zh/21-tdinternal/structure.webp
docs/zh/21-tdinternal/structure.webp
+0
-0
docs/zh/21-tdinternal/write_follower.webp
docs/zh/21-tdinternal/write_follower.webp
+0
-0
docs/zh/21-tdinternal/write_leader.webp
docs/zh/21-tdinternal/write_leader.webp
+0
-0
docs/zh/21-tdinternal/write_master.webp
docs/zh/21-tdinternal/write_master.webp
+0
-0
docs/zh/21-tdinternal/write_slave.webp
docs/zh/21-tdinternal/write_slave.webp
+0
-0
include/common/tglobal.h
include/common/tglobal.h
+0
-1
source/common/src/tglobal.c
source/common/src/tglobal.c
+6
-10
source/dnode/mnode/impl/src/mndDnode.c
source/dnode/mnode/impl/src/mndDnode.c
+3
-3
source/util/src/tlog.c
source/util/src/tlog.c
+1
-1
tests/script/tsim/alter/dnode.sim
tests/script/tsim/alter/dnode.sim
+6
-0
未找到文件。
docs/zh/21-tdinternal/01-arch.md
浏览文件 @
75d7493c
此差异已折叠。
点击以展开。
docs/zh/21-tdinternal/message.webp
浏览文件 @
75d7493c
无法预览此类型文件
docs/zh/21-tdinternal/structure.webp
浏览文件 @
75d7493c
无法预览此类型文件
docs/zh/21-tdinternal/write_follower.webp
0 → 100644
浏览文件 @
75d7493c
文件已添加
docs/zh/21-tdinternal/write_leader.webp
0 → 100644
浏览文件 @
75d7493c
文件已添加
docs/zh/21-tdinternal/write_master.webp
已删除
100644 → 0
浏览文件 @
f4114e4b
文件已删除
docs/zh/21-tdinternal/write_slave.webp
已删除
100644 → 0
浏览文件 @
f4114e4b
文件已删除
include/common/tglobal.h
浏览文件 @
75d7493c
...
...
@@ -89,7 +89,6 @@ extern uint16_t tsTelemPort;
// query buffer management
extern
int32_t
tsQueryBufferSize
;
// maximum allowed usage buffer size in MB for each data node during query processing
extern
int64_t
tsQueryBufferSizeBytes
;
// maximum allowed usage buffer size in byte for each data node
extern
bool
tsRetrieveBlockingModel
;
// retrieve threads will be blocked
// query client
extern
int32_t
tsQueryPolicy
;
...
...
source/common/src/tglobal.c
浏览文件 @
75d7493c
...
...
@@ -124,9 +124,6 @@ int32_t tsMinIntervalTime = 1;
int32_t
tsQueryBufferSize
=
-
1
;
int64_t
tsQueryBufferSizeBytes
=
-
1
;
// in retrieve blocking model, the retrieve threads will wait for the completion of the query processing.
bool
tsRetrieveBlockingModel
=
false
;
// tsdb config
// For backward compatibility
bool
tsdbForceKeepFile
=
false
;
...
...
@@ -296,6 +293,7 @@ static int32_t taosAddServerLogCfg(SConfig *pCfg) {
if
(
cfgAddInt32
(
pCfg
,
"smaDebugFlag"
,
smaDebugFlag
,
0
,
255
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"idxDebugFlag"
,
idxDebugFlag
,
0
,
255
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"tdbDebugFlag"
,
tdbDebugFlag
,
0
,
255
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"metaDebugFlag"
,
metaDebugFlag
,
0
,
255
,
0
)
!=
0
)
return
-
1
;
return
0
;
}
...
...
@@ -362,7 +360,6 @@ static int32_t taosAddServerCfg(SConfig *pCfg) {
if
(
cfgAddInt32
(
pCfg
,
"maxNumOfDistinctRes"
,
tsMaxNumOfDistinctResults
,
10
*
10000
,
10000
*
10000
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"countAlwaysReturnValue"
,
tsCountAlwaysReturnValue
,
0
,
1
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"queryBufferSize"
,
tsQueryBufferSize
,
-
1
,
500000000000
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"retrieveBlockingModel"
,
tsRetrieveBlockingModel
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddBool
(
pCfg
,
"printAuth"
,
tsPrintAuth
,
0
)
!=
0
)
return
-
1
;
if
(
cfgAddInt32
(
pCfg
,
"multiProcess"
,
tsMultiProcess
,
0
,
2
,
0
)
!=
0
)
return
-
1
;
...
...
@@ -476,6 +473,7 @@ static void taosSetServerLogCfg(SConfig *pCfg) {
smaDebugFlag
=
cfgGetItem
(
pCfg
,
"smaDebugFlag"
)
->
i32
;
idxDebugFlag
=
cfgGetItem
(
pCfg
,
"idxDebugFlag"
)
->
i32
;
tdbDebugFlag
=
cfgGetItem
(
pCfg
,
"tdbDebugFlag"
)
->
i32
;
metaDebugFlag
=
cfgGetItem
(
pCfg
,
"metaDebugFlag"
)
->
i32
;
}
static
int32_t
taosSetClientCfg
(
SConfig
*
pCfg
)
{
...
...
@@ -547,7 +545,6 @@ static int32_t taosSetServerCfg(SConfig *pCfg) {
tsMaxNumOfDistinctResults
=
cfgGetItem
(
pCfg
,
"maxNumOfDistinctRes"
)
->
i32
;
tsCountAlwaysReturnValue
=
cfgGetItem
(
pCfg
,
"countAlwaysReturnValue"
)
->
i32
;
tsQueryBufferSize
=
cfgGetItem
(
pCfg
,
"queryBufferSize"
)
->
i32
;
tsRetrieveBlockingModel
=
cfgGetItem
(
pCfg
,
"retrieveBlockingModel"
)
->
bval
;
tsPrintAuth
=
cfgGetItem
(
pCfg
,
"printAuth"
)
->
bval
;
tsMultiProcess
=
cfgGetItem
(
pCfg
,
"multiProcess"
)
->
bval
;
...
...
@@ -832,9 +829,7 @@ int32_t taosSetCfg(SConfig *pCfg, char *name) {
break
;
}
case
'r'
:
{
if
(
strcasecmp
(
"retrieveBlockingModel"
,
name
)
==
0
)
{
tsRetrieveBlockingModel
=
cfgGetItem
(
pCfg
,
"retrieveBlockingModel"
)
->
bval
;
}
else
if
(
strcasecmp
(
"rpcQueueMemoryAllowed"
,
name
)
==
0
)
{
if
(
strcasecmp
(
"rpcQueueMemoryAllowed"
,
name
)
==
0
)
{
tsRpcQueueMemoryAllowed
=
cfgGetItem
(
pCfg
,
"rpcQueueMemoryAllowed"
)
->
i64
;
}
else
if
(
strcasecmp
(
"rpcDebugFlag"
,
name
)
==
0
)
{
rpcDebugFlag
=
cfgGetItem
(
pCfg
,
"rpcDebugFlag"
)
->
i32
;
...
...
@@ -1100,12 +1095,12 @@ void taosCfgDynamicOptions(const char *option, const char *value) {
const
char
*
options
[]
=
{
"dDebugFlag"
,
"vDebugFlag"
,
"mDebugFlag"
,
"wDebugFlag"
,
"sDebugFlag"
,
"tsdbDebugFlag"
,
"tqDebugFlag"
,
"fsDebugFlag"
,
"udfDebugFlag"
,
"smaDebugFlag"
,
"idxDebugFlag"
,
"tdbDebugFlag"
,
"tmrDebugFlag"
,
"uDebugFlag"
,
"smaDebugFlag"
,
"rpcDebugFlag"
,
"qDebugFlag"
,
"tmrDebugFlag"
,
"uDebugFlag"
,
"smaDebugFlag"
,
"rpcDebugFlag"
,
"qDebugFlag"
,
"metaDebugFlag"
,
};
int32_t
*
optionVars
[]
=
{
&
dDebugFlag
,
&
vDebugFlag
,
&
mDebugFlag
,
&
wDebugFlag
,
&
sDebugFlag
,
&
tsdbDebugFlag
,
&
tqDebugFlag
,
&
fsDebugFlag
,
&
udfDebugFlag
,
&
smaDebugFlag
,
&
idxDebugFlag
,
&
tdbDebugFlag
,
&
tmrDebugFlag
,
&
uDebugFlag
,
&
smaDebugFlag
,
&
rpcDebugFlag
,
&
qDebugFlag
,
&
tmrDebugFlag
,
&
uDebugFlag
,
&
smaDebugFlag
,
&
rpcDebugFlag
,
&
qDebugFlag
,
&
metaDebugFlag
,
};
int32_t
optionSize
=
tListLen
(
options
);
...
...
@@ -1152,5 +1147,6 @@ void taosSetAllDebugFlag(int32_t flag) {
taosSetDebugFlag
(
&
smaDebugFlag
,
"smaDebugFlag"
,
flag
);
taosSetDebugFlag
(
&
idxDebugFlag
,
"idxDebugFlag"
,
flag
);
taosSetDebugFlag
(
&
tdbDebugFlag
,
"tdbDebugFlag"
,
flag
);
taosSetDebugFlag
(
&
metaDebugFlag
,
"metaDebugFlag"
,
flag
);
uInfo
(
"all debug flag are set to %d"
,
flag
);
}
source/dnode/mnode/impl/src/mndDnode.c
浏览文件 @
75d7493c
...
...
@@ -788,9 +788,9 @@ _OVER:
static
int32_t
mndProcessConfigDnodeReq
(
SRpcMsg
*
pReq
)
{
SMnode
*
pMnode
=
pReq
->
info
.
node
;
const
char
*
options
[]
=
{
"debugFlag"
,
"dDebugFlag"
,
"vDebugFlag"
,
"mDebugFlag"
,
"wDebugFlag"
,
"s
DebugFlag"
,
"t
sdbDebugFlag"
,
"tqDebugFlag"
,
"fsDebugFlag"
,
"udfDebugFlag"
,
"smaDebugFlag"
,
"idx
DebugFlag"
,
"
tdbDebugFlag"
,
"tmrDebugFlag"
,
"uDebugFlag"
,
"smaDebugFlag"
,
"rpcDebugFlag"
,
"q
DebugFlag"
,
"debugFlag"
,
"dDebugFlag"
,
"vDebugFlag"
,
"mDebugFlag"
,
"wDebugFlag"
,
"sDebugFlag"
,
"tsdb
DebugFlag"
,
"t
qDebugFlag"
,
"fsDebugFlag"
,
"udfDebugFlag"
,
"smaDebugFlag"
,
"idxDebugFlag"
,
"tdbDebugFlag"
,
"tmr
DebugFlag"
,
"
uDebugFlag"
,
"smaDebugFlag"
,
"rpcDebugFlag"
,
"qDebugFlag"
,
"meta
DebugFlag"
,
};
int32_t
optionSize
=
tListLen
(
options
);
...
...
source/util/src/tlog.c
浏览文件 @
75d7493c
...
...
@@ -82,7 +82,7 @@ int64_t tsNumOfTraceLogs = 0;
// log
int32_t
dDebugFlag
=
135
;
int32_t
vDebugFlag
=
135
;
int32_t
mDebugFlag
=
13
1
;
int32_t
mDebugFlag
=
13
5
;
int32_t
cDebugFlag
=
131
;
int32_t
jniDebugFlag
=
131
;
int32_t
tmrDebugFlag
=
131
;
...
...
tests/script/tsim/alter/dnode.sim
浏览文件 @
75d7493c
...
...
@@ -24,14 +24,20 @@ sql alter dnode 1 'fsDebugFlag 131'
sql alter dnode 1 'udfDebugFlag 131'
sql alter dnode 1 'smaDebugFlag 131'
sql alter dnode 1 'idxDebugFlag 131'
sql alter dnode 1 'tdbDebugFlag 131'
sql alter dnode 1 'tmrDebugFlag 131'
sql alter dnode 1 'uDebugFlag 131'
sql alter dnode 1 'smaDebugFlag 131'
sql alter dnode 1 'rpcDebugFlag 131'
sql alter dnode 1 'qDebugFlag 131'
sql alter dnode 1 'metaDebugFlag 131'
sql_error alter dnode 2 'wDebugFlag 135'
sql_error alter dnode 2 'tmrDebugFlag 135'
sql_error alter dnode 1 'monDebugFlag 131'
sql_error alter dnode 1 'cqDebugFlag 131'
sql_error alter dnode 1 'httpDebugFlag 131'
sql_error alter dnode 1 'mqttDebugFlag 131'
print ======== step3
sql_error alter $hostname1 debugFlag 135
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录