Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
c5602fba
T
TDengine
项目概览
taosdata
/
TDengine
大约 1 年 前同步成功
通知
1184
Star
22015
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
c5602fba
编写于
4月 25, 2022
作者:
L
Li Minghao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add flag in syncEnv, to deal with expired timer
上级
3352f952
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
76 addition
and
55 deletion
+76
-55
include/libs/sync/sync.h
include/libs/sync/sync.h
+2
-0
source/dnode/vnode/src/vnd/vnodeSvr.c
source/dnode/vnode/src/vnd/vnodeSvr.c
+60
-55
source/libs/sync/inc/syncEnv.h
source/libs/sync/inc/syncEnv.h
+2
-0
source/libs/sync/src/syncEnv.c
source/libs/sync/src/syncEnv.c
+12
-0
未找到文件。
include/libs/sync/sync.h
浏览文件 @
c5602fba
...
@@ -158,6 +158,8 @@ typedef enum {
...
@@ -158,6 +158,8 @@ typedef enum {
int32_t
syncPropose
(
int64_t
rid
,
const
SRpcMsg
*
pMsg
,
bool
isWeak
);
int32_t
syncPropose
(
int64_t
rid
,
const
SRpcMsg
*
pMsg
,
bool
isWeak
);
bool
syncEnvIsStart
();
extern
int32_t
sDebugFlag
;
extern
int32_t
sDebugFlag
;
//-----------------------------------------
//-----------------------------------------
...
...
source/dnode/vnode/src/vnd/vnodeSvr.c
浏览文件 @
c5602fba
...
@@ -193,6 +193,9 @@ void smaHandleRes(void *pVnode, int64_t smaId, const SArray *data) {
...
@@ -193,6 +193,9 @@ void smaHandleRes(void *pVnode, int64_t smaId, const SArray *data) {
// sync integration
// sync integration
int
vnodeProcessSyncReq
(
SVnode
*
pVnode
,
SRpcMsg
*
pMsg
,
SRpcMsg
**
pRsp
)
{
int
vnodeProcessSyncReq
(
SVnode
*
pVnode
,
SRpcMsg
*
pMsg
,
SRpcMsg
**
pRsp
)
{
if
(
syncEnvIsStart
())
{
SSyncNode
*
pSyncNode
=
syncNodeAcquire
(
pVnode
->
sync
);
SSyncNode
*
pSyncNode
=
syncNodeAcquire
(
pVnode
->
sync
);
assert
(
pSyncNode
!=
NULL
);
assert
(
pSyncNode
!=
NULL
);
...
@@ -270,7 +273,9 @@ int vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
...
@@ -270,7 +273,9 @@ int vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp) {
}
}
syncNodeRelease
(
pSyncNode
);
syncNodeRelease
(
pSyncNode
);
}
else
{
vError
(
"==vnodeProcessSyncReq== error syncEnv stop"
);
}
return
0
;
return
0
;
}
}
...
...
source/libs/sync/inc/syncEnv.h
浏览文件 @
c5602fba
...
@@ -39,6 +39,8 @@ extern "C" {
...
@@ -39,6 +39,8 @@ extern "C" {
#define EMPTY_RAFT_ID ((SRaftId){.addr = 0, .vgId = 0})
#define EMPTY_RAFT_ID ((SRaftId){.addr = 0, .vgId = 0})
typedef
struct
SSyncEnv
{
typedef
struct
SSyncEnv
{
uint8_t
isStart
;
// tick timer
// tick timer
tmr_h
pEnvTickTimer
;
tmr_h
pEnvTickTimer
;
int32_t
envTickTimerMS
;
int32_t
envTickTimerMS
;
...
...
source/libs/sync/src/syncEnv.c
浏览文件 @
c5602fba
...
@@ -26,6 +26,14 @@ static int32_t doSyncEnvStopTimer(SSyncEnv *pSyncEnv);
...
@@ -26,6 +26,14 @@ static int32_t doSyncEnvStopTimer(SSyncEnv *pSyncEnv);
static
void
syncEnvTick
(
void
*
param
,
void
*
tmrId
);
static
void
syncEnvTick
(
void
*
param
,
void
*
tmrId
);
// --------------------------------
// --------------------------------
bool
syncEnvIsStart
()
{
if
(
gSyncEnv
==
NULL
)
{
return
false
;
}
return
atomic_load_8
(
&
(
gSyncEnv
->
isStart
));
}
int32_t
syncEnvStart
()
{
int32_t
syncEnvStart
()
{
int32_t
ret
=
0
;
int32_t
ret
=
0
;
taosSeedRand
(
taosGetTimestampSec
());
taosSeedRand
(
taosGetTimestampSec
());
...
@@ -88,11 +96,15 @@ static SSyncEnv *doSyncEnvStart() {
...
@@ -88,11 +96,15 @@ static SSyncEnv *doSyncEnvStart() {
// start tmr thread
// start tmr thread
pSyncEnv
->
pTimerManager
=
taosTmrInit
(
1000
,
50
,
10000
,
"SYNC-ENV"
);
pSyncEnv
->
pTimerManager
=
taosTmrInit
(
1000
,
50
,
10000
,
"SYNC-ENV"
);
atomic_store_8
(
&
(
pSyncEnv
->
isStart
),
1
);
return
pSyncEnv
;
return
pSyncEnv
;
}
}
static
int32_t
doSyncEnvStop
(
SSyncEnv
*
pSyncEnv
)
{
static
int32_t
doSyncEnvStop
(
SSyncEnv
*
pSyncEnv
)
{
assert
(
pSyncEnv
==
gSyncEnv
);
assert
(
pSyncEnv
==
gSyncEnv
);
atomic_store_8
(
&
(
pSyncEnv
->
isStart
),
0
);
if
(
pSyncEnv
!=
NULL
)
{
if
(
pSyncEnv
!=
NULL
)
{
taosTmrCleanUp
(
pSyncEnv
->
pTimerManager
);
taosTmrCleanUp
(
pSyncEnv
->
pTimerManager
);
taosMemoryFree
(
pSyncEnv
);
taosMemoryFree
(
pSyncEnv
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录