RDS MariaDB实际大小大于使用情况。

0

【以下的问题经过翻译处理】 大家好, 我使用了启用自动扩缩容选项的RDS MariaDB。我收到了120GB以上的存储警报。但是实际上,我用以下命令检查数据库中的存储大小是54GB:

SELECT table_schema "DB Name",
        ROUND(SUM(data_length + index_length) / 1024 / 1024 / 1024, 1) "DB Size in GB" 
FROM information_schema.tables 
GROUP BY table_schema; 

请解释并帮我解决问题。 最好的问候。

profile picture
EXPERT
asked 8 months ago36 views
1 Answer
0

【以下的回答经过翻译处理】 你好,

我建议使用以下链接详细分析数据库存储消耗,并查看是否可以找到更多信息。

https://aws.amazon.com/premiumsupport/knowledge-center/view-storage-rds-mysql-mariadb/ https://aws.amazon.com/premiumsupport/knowledge-center/rds-mysql-storage-optimization/

如果仍然无法确定根本原因,如果你有支持计划,请提出支持案例让我们查看实例。

profile picture
EXPERT
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions