Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
d1a8226c
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看板
提交
d1a8226c
编写于
6月 16, 2021
作者:
C
cd
提交者:
MizuhaHimuraki
6月 16, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix resize file
上级
03001c1f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
52 addition
and
50 deletion
+52
-50
src/storage/blocksstable/ob_store_file.cpp
src/storage/blocksstable/ob_store_file.cpp
+52
-50
未找到文件。
src/storage/blocksstable/ob_store_file.cpp
浏览文件 @
d1a8226c
...
@@ -1262,65 +1262,67 @@ void ObStoreFile::set_mark_sweep_done()
...
@@ -1262,65 +1262,67 @@ void ObStoreFile::set_mark_sweep_done()
int
ObStoreFile
::
resize_file
(
const
int64_t
new_data_file_size
,
const
int64_t
new_data_file_disk_percentage
)
int
ObStoreFile
::
resize_file
(
const
int64_t
new_data_file_size
,
const
int64_t
new_data_file_disk_percentage
)
{
{
int
ret
=
OB_SUCCESS
;
int
ret
=
OB_SUCCESS
;
lib
::
ObMutexGuard
guard
(
block_lock_
);
disable_mark_sweep
();
disable_mark_sweep
();
if
(
OB_ISNULL
(
store_file_system_
))
{
if
(
OB_ISNULL
(
store_file_system_
))
{
// do nothing
// do nothing
}
else
if
(
OB_FAIL
(
wait_mark_sweep_finish
()))
{
}
else
if
(
OB_FAIL
(
wait_mark_sweep_finish
()))
{
LOG_WARN
(
"fail to wait mark and sweep finish"
,
K
(
ret
));
LOG_WARN
(
"fail to wait mark and sweep finish"
,
K
(
ret
));
}
else
if
(
OB_FAIL
(
store_file_system_
->
resize_file
(
new_data_file_size
,
new_data_file_disk_percentage
)))
{
LOG_WARN
(
"fail to resize file"
,
K
(
ret
));
}
else
{
}
else
{
const
int64_t
new_total_file_size
=
lib
::
ObMutexGuard
guard
(
block_lock_
);
if
(
OB_FAIL
(
store_file_system_
->
resize_file
(
new_data_file_size
,
new_data_file_disk_percentage
)))
{
LOG_WARN
(
"fail to resize file"
,
K
(
ret
));
}
else
{
const
int64_t
new_total_file_size
=
lower_align
(
store_file_system_
->
get_total_data_size
(),
store_file_system_
->
get_macro_block_size
());
lower_align
(
store_file_system_
->
get_total_data_size
(),
store_file_system_
->
get_macro_block_size
());
const
int64_t
new_macro_block_cnt
=
new_total_file_size
/
store_file_system_
->
get_macro_block_size
();
const
int64_t
new_macro_block_cnt
=
new_total_file_size
/
store_file_system_
->
get_macro_block_size
();
const
int64_t
origin_macro_block_cnt
=
store_file_system_
->
get_total_macro_block_count
();
const
int64_t
origin_macro_block_cnt
=
store_file_system_
->
get_total_macro_block_count
();
if
(
new_macro_block_cnt
>
origin_macro_block_cnt
)
{
if
(
new_macro_block_cnt
>
origin_macro_block_cnt
)
{
uint32_t
*
new_free_block_array
=
nullptr
;
uint32_t
*
new_free_block_array
=
nullptr
;
uint64_t
*
new_macro_block_bitmap
=
nullptr
;
uint64_t
*
new_macro_block_bitmap
=
nullptr
;
ObServerSuperBlock
super_block
=
store_file_system_
->
get_server_super_block
();
ObServerSuperBlock
super_block
=
store_file_system_
->
get_server_super_block
();
super_block
.
content_
.
total_file_size_
=
new_total_file_size
;
super_block
.
content_
.
total_file_size_
=
new_total_file_size
;
super_block
.
content_
.
total_macro_block_count_
=
new_macro_block_cnt
;
super_block
.
content_
.
total_macro_block_count_
=
new_macro_block_cnt
;
super_block
.
content_
.
modify_timestamp_
=
ObTimeUtility
::
current_time
();
super_block
.
content_
.
modify_timestamp_
=
ObTimeUtility
::
current_time
();
ObStorageFile
*
file
=
OB_FILE_SYSTEM
.
get_server_root_handle
().
get_storage_file
();
ObStorageFile
*
file
=
OB_FILE_SYSTEM
.
get_server_root_handle
().
get_storage_file
();
if
(
OB_ISNULL
(
file
))
{
if
(
OB_ISNULL
(
file
))
{
ret
=
OB_ERR_UNEXPECTED
;
ret
=
OB_ERR_UNEXPECTED
;
LOG_WARN
(
"error unexpected, file must not be null"
,
K
(
ret
));
LOG_WARN
(
"error unexpected, file must not be null"
,
K
(
ret
));
}
else
if
(
OB_FAIL
(
alloc_memory
(
}
else
if
(
OB_FAIL
(
alloc_memory
(
new_macro_block_cnt
,
new_free_block_array
,
new_macro_block_bitmap
,
macro_block_info_
)))
{
new_macro_block_cnt
,
new_free_block_array
,
new_macro_block_bitmap
,
macro_block_info_
)))
{
LOG_WARN
(
"fail to alloc memory"
,
K
(
ret
),
K
(
new_macro_block_cnt
));
LOG_WARN
(
"fail to alloc memory"
,
K
(
ret
),
K
(
new_macro_block_cnt
));
}
else
if
(
OB_FAIL
(
file
->
write_super_block
(
super_block
)))
{
}
else
if
(
OB_FAIL
(
file
->
write_super_block
(
super_block
)))
{
LOG_WARN
(
"fail to write super block"
,
K
(
ret
));
LOG_WARN
(
"fail to write super block"
,
K
(
ret
));
}
else
{
// copy free block info to new_free_block_array
if
(
free_block_pop_pos_
>
free_block_push_pos_
)
{
MEMCPY
(
new_free_block_array
,
free_block_array_
+
free_block_pop_pos_
,
(
origin_macro_block_cnt
-
free_block_pop_pos_
)
*
sizeof
(
uint32_t
));
MEMCPY
(
new_free_block_array
+
origin_macro_block_cnt
-
free_block_pop_pos_
,
free_block_array_
,
free_block_push_pos_
*
sizeof
(
uint32_t
));
}
else
if
(
free_block_pop_pos_
<
free_block_push_pos_
)
{
MEMCPY
(
new_free_block_array
,
free_block_array_
+
free_block_pop_pos_
,
(
free_block_push_pos_
-
free_block_pop_pos_
)
*
sizeof
(
uint32_t
));
}
else
{
}
else
{
MEMCPY
(
new_free_block_array
,
free_block_array_
,
free_block_cnt_
*
sizeof
(
uint32_t
));
// copy free block info to new_free_block_array
if
(
free_block_pop_pos_
>
free_block_push_pos_
)
{
MEMCPY
(
new_free_block_array
,
free_block_array_
+
free_block_pop_pos_
,
(
origin_macro_block_cnt
-
free_block_pop_pos_
)
*
sizeof
(
uint32_t
));
MEMCPY
(
new_free_block_array
+
origin_macro_block_cnt
-
free_block_pop_pos_
,
free_block_array_
,
free_block_push_pos_
*
sizeof
(
uint32_t
));
}
else
if
(
free_block_pop_pos_
<
free_block_push_pos_
)
{
MEMCPY
(
new_free_block_array
,
free_block_array_
+
free_block_pop_pos_
,
(
free_block_push_pos_
-
free_block_pop_pos_
)
*
sizeof
(
uint32_t
));
}
else
{
MEMCPY
(
new_free_block_array
,
free_block_array_
,
free_block_cnt_
*
sizeof
(
uint32_t
));
}
free_block_pop_pos_
=
0
;
free_block_push_pos_
=
free_block_cnt_
;
MEMCPY
(
new_macro_block_bitmap
,
macro_block_bitmap_
,
get_macro_bitmap_array_cnt
(
origin_macro_block_cnt
)
*
sizeof
(
uint64_t
));
allocator_
.
free
(
free_block_array_
);
allocator_
.
free
(
macro_block_bitmap_
);
free_block_array_
=
new_free_block_array
;
macro_block_bitmap_
=
new_macro_block_bitmap
;
LOG_INFO
(
"succeed to resize file"
,
K
(
new_data_file_size
));
}
if
(
OB_FAIL
(
ret
))
{
allocator_
.
free
(
new_free_block_array
);
allocator_
.
free
(
new_macro_block_bitmap
);
}
}
free_block_pop_pos_
=
0
;
free_block_push_pos_
=
free_block_cnt_
;
MEMCPY
(
new_macro_block_bitmap
,
macro_block_bitmap_
,
get_macro_bitmap_array_cnt
(
origin_macro_block_cnt
)
*
sizeof
(
uint64_t
));
allocator_
.
free
(
free_block_array_
);
allocator_
.
free
(
macro_block_bitmap_
);
free_block_array_
=
new_free_block_array
;
macro_block_bitmap_
=
new_macro_block_bitmap
;
LOG_INFO
(
"succeed to resize file"
,
K
(
new_data_file_size
));
}
if
(
OB_FAIL
(
ret
))
{
allocator_
.
free
(
new_free_block_array
);
allocator_
.
free
(
new_macro_block_bitmap
);
}
}
}
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录