Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
61ae7ea4
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
61ae7ea4
编写于
8月 20, 2021
作者:
Y
yy0
提交者:
wangzelin.wzl
8月 20, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix problem with region priority
上级
a0ff8aaa
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
2 deletion
+14
-2
src/clog/ob_partition_log_service.cpp
src/clog/ob_partition_log_service.cpp
+12
-2
src/share/ob_locality_table_operator.cpp
src/share/ob_locality_table_operator.cpp
+2
-0
未找到文件。
src/clog/ob_partition_log_service.cpp
浏览文件 @
61ae7ea4
...
...
@@ -256,6 +256,11 @@ int ObPartitionLogService::init(ObILogEngine* log_engine, ObLogReplayEngineWrapp
archive_mgr_
=
archive_mgr
;
max_flushed_ilog_id_
=
0
;
scan_confirmed_log_cnt_
=
0
;
// priority of log replica include encrypted log replica should be initialize with UINT64_MAX,
// while other replica types with 0.
const
uint64_t
zone_priority
=
ObReplicaTypeCheck
::
is_log_replica
(
replica_type
)
?
UINT64_MAX
:
0
;
ATOMIC_STORE
(
&
zone_priority_
,
zone_priority
);
is_inited_
=
true
;
election_has_removed_
=
false
;
}
...
...
@@ -4144,7 +4149,7 @@ void ObPartitionLogService::destroy()
self_
.
reset
();
// checksum_.destroy()
saved_base_storage_info_
.
reset
();
zone_priority_
=
UINT64_MAX
;
zone_priority_
=
0
;
is_candidate_
=
false
;
free_cursor_array_cache_
();
free_broadcast_info_mgr_
();
...
...
@@ -6386,7 +6391,9 @@ int64_t ObPartitionLogService::get_zone_priority() const
void
ObPartitionLogService
::
set_zone_priority
(
const
uint64_t
zone_priority
)
{
ATOMIC_STORE
(
&
zone_priority_
,
zone_priority
);
const
uint64_t
final_zone_priority
=
ObReplicaTypeCheck
::
is_log_replica
(
mm_
.
get_replica_type
())
?
UINT64_MAX
:
zone_priority
;
ATOMIC_STORE
(
&
zone_priority_
,
final_zone_priority
);
}
int
ObPartitionLogService
::
set_region
(
const
common
::
ObRegion
&
region
)
...
...
@@ -6672,6 +6679,9 @@ int ObPartitionLogService::set_replica_type(const enum ObReplicaType replica_typ
free_broadcast_info_mgr_
();
}
}
else
{
if
(
ObReplicaTypeCheck
::
is_log_replica
(
replica_type
))
{
ATOMIC_STORE
(
&
zone_priority_
,
UINT64_MAX
);
}
// change success
if
(
REPLICA_TYPE_LOGONLY
==
mm_
.
get_replica_type
())
{
sw_
.
destroy_aggre_buffer
();
...
...
src/share/ob_locality_table_operator.cpp
浏览文件 @
61ae7ea4
...
...
@@ -364,6 +364,8 @@ int ObLocalityTableOperator::load_region(const ObAddr& addr, const bool& is_self
region_priority
=
UINT64_MAX
;
if
(
ObPrimaryZoneUtil
::
no_need_to_check_primary_zone
(
tenant_schema
->
get_primary_zone
())
||
!
is_self_cluster
)
{
// fix bug: https://work.aone.alibaba-inc.com/issue/34933159
region_priority
=
0
;
// FIXME: do not process the semantics of leader balance of primary_zone
LOG_INFO
(
"tenant_schema primary_zone is NULL, or no need calc region priority"
,
K
(
tenant_id
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录