I am experiencing a strange issue: I have a t2.micro AWS RDS instance, but it constantly eat its free space. The current usage of the tables, checked with this query:
select table_schema, sum((data_length+index_length)/1024/1024) AS MB from information_schema.tables group by 1
result:
# TABLE_SCHEMA, MB
mysql, 5.89062500
information_schema, 0.00000000
sys, 0.01562500
performance_schema, 0.00000000
testdb_v6.2, 0.81250000
Please check the attached picture.
disk usage
When I experienced the out of space issue, I increased the available space by 2GB, but it constantly eat it.
Can you suggest how to get through this?
I checked that there is no data consumed by any kind of service, everything looks normal.