Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
85d7d1e6
O
oceanbase
项目概览
Metz
/
oceanbase
与 Fork 源项目一致
Fork自
oceanbase / oceanbase
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
O
oceanbase
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
85d7d1e6
编写于
7月 27, 2021
作者:
M
maosy
提交者:
wangzelin.wzl
7月 27, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[RS]fix RS start fail while get_master_rs timeout
上级
f0726b6b
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
23 addition
and
16 deletion
+23
-16
src/share/ob_rs_mgr.cpp
src/share/ob_rs_mgr.cpp
+21
-14
src/share/ob_rs_mgr.h
src/share/ob_rs_mgr.h
+2
-2
未找到文件。
src/share/ob_rs_mgr.cpp
浏览文件 @
85d7d1e6
...
...
@@ -364,10 +364,15 @@ int ObRsMgr::do_detect_master_rs_v2(common::ObIArray<common::ObAddr>& rs_list)
ObGetRootserverRoleResult
result
;
const
int64_t
cluster_id
=
GCONF
.
cluster_id
;
bool
has_rs
=
false
;
int64_t
timeout
=
0
;
if
(
ObTimeoutCtx
::
get_ctx
().
is_timeout_set
()
&&
!
ObTimeoutCtx
::
get_ctx
().
is_timeouted
())
{
timeout
=
ObTimeoutCtx
::
get_ctx
().
get_timeout
();
}
FOREACH_CNT
(
server
,
rs_list
)
{
result
.
reset
();
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
*
server
,
cluster_id
,
result
)))
{
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
*
server
,
cluster_id
,
timeout
,
result
)))
{
// LOG_WARN("detect master rootservice failed", K(ret), "server", *server);
}
else
{
has_rs
=
true
;
...
...
@@ -438,14 +443,14 @@ int ObRsMgr::do_detect_master_rs_v3(const ObIArray<ObAddr>& server_list, ObParti
bool
has_rs
=
false
;
int
tmp_ret
=
OB_SUCCESS
;
ObGetRootserverRoleResult
result
;
int64_t
timeout
=
0
;
if
(
ObTimeoutCtx
::
get_ctx
().
is_timeout_set
()
&&
!
ObTimeoutCtx
::
get_ctx
().
is_timeouted
())
{
timeout
=
ObTimeoutCtx
::
get_ctx
().
get_timeout
();
}
FOREACH_CNT
(
server
,
server_list
)
{
result
.
reset
();
if
(
ObTimeoutCtx
::
get_ctx
().
is_timeout_set
()
&&
ObTimeoutCtx
::
get_ctx
().
is_timeouted
())
{
ret
=
OB_TIMEOUT
;
LOG_WARN
(
"detect master rs timeout"
,
KR
(
ret
));
break
;
}
else
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
*
server
,
cluster_id
,
result
)))
{
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
*
server
,
cluster_id
,
timeout
,
result
)))
{
// LOG_WARN("detect master rootservice failed", K(ret), "server", *server);
}
else
{
// if RS exists, return the memroy data of RS directly.
...
...
@@ -468,17 +473,14 @@ int ObRsMgr::do_detect_master_rs_v3(const ObIArray<ObAddr>& server_list, ObParti
}
int
ObRsMgr
::
do_detect_master_rs_v3
(
const
ObAddr
&
dst_server
,
const
int64_t
cluster_id
,
ObGetRootserverRoleResult
&
result
)
const
ObAddr
&
dst_server
,
const
int64_t
cluster_id
,
const
int64_t
rpc_timeout
,
ObGetRootserverRoleResult
&
result
)
{
int
ret
=
OB_SUCCESS
;
result
.
reset
();
result
.
role_
=
ObRoleMgr
::
OB_SLAVE
;
result
.
zone_
.
reset
();
ObCurTraceId
::
Guard
guard
(
GCTX
.
self_addr_
);
int64_t
timeout
=
DETECT_MASTER_TIMEOUT
;
if
(
ObTimeoutCtx
::
get_ctx
().
is_timeout_set
())
{
timeout
=
ObTimeoutCtx
::
get_ctx
().
get_timeout
();
}
int64_t
timeout
=
max
(
DETECT_MASTER_TIMEOUT
,
rpc_timeout
);
if
(
OB_UNLIKELY
(
!
inited_
))
{
ret
=
OB_NOT_INIT
;
LOG_WARN
(
"not init"
,
KR
(
ret
));
...
...
@@ -489,14 +491,14 @@ int ObRsMgr::do_detect_master_rs_v3(
ObCurTraceId
::
Guard
guard
(
GCTX
.
self_addr_
);
if
(
GET_MIN_CLUSTER_VERSION
()
<
CLUSTER_VERSION_2220
)
{
if
(
OB_FAIL
(
rpc_proxy_
->
to_addr
(
dst_server
).
timeout
(
timeout
).
get_root_server_status
(
result
)))
{
LOG_WARN
(
"failed to get rootserver role"
,
K
R
(
ret
),
K
(
dst_server
));
LOG_WARN
(
"failed to get rootserver role"
,
K
(
ret
),
K
(
dst_server
),
K
(
timeout
));
}
}
else
{
if
(
OB_FAIL
(
rpc_proxy_
->
to_addr
(
dst_server
)
.
timeout
(
timeout
)
.
dst_cluster_id
(
cluster_id
)
.
get_master_root_server
(
result
)))
{
LOG_WARN
(
"fail to get rootserver role"
,
K
R
(
ret
),
K
(
dst_server
),
K
(
cluster_id
));
LOG_WARN
(
"fail to get rootserver role"
,
K
(
ret
),
K
(
dst_server
),
K
(
cluster_id
),
K
(
timeout
));
}
}
}
...
...
@@ -544,6 +546,11 @@ int ObRsMgr::get_remote_cluster_master_rs(const int64_t cluster_id, common::ObAd
}
else
{
bool
found
=
false
;
ObGetRootserverRoleResult
result
;
int64_t
timeout
=
0
;
if
(
ObTimeoutCtx
::
get_ctx
().
is_timeout_set
()
&&
!
ObTimeoutCtx
::
get_ctx
().
is_timeouted
())
{
timeout
=
ObTimeoutCtx
::
get_ctx
().
get_timeout
();
}
for
(
int64_t
i
=
0
;
i
<
addr_agent_
.
get_agent_num
();
++
i
)
{
if
(
OB_FAIL
(
addr_agent_
.
fetch_rslist_by_agent_idx
(
i
,
cluster_id
,
new_list
,
new_readonly_list
,
cluster_type
)))
{
LOG_WARN
(
"fetch rs list failed"
,
K
(
ret
),
K
(
cluster_id
),
K
(
i
));
...
...
@@ -552,7 +559,7 @@ int ObRsMgr::get_remote_cluster_master_rs(const int64_t cluster_id, common::ObAd
for
(
int64_t
i
=
0
;
i
<
new_list
.
count
();
++
i
)
{
const
ObAddr
&
dst_server
=
new_list
.
at
(
i
).
server_
;
result
.
reset
();
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
dst_server
,
cluster_id
,
result
)))
{
if
(
OB_FAIL
(
do_detect_master_rs_v3
(
dst_server
,
cluster_id
,
timeout
,
result
)))
{
}
else
{
addr
=
result
.
replica_
.
server_
;
LOG_INFO
(
"new master rootserver found"
,
"rootservice"
,
addr
,
K
(
cluster_id
));
...
...
src/share/ob_rs_mgr.h
浏览文件 @
85d7d1e6
...
...
@@ -100,8 +100,8 @@ private:
int
renew_master_rootserver_v2
();
int
do_detect_master_rs_v2
(
common
::
ObIArray
<
common
::
ObAddr
>&
rs_list
);
int
renew_master_rootserver_v3
();
int
do_detect_master_rs_v3
(
const
common
::
ObAddr
&
dst_server
,
const
int64_t
cluster_id
,
obrpc
::
ObGetRootserverRoleResult
&
result
);
int
do_detect_master_rs_v3
(
const
common
::
ObAddr
&
dst_server
,
const
int64_t
cluster_id
,
const
int64_t
rpc_timeout
,
obrpc
::
ObGetRootserverRoleResult
&
result
);
private:
static
const
int64_t
DETECT_MASTER_TIMEOUT
=
1
*
1000
*
1000
;
// 1s
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录