I just upgraded my RDS storage from 10 to 20 GB, and after a couple of days, RDS says the storage is full again.
Running this query in MySQL workbench on the same database says that the database size is 43 MB
SELECT table_schema "database_name", sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB", sum( data_free )/ 1024 / 1024 "Free Space in MB" FROM information_schema.TABLES GROUP BY table_schema ;
So, something happens with the logs that MySQL creates, or with backups, etc., that can fill my space on production servers.
Please, help.
Aakash
source share