Hello,
I've been using zabbix in a partition mode for the last year and it's been great. My Database has been hovering around 250gig. But since i've upgraded to 5.x LTS, the space used by MySQL has been incrementing on a daily basis.
First i thought my partitioning was not working but when i check my zabbix database folder I do have :

So we can see that it's creating a partition everyday and i keep a month. There is nothing before Oct 17th. So the cron job i created works!
My main issue is when i check my MySQL folder and i see this :

I can confirm that MySQL is using 1 file per table :
mysql> show variables like '%per_table%';
+-----------------------+-------+
| Variable_name | Value |
+-----------------------+-------+
| innodb_file_per_table | ON |
+-----------------------+-------+
I'm at a lost as to what to do exactly.. Any inputs?
I've been using zabbix in a partition mode for the last year and it's been great. My Database has been hovering around 250gig. But since i've upgraded to 5.x LTS, the space used by MySQL has been incrementing on a daily basis.
First i thought my partitioning was not working but when i check my zabbix database folder I do have :
So we can see that it's creating a partition everyday and i keep a month. There is nothing before Oct 17th. So the cron job i created works!
My main issue is when i check my MySQL folder and i see this :
I can confirm that MySQL is using 1 file per table :
mysql> show variables like '%per_table%';
+-----------------------+-------+
| Variable_name | Value |
+-----------------------+-------+
| innodb_file_per_table | ON |
+-----------------------+-------+
I'm at a lost as to what to do exactly.. Any inputs?
Comment