Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Metz
oceanbase
提交
89b27014
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看板
提交
89b27014
编写于
10月 26, 2021
作者:
J
JiahuaChen
提交者:
LINGuanRen
10月 26, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix ob_admin parse partition macro meta slog fail
上级
188224d7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
11 addition
and
2 deletion
+11
-2
src/storage/ob_partition_meta_redo_module.cpp
src/storage/ob_partition_meta_redo_module.cpp
+10
-1
tools/ob_admin/main.cpp
tools/ob_admin/main.cpp
+1
-1
未找到文件。
src/storage/ob_partition_meta_redo_module.cpp
浏览文件 @
89b27014
...
@@ -451,14 +451,23 @@ int ObPartitionMetaRedoModule::parse(const int64_t subcmd, const char* buf, cons
...
@@ -451,14 +451,23 @@ int ObPartitionMetaRedoModule::parse(const int64_t subcmd, const char* buf, cons
ObPGKey
pgkey
;
ObPGKey
pgkey
;
ObITable
::
TableKey
table_key
;
ObITable
::
TableKey
table_key
;
blocksstable
::
ObMacroBlockMetaV2
meta
;
blocksstable
::
ObMacroBlockMetaV2
meta
;
common
::
ObObj
*
endkey
=
static_cast
<
common
::
ObObj
*>
(
ob_malloc
(
sizeof
(
ObObj
)
*
common
::
OB_MAX_COLUMN_NUMBER
));
MacroBlockId
macro_block_id
;
MacroBlockId
macro_block_id
;
ObPGMacroBlockMetaLogEntry
entry
(
pgkey
,
table_key
,
0
,
0
,
macro_block_id
,
meta
);
ObPGMacroBlockMetaLogEntry
entry
(
pgkey
,
table_key
,
0
,
0
,
macro_block_id
,
meta
);
if
(
OB_FAIL
(
entry
.
deserialize
(
buf
,
len
,
pos
)))
{
if
(
OB_UNLIKELY
(
nullptr
==
endkey
))
{
ret
=
OB_ALLOCATE_MEMORY_FAILED
;
LOG_WARN
(
"alloc memory fail"
,
K
(
ret
));
}
else
if
(
FALSE_IT
(
meta
.
endkey_
=
endkey
))
{
}
else
if
(
OB_FAIL
(
entry
.
deserialize
(
buf
,
len
,
pos
)))
{
LOG_WARN
(
"Fail to deserialize ObPGMacroBlockMetaLogEntry"
,
K
(
ret
));
LOG_WARN
(
"Fail to deserialize ObPGMacroBlockMetaLogEntry"
,
K
(
ret
));
}
else
if
(
0
>
fprintf
(
stream
,
"ObPGMacroBlockMetaLogEntry
\n
%s
\n
"
,
to_cstring
(
entry
)))
{
}
else
if
(
0
>
fprintf
(
stream
,
"ObPGMacroBlockMetaLogEntry
\n
%s
\n
"
,
to_cstring
(
entry
)))
{
ret
=
OB_IO_ERROR
;
ret
=
OB_IO_ERROR
;
LOG_WARN
(
"failed to print ObPGMacroBlockMetaLogEntry"
,
K
(
ret
),
K
(
entry
));
LOG_WARN
(
"failed to print ObPGMacroBlockMetaLogEntry"
,
K
(
ret
),
K
(
entry
));
}
}
if
(
nullptr
!=
endkey
)
{
ob_free
(
endkey
);
}
break
;
break
;
}
}
case
REDO_LOG_UPDATE_TENANT_FILE_INFO
:
{
case
REDO_LOG_UPDATE_TENANT_FILE_INFO
:
{
...
...
tools/ob_admin/main.cpp
浏览文件 @
89b27014
...
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
...
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
{
{
int
ret
=
0
;
int
ret
=
0
;
OB_LOGGER
.
set_log_level
(
"INFO"
);
OB_LOGGER
.
set_log_level
(
"INFO"
);
OB_LOGGER
.
set_file_name
(
"ob_admin.log"
,
true
,
false
);
OB_LOGGER
.
set_file_name
(
"ob_admin.log"
,
true
,
false
,
"ob_admin_rs.log"
);
const
char
*
log_level
=
getenv
(
"OB_ADMIN_LOG_LEVEL"
);
const
char
*
log_level
=
getenv
(
"OB_ADMIN_LOG_LEVEL"
);
if
(
NULL
!=
log_level
)
{
if
(
NULL
!=
log_level
)
{
OB_LOGGER
.
set_log_level
(
log_level
);
OB_LOGGER
.
set_log_level
(
log_level
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录