Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
a6b02843
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,发现更多精彩内容 >>
提交
a6b02843
编写于
6月 24, 2022
作者:
O
obdev
提交者:
wangzelin.wzl
6月 24, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[CP] fix bug that slog file_id increases infinitely
上级
da8879f6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
36 deletion
+14
-36
src/storage/blocksstable/slog/ob_storage_log_writer.cpp
src/storage/blocksstable/slog/ob_storage_log_writer.cpp
+14
-36
未找到文件。
src/storage/blocksstable/slog/ob_storage_log_writer.cpp
浏览文件 @
a6b02843
...
@@ -741,24 +741,8 @@ int ObStorageLogWriter::process_logs_in_batch(
...
@@ -741,24 +741,8 @@ int ObStorageLogWriter::process_logs_in_batch(
}
}
if
(
OB_FAIL
(
ret
))
{
if
(
OB_FAIL
(
ret
))
{
// wake up logs not sync
LOG_ERROR
(
"failing to write slog is not allowed"
,
K
(
ret
),
K_
(
build_cursor
),
K_
(
write_cursor
));
for
(
int64_t
i
=
sync_index
+
1
;
i
<
item_cnt
;
++
i
)
{
ob_abort
();
if
(
OB_ISNULL
(
items
[
i
]))
{
LOG_ERROR
(
"log_item in items is null"
,
K
(
ret
),
KP
(
items
[
i
]));
}
else
{
ObStorageLogItem
*
log_item
=
reinterpret_cast
<
ObStorageLogItem
*>
(
items
[
i
]);
if
(
i
==
sync_index
+
1
)
{
// set build cursor and write cursor with the specified log item in queue
ObMutexGuard
guard
(
build_log_mutex_
);
build_cursor_
=
log_item
->
start_cursor_
;
write_cursor_
=
log_item
->
start_cursor_
;
}
// aggregate_logs_to_buffer may fail for invalid cursor arguments,
// we just finish flush and let upper layer retry
log_item
->
finish_flush
(
ret
);
}
}
LOG_ERROR
(
"slog write failed, record cursor"
,
K
(
ret
),
K_
(
build_cursor
),
K_
(
write_cursor
));
}
}
finish_cnt
=
item_cnt
;
finish_cnt
=
item_cnt
;
return
ret
;
return
ret
;
...
@@ -843,26 +827,20 @@ int ObStorageLogWriter::write_logs_local(common::ObIBaseLogItem** items, const i
...
@@ -843,26 +827,20 @@ int ObStorageLogWriter::write_logs_local(common::ObIBaseLogItem** items, const i
const
int64_t
offset
=
flush_cursor_
.
offset_
;
const
int64_t
offset
=
flush_cursor_
.
offset_
;
const
int64_t
start_ts
=
ObTimeUtility
::
fast_current_time
();
const
int64_t
start_ts
=
ObTimeUtility
::
fast_current_time
();
if
(
OB_FAIL
(
file_store_
->
write
(
write_buf
,
write_len
,
offset
)))
{
while
(
OB_FAIL
(
file_store_
->
write
(
write_buf
,
write_len
,
offset
)))
{
// should never happen
if
(
REACH_TIME_INTERVAL
(
5
*
1000
*
1000
))
{
LOG_ERROR
(
"failed to write slog"
,
K
(
ret
));
LOG_ERROR
(
"fail to write slog"
,
K
(
ret
));
}
else
{
batch_write_len_
=
0
;
const
int64_t
duration
=
ObTimeUtility
::
fast_current_time
()
-
start_ts
;
if
(
duration
>
10000
)
{
LOG_INFO
(
"slow write logs local"
,
K
(
duration
),
K
(
write_len
),
K
(
cur_idx
),
K
(
sync_idx
),
K
(
item_cnt
),
"sync_cnt"
,
cur_idx
-
sync_idx
);
}
}
}
batch_write_len_
=
0
;
const
int64_t
duration
=
ObTimeUtility
::
fast_current_time
()
-
start_ts
;
if
(
duration
>
10000
)
{
LOG_INFO
(
"slow write logs local"
,
K
(
duration
),
K
(
write_len
),
K
(
cur_idx
),
K
(
sync_idx
),
K
(
item_cnt
),
"sync_cnt"
,
cur_idx
-
sync_idx
);
}
if
(
OB_FAIL
(
sync_log
(
items
,
sync_idx
,
cur_idx
)))
{
if
(
OB_FAIL
(
sync_log
(
items
,
sync_idx
,
cur_idx
)))
{
LOG_ERROR
(
"sync_log failed"
,
K
(
ret
),
K
(
sync_idx
),
K
(
cur_idx
));
LOG_ERROR
(
"sync_log failed"
,
K
(
ret
),
K
(
sync_idx
),
K
(
cur_idx
));
}
}
}
return
ret
;
return
ret
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录