灌水唠嗑区
其他
问答
如何查看 Rebalance 任务的历史记录?
发表于2026-05-02 22:15:0210次浏览7个评论
如何查看 Rebalance 任务的历史记录?
评论
登录后才可以发表评论
山佳发表于 3个月前
11111
柒柒天晴发表于 3个月前
11
GBase用户21143发表于 3个月前
所有重分布任务(正在执行 + 历史)都存在系统库 gclusterdb 的 rebalancing_status 表。
GBase用户21143发表于 3个月前
GBase 8a 默认不自动清理历史,长期可按时间做归档 / 清理
GBase用户21143发表于 3个月前
SELECT *
FROM gclusterdb.rebalancing_status
WHERE status = 'COMPLETED'
ORDER BY end_time DESC;
FROM gclusterdb.rebalancing_status
WHERE status = 'COMPLETED'
ORDER BY end_time DESC;
GBase用户21143发表于 3个月前
SELECT *
FROM gclusterdb.rebalancing_status
WHERE status IN ('FAILED','CANCELLED')
ORDER BY start_time DESC;
FROM gclusterdb.rebalancing_status
WHERE status IN ('FAILED','CANCELLED')
ORDER BY start_time DESC;
GBase用户21143发表于 3个月前
应该是这样的
热门帖子
- 12025-12-01浏览数:182759
- 22023-05-09浏览数:25052
- 42023-09-25浏览数:18521
- 52020-05-11浏览数:17526