binlog 清理

-- 查看自动清理,过期天数

mysql> show variables like 'expire_logs_days';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| expire_logs_days | 5 |
+------------------+-------+

-- 查看日志

show master logs;

--清理日志,执行下述命令会自动清理日志并生成新的日志,如果生产库有大量日志没有清理使用flush会瞬间占用大量I/O

flush logs;

purge binary logs to 'bin.000035'; --清理35之前的
purge binary logs before '2023-03-01 13:09:51'; --清理3.1号之前的

 

posted @ 2023-03-20 10:05  刚好遇见Mysql  阅读(38)  评论(0编辑  收藏  举报