Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
ae446e60
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,发现更多精彩内容 >>
提交
ae446e60
编写于
3月 23, 2022
作者:
G
godyangfight
提交者:
LINGuanRen
3月 23, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
22x Fix remote update pg backup task timeout bug
上级
f700a428
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
31 addition
and
4 deletion
+31
-4
src/share/backup/ob_pg_backup_task_updater.cpp
src/share/backup/ob_pg_backup_task_updater.cpp
+27
-3
src/share/backup/ob_pg_backup_task_updater.h
src/share/backup/ob_pg_backup_task_updater.h
+4
-1
未找到文件。
src/share/backup/ob_pg_backup_task_updater.cpp
浏览文件 @
ae446e60
...
...
@@ -47,9 +47,11 @@ int ObPGBackupTaskUpdater::update_pg_backup_task_status(
}
else
{
while
(
OB_SUCC
(
ret
)
&&
report_idx
<
pkeys
.
count
())
{
ObMySQLTransaction
trans
;
ObTimeoutCtx
timeout_ctx
;
const
int64_t
remain_cnt
=
pkeys
.
count
()
-
report_idx
;
int64_t
cur_batch_cnt
=
remain_cnt
<
MAX_BATCH_COUNT
?
remain_cnt
:
MAX_BATCH_COUNT
;
if
(
OB_FAIL
(
trans
.
start
(
sql_proxy_
)))
{
if
(
OB_FAIL
(
start_trans_
(
timeout_ctx
,
trans
)))
{
LOG_WARN
(
"failed to start trans"
,
K
(
ret
));
}
else
{
for
(
int64_t
i
=
0
;
OB_SUCC
(
ret
)
&&
i
<
cur_batch_cnt
;
++
i
)
{
...
...
@@ -93,9 +95,11 @@ int ObPGBackupTaskUpdater::update_pg_task_info(const common::ObIArray<common::Ob
}
else
{
while
(
OB_SUCC
(
ret
)
&&
report_idx
<
pkeys
.
count
())
{
ObMySQLTransaction
trans
;
ObTimeoutCtx
timeout_ctx
;
const
int64_t
remain_cnt
=
pkeys
.
count
()
-
report_idx
;
int64_t
cur_batch_cnt
=
remain_cnt
<
MAX_BATCH_COUNT
?
remain_cnt
:
MAX_BATCH_COUNT
;
if
(
OB_FAIL
(
trans
.
start
(
sql_proxy_
)))
{
if
(
OB_FAIL
(
start_trans_
(
timeout_ctx
,
trans
)))
{
LOG_WARN
(
"failed to start trans"
,
K
(
ret
));
}
else
{
for
(
int64_t
i
=
0
;
OB_SUCC
(
ret
)
&&
i
<
cur_batch_cnt
;
++
i
)
{
...
...
@@ -397,9 +401,11 @@ int ObPGBackupTaskUpdater::update_status_and_result(const common::ObIArray<commo
}
else
{
while
(
OB_SUCC
(
ret
)
&&
report_idx
<
pkeys
.
count
())
{
ObMySQLTransaction
trans
;
ObTimeoutCtx
timeout_ctx
;
const
int64_t
remain_cnt
=
pkeys
.
count
()
-
report_idx
;
int64_t
cur_batch_cnt
=
remain_cnt
<
MAX_BATCH_COUNT
?
remain_cnt
:
MAX_BATCH_COUNT
;
if
(
OB_FAIL
(
trans
.
start
(
sql_proxy_
)))
{
if
(
OB_FAIL
(
start_trans_
(
timeout_ctx
,
trans
)))
{
LOG_WARN
(
"failed to start trans"
,
K
(
ret
));
}
else
{
for
(
int64_t
i
=
0
;
OB_SUCC
(
ret
)
&&
i
<
cur_batch_cnt
;
++
i
)
{
...
...
@@ -446,3 +452,21 @@ int ObPGBackupTaskUpdater::cancel_pending_tasks(
}
return
ret
;
}
int
ObPGBackupTaskUpdater
::
start_trans_
(
ObTimeoutCtx
&
timeout_ctx
,
ObMySQLTransaction
&
trans
)
{
int
ret
=
OB_SUCCESS
;
const
int64_t
MAX_EXECUTE_TIMEOUT_US
=
30L
*
1000
*
1000
;
// 30s
int64_t
stmt_timeout
=
MAX_EXECUTE_TIMEOUT_US
;
if
(
!
is_inited_
)
{
ret
=
OB_NOT_INIT
;
LOG_WARN
(
"pg backup task updater do not init"
,
K
(
ret
));
}
else
if
(
OB_FAIL
(
timeout_ctx
.
set_trx_timeout_us
(
stmt_timeout
)))
{
LOG_WARN
(
"fail to set trx timeout"
,
K
(
ret
),
K
(
stmt_timeout
));
}
else
if
(
OB_FAIL
(
timeout_ctx
.
set_timeout
(
stmt_timeout
)))
{
LOG_WARN
(
"set timeout context failed"
,
K
(
ret
));
}
else
if
(
OB_FAIL
(
trans
.
start
(
sql_proxy_
)))
{
LOG_WARN
(
"failed to start trans"
,
K
(
ret
));
}
return
ret
;
}
src/share/backup/ob_pg_backup_task_updater.h
浏览文件 @
ae446e60
...
...
@@ -58,7 +58,10 @@ public:
int
cancel_pending_tasks
(
const
uint64_t
tenant_id
,
const
int64_t
incarnation
,
const
int64_t
backup_set_id
);
private:
static
const
int64_t
MAX_BATCH_COUNT
=
1024
;
int
start_trans_
(
ObTimeoutCtx
&
timeout_ctx
,
ObMySQLTransaction
&
trans
);
private:
static
const
int64_t
MAX_BATCH_COUNT
=
128
;
bool
is_inited_
;
common
::
ObISQLClient
*
sql_proxy_
;
DISALLOW_COPY_AND_ASSIGN
(
ObPGBackupTaskUpdater
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录