Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
16262512
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看板
提交
16262512
编写于
3月 09, 2023
作者:
H
Hongze Cheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: alter stt_trigger and minrows
上级
b1d21472
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
28 addition
and
1 deletion
+28
-1
include/common/tmsg.h
include/common/tmsg.h
+3
-0
source/common/src/tmsg.c
source/common/src/tmsg.c
+14
-0
source/dnode/mnode/impl/inc/mndDef.h
source/dnode/mnode/impl/inc/mndDef.h
+1
-1
source/dnode/mnode/impl/src/mndVgroup.c
source/dnode/mnode/impl/src/mndVgroup.c
+2
-0
source/dnode/vnode/src/vnd/vnodeSvr.c
source/dnode/vnode/src/vnd/vnodeSvr.c
+8
-0
未找到文件。
include/common/tmsg.h
浏览文件 @
16262512
...
...
@@ -1316,6 +1316,9 @@ typedef struct {
int8_t
strict
;
int8_t
cacheLast
;
int64_t
reserved
[
8
];
// 1.0 modification
int16_t
sttTrigger
;
int32_t
minRows
;
}
SAlterVnodeConfigReq
;
int32_t
tSerializeSAlterVnodeConfigReq
(
void
*
buf
,
int32_t
bufLen
,
SAlterVnodeConfigReq
*
pReq
);
...
...
source/common/src/tmsg.c
浏览文件 @
16262512
...
...
@@ -4172,6 +4172,11 @@ int32_t tSerializeSAlterVnodeConfigReq(void *buf, int32_t bufLen, SAlterVnodeCon
for
(
int32_t
i
=
0
;
i
<
8
;
++
i
)
{
if
(
tEncodeI64
(
&
encoder
,
pReq
->
reserved
[
i
])
<
0
)
return
-
1
;
}
// 1.0 modification
if
(
tEncodeI16
(
&
encoder
,
pReq
->
sttTrigger
)
<
0
)
return
-
1
;
if
(
tEncodeI32
(
&
encoder
,
pReq
->
minRows
)
<
0
)
return
-
1
;
tEndEncode
(
&
encoder
);
int32_t
tlen
=
encoder
.
pos
;
...
...
@@ -4201,6 +4206,15 @@ int32_t tDeserializeSAlterVnodeConfigReq(void *buf, int32_t bufLen, SAlterVnodeC
if
(
tDecodeI64
(
&
decoder
,
&
pReq
->
reserved
[
i
])
<
0
)
return
-
1
;
}
// 1.0 modification
if
(
tDecodeIsEnd
(
&
decoder
))
{
pReq
->
sttTrigger
=
-
1
;
pReq
->
minRows
=
-
1
;
}
else
{
if
(
tDecodeI16
(
&
decoder
,
&
pReq
->
sttTrigger
)
<
0
)
return
-
1
;
if
(
tDecodeI32
(
&
decoder
,
&
pReq
->
minRows
)
<
0
)
return
-
1
;
}
tEndDecode
(
&
decoder
);
tDecoderClear
(
&
decoder
);
return
0
;
...
...
source/dnode/mnode/impl/inc/mndDef.h
浏览文件 @
16262512
...
...
@@ -543,7 +543,7 @@ void* tDecodeSMqConsumerObj(const void* buf, SMqConsumerObj* pConsumer
typedef
struct
{
int32_t
vgId
;
char
*
qmsg
;
//
SubPlanToString
char
*
qmsg
;
//
SubPlanToString
SEpSet
epSet
;
}
SMqVgEp
;
...
...
source/dnode/mnode/impl/src/mndVgroup.c
浏览文件 @
16262512
...
...
@@ -319,6 +319,8 @@ static void *mndBuildAlterVnodeConfigReq(SMnode *pMnode, SDbObj *pDb, SVgObj *pV
alterReq
.
walLevel
=
pDb
->
cfg
.
walLevel
;
alterReq
.
strict
=
pDb
->
cfg
.
strict
;
alterReq
.
cacheLast
=
pDb
->
cfg
.
cacheLast
;
alterReq
.
sttTrigger
=
pDb
->
cfg
.
sstTrigger
;
alterReq
.
minRows
=
pDb
->
cfg
.
minRows
;
mInfo
(
"vgId:%d, build alter vnode config req"
,
pVgroup
->
vgId
);
int32_t
contLen
=
tSerializeSAlterVnodeConfigReq
(
NULL
,
0
,
&
alterReq
);
...
...
source/dnode/vnode/src/vnd/vnodeSvr.c
浏览文件 @
16262512
...
...
@@ -1541,6 +1541,14 @@ static int32_t vnodeProcessAlterConfigReq(SVnode *pVnode, int64_t version, void
}
}
if
(
req
.
sttTrigger
!=
-
1
&&
req
.
sttTrigger
!=
pVnode
->
config
.
sttTrigger
)
{
pVnode
->
config
.
sttTrigger
=
req
.
sttTrigger
;
}
if
(
req
.
minRows
!=
-
1
&&
req
.
minRows
!=
pVnode
->
config
.
tsdbCfg
.
minRows
)
{
pVnode
->
config
.
tsdbCfg
.
minRows
=
req
.
minRows
;
}
if
(
walChanged
)
{
walAlter
(
pVnode
->
pWal
,
&
pVnode
->
config
.
walCfg
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录