Discrepancy in AWS RDS Storage Usage

0

Hello,

I'm currently using AWS RDS for PostgreSQL and I've encountered an issue with storage usage. My RDS instance is allocated 20 GiB of storage. However, when I check the size of my database using the pg_size_pretty(pg_database_size('my_database')) command, it reports that my database is only using around 2279 MB, which is significantly less than the total allocated storage.

I understand that the total storage usage includes not only the actual data but also system files, indexes, logs, and backups. However, it seems unusual that these elements would consume over 86% of the total storage. I have not recently deleted a large amount of data, performed a major version upgrade, or run a large batch job or heavy write operation.

Could you please help me understand why there is such a large discrepancy in storage usage? Is there a way to get a more detailed breakdown of storage usage in AWS RDS?

Thank you for your help.

Attila
已提问 8 个月前240 查看次数
1 回答
0

Hi

Try running the following query to get the size of all the databases in the instance:

SELECT pg_database.datname, pg_database_size(pg_database.datname) AS size FROM pg_database;

Cheers Tony

AWS
已回答 7 个月前
  • Thanks, actually there were some databases that i forgot about and were not in use, but they only added up to around 50Mbs.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则