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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南