Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
bf6dc994
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看板
提交
bf6dc994
编写于
1月 04, 2023
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: adjust sync logs
上级
34260cd3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
13 addition
and
8 deletion
+13
-8
source/dnode/mnode/impl/src/mndMnode.c
source/dnode/mnode/impl/src/mndMnode.c
+2
-2
source/dnode/mnode/sdb/src/sdbFile.c
source/dnode/mnode/sdb/src/sdbFile.c
+1
-1
source/libs/sync/src/syncEnv.c
source/libs/sync/src/syncEnv.c
+1
-1
source/libs/sync/src/syncMain.c
source/libs/sync/src/syncMain.c
+9
-4
未找到文件。
source/dnode/mnode/impl/src/mndMnode.c
浏览文件 @
bf6dc994
...
...
@@ -785,9 +785,9 @@ static void mndReloadSyncConfig(SMnode *pMnode) {
int32_t
code
=
syncReconfig
(
pMnode
->
syncMgmt
.
sync
,
&
cfg
);
if
(
code
!=
0
)
{
mError
(
"vgId:1,
failed to reconfig mnode sync
since %s"
,
terrstr
());
mError
(
"vgId:1,
mnode sync reconfig failed
since %s"
,
terrstr
());
}
else
{
mInfo
(
"vgId:1,
reconfig mnode sync
success"
);
mInfo
(
"vgId:1,
mnode sync reconfig
success"
);
}
}
}
source/dnode/mnode/sdb/src/sdbFile.c
浏览文件 @
bf6dc994
...
...
@@ -243,7 +243,7 @@ static int32_t sdbReadFileImp(SSdb *pSdb) {
if
(
pFile
==
NULL
)
{
taosMemoryFree
(
pRaw
);
terrno
=
TAOS_SYSTEM_ERROR
(
errno
);
m
Debug
(
"failed to read sdb file:%s
since %s"
,
file
,
terrstr
());
m
Info
(
"read sdb file:%s finished
since %s"
,
file
,
terrstr
());
return
0
;
}
...
...
source/libs/sync/src/syncEnv.c
浏览文件 @
bf6dc994
...
...
@@ -114,7 +114,7 @@ void syncHbTimerDataRemove(int64_t rid) { taosRemoveRef(gHbDataRefId, rid); }
SSyncHbTimerData
*
syncHbTimerDataAcquire
(
int64_t
rid
)
{
SSyncHbTimerData
*
pData
=
taosAcquireRef
(
gHbDataRefId
,
rid
);
if
(
pData
==
NULL
)
{
if
(
pData
==
NULL
&&
rid
>
0
)
{
sInfo
(
"failed to acquire hb-timer-data from refId:%"
PRId64
,
rid
);
terrno
=
TSDB_CODE_SYN_INTERNAL_ERROR
;
}
...
...
source/libs/sync/src/syncMain.c
浏览文件 @
bf6dc994
...
...
@@ -1456,16 +1456,21 @@ int32_t syncNodeSendMsgById(const SRaftId* destRaftId, SSyncNode* pNode, SRpcMsg
}
}
int32_t
code
=
-
1
;
if
(
pNode
->
syncSendMSg
!=
NULL
&&
epSet
!=
NULL
)
{
syncUtilMsgHtoN
(
pMsg
->
pCont
);
pMsg
->
info
.
noResp
=
1
;
return
pNode
->
syncSendMSg
(
epSet
,
pMsg
);
}
else
{
sError
(
"vgId:%d, sync send msg by id error, fp:%p epset:%p"
,
pNode
->
vgId
,
pNode
->
syncSendMSg
,
epSet
);
code
=
pNode
->
syncSendMSg
(
epSet
,
pMsg
);
}
if
(
code
<
0
)
{
sError
(
"vgId:%d, sync send msg by id error, epset:%p dnode:%d addr:%"
PRId64
" err:0x%x"
,
pNode
->
vgId
,
epSet
,
DID
(
destRaftId
),
destRaftId
->
addr
,
terrno
);
rpcFreeCont
(
pMsg
->
pCont
);
terrno
=
TSDB_CODE_SYN_INTERNAL_ERROR
;
return
-
1
;
}
return
code
;
}
inline
bool
syncNodeInConfig
(
SSyncNode
*
pNode
,
const
SSyncCfg
*
pCfg
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录