Oceanbase-failed to merge partition

一、背景

收到了oceanabse的报警,查看错误码发现这种为重试,一般无需关注,如果后续持续告警需要关注

bash 复制代码
日志级别:WDIAG,关键字=failed to merge partition,错误码=4023

二、排查与处理

本着学习的精神,我们也看下是否自动成功

1.查看对应时间的合并记录

通过合并历史查看,可以确定 merge 已经在下次成功了

bash 复制代码
SELECT tenant_id, ls_id, tablet_id, type,        start_time, finish_time,        execute_time,        comments FROM GV$OB_TABLET_COMPACTION_HISTORY WHERE tenant_id = 1002   AND start_time between "2026-04-22 07:37:00" and "2026-04-22 07:45:00" ORDER BY start_time DESC LIMIT 200;

三、其他补充查询

1.Memstore 内存使用

sql 复制代码
SELECT svr_ip, tenant_id,
       round(active_span   /1024/1024/1024, 2) AS active_gb,
       round(freeze_trigger/1024/1024/1024, 2) AS freeze_trigger_gb,
       round(memstore_used /1024/1024/1024, 2) AS memstore_used_gb,
       round(memstore_limit/1024/1024/1024, 2) AS memstore_limit_gb,
       freeze_cnt
FROM GV$OB_MEMSTORE
WHERE tenant_id = 1002;

2.compaction 整体进度

sql 复制代码
SELECT tenant_id, type, zone, status,
       total_tablet_count,
       unfinished_tablet_count,
       start_time,
       estimated_finish_time,
       comments
FROM GV$OB_COMPACTION_PROGRESS
WHERE tenant_id = 1002;

3.tablet级别compaction 进度

sql 复制代码
SELECT tenant_id, ls_id, tablet_id, type, status,
       create_time, start_time, estimated_finish_time
FROM GV$OB_TABLET_COMPACTION_PROGRESS
WHERE tenant_id = 1002;
相关推荐
OceanBase数据库官方博客9 天前
OceanBase + Flink 数据集成(第二部分):通过 JDBC 协议实现实时数据同步
大数据·flink·oceanbase
OceanBase数据库官方博客10 天前
OceanBase × Flink 数据集成系列——旁路导入连接器的批量写入能力
架构·kubernetes·oceanbase
OceanBase数据库官方博客13 天前
使用 OceanBase 进行向量 POC 的规划思路(混合搜索)
oceanbase
OceanBase数据库官方博客14 天前
如何用PaddleOCR和OceanBase打通企业资产智能化的第一公里
oceanbase
OceanBase数据库官方博客14 天前
借助OceanBase与LangChain,实现Agent快速投入生产的系统方案
langchain·oceanbase
弗锐土豆16 天前
使用eclipse、java、maven、j60870、oceanbase按照IEC104协议采集、存储电力数据
java·oceanbase·电表·iec104·抄表
OceanBase数据库官方博客17 天前
从OceanBase看AI Agent Harness的构成与设计
人工智能·oceanbase
OceanBase数据库官方博客17 天前
从 HBase 到 OceanBase 的迁移路径:Flink 驱动的实时数据写入
人工智能·oceanbase
OceanBase数据库官方博客20 天前
OceanBase 赋能央国企:从发电到用电的全链路业务承载
数据库·oceanbase
GottdesKrieges20 天前
OceanBase迁移用户及其权限配置
数据库·oceanbase