If the binlogs are growing too large, you can trim them and set them up to auto-trim
Run these commands
PURGE BINARY LOGS BEFORE (NOW() – INTERVAL 90 DAY);
SET GLOBAL expire_logs_days=90;
and then add “expire_logs_days=90” to the [mysqld] section of my.ini
Now the logs will not be kept longer than 90 days.