精致的参数 - max_binlog_files

max_binlog_files,是Percona MySQL分支提供的限制binlog文件数量的参数,在删除归档数据、binlog增长很快的情况下,很实用的一个参数。

该参数也对正在被使用的binlog提供了保护,是purge不掉的,如下。

[root@MysqL.sock][(none)]>purge binary logs to 'bin.016222';

Query OK, 0 rows affected, 1 warning (0.01 sec)

[root@MysqL.sock][(none)]>>show warnings;

+---------+------+------------------------------------------------------------------------------------------------------+

| Level   | Code | Message                                                                                                        |

+---------+------+------------------------------------------------------------------------------------------------------+

| Warning | 1867 | file ./bin.016215 was not purged because it was being read by 1 thread(s), purged only 0 out of 7 files. |

+---------+------+------------------------------------------------------------------------------------------------------+

1 row in set (0.00 sec)

$ perror 1867

MysqL error code 1867 (ER_WARN_PURGE_LOG_IN_USE): file %s was not purged because it was being read by %d thread(s), purged only %d out of %d files.

error日志中也是用体现的。

2019-09-18T01:02:56.643574+08:00 10326541 [Warning] file ./bin.016215 was not purged because it was being readby thread number 17218543

2019-09-18T01:03:18.196285+08:00 17244031 [Warning] file ./bin.016215 was not purged because it was being readby thread number 17218543

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...