我的编程空间,编程开发者的网络收藏夹
学习永远不晚

【MYSQL】binlog安全清理的两种方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

【MYSQL】binlog安全清理的两种方法

通常在交付MYSQL数据库前会将日志目录与数据文件分开,为其单独设立一个文件系统,这样便于掌握日志与数据的空间使用情况。如果不是业务突然增长,binlog会按照默认设置的过期时间自动被清理,但是有时候业务量增长是很突然的,比如上线了一个活动等,所以设置binlog自动清理是每个MYSQL管理员必须要做的一件事情。

两种binlog清理方法的选择

MYSQL8.0官方手册的说法,purge binary log 和 expire_logs_senconds 都可以安全清理binlog文件,那么到底该选择哪一种呢?
1、选择参数expire_logs_senconds。对于大公司、大企业来说,交付的数据库数量较多,数据库通常有统一的部署规范,这种情形就可使用本参数来设置所有的数据库binlog自清理周期,例如本公司大基线要求是7天。
2、选择命令purge binary log。这种方式比较适合临时清理一下的场景,比如自清理脚本。例如某应用binlog文件突增,触发自清理条件就会清理,但不会修改过期参数expire_logs_senconds,当业务量下来是binlog又会保留的久一点。

值得注意的是,官方手册中有一句话 “为了手动清理binlog日志文件,请用 purge binary log 命令

在这里插入图片描述

清理方法1(purge binary log)

清理时,PURGE BINARY LOGS和PURGE MASTER LOGS这两个命令任选其一即可,PURGE命令会根据mysql-bin.index的内容来确定被清理的binlog日志文件。

The PURGE BINARY LOGS statement deletes all the binary log files listed in the log index file prior to the specified log file name or date. BINARY and MASTER are synonyms. Deleted log files also are removed from the list recorded in the index file, so that the given log file becomes the first in the list.

Examples:

PURGE BINARY LOGS TO 'mysql-bin.010';PURGE BINARY LOGS BEFORE '2019-04-02 22:46:26';

如果从库正在复制主库binlog的情况下,你执行PURGE命令,这时不会删除正在被占用的binlog日志文件;但时如果主从断掉的情况下,你执行PURGE 命令,就无法自动恢复主从同步。

PURGE BINARY LOGS is safe to run while replicas are replicating. You need not stop them. If you have an active replica that currently is reading one of the log files you are trying to delete, this statement does not delete the log file that is in use or any log files later than that one, but it deletes any earlier log files. A warning message is issued in this situation. However, if a replica is not connected and you happen to purge one of the log files it has yet to read, the replica cannot replicate after it reconnects.

清理方法2(expire_logs_senconds)

当启动数据库服务或者刷新binlog时,MYSQL会根据参数值binlog_expire_logs_seconds(默认30天)自动清理binlog文件。

Binary log files are automatically removed after the server’s binary log expiration period. Removal of the files can take place at startup and when the binary log is flushed. The default binary log expiration period is 30 days. You can specify an alternative expiration period using the binlog_expire_logs_seconds system variable. If you are using replication, you should specify an expiration period that is no lower than the maximum amount of time your replicas might lag behind the source.

自清理脚本(shell)

在这里附上我为本公司编写的binlog自清理脚本,脚本以crontab的形式部署在交付出去的MYSQL服务器上,包括主备机、单机。脚本中的清理命令虽然只有寥寥几行,但是附加的文件系统使用率、空间大小、数据库版本、同步延迟时间等检验条件以及邮件报警却丰富了脚本的多样性。

#!/bin/ksh#本脚本必须使用系统用户执行#功能:检查所有mysql8.0版本的单机或主库的binlog占用文件系统大小。若达到清理条件则开始执行清理脚本,清理前备份binlog文件,清理完邮件报警给数据库管理员。#注意:部署时使用sh 脚本名,否则=~符号会报错。export LC_ALL=Cmanageruser=xxxxxxmanagerpass=xxxxxxuseage_limited=90idle_size_limited=10mysql_host="xxx.xxx.xxx.xxx"mysql_user=xxxxxxmysql_pass=xxxxxxdatetime=`date +"%Y%m%d_%H%M%S"`yesterday=`date '+%Y-%m-%d %H:%M:%S' -d '1 days ago'`ipaddr=`ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v 0.0.0.0|grep -v inet6|awk '{print $2}'|tr -d "addr:"`function getFileSystem(){F_PATH=/data/mysql_8.0_3306/log/bin_logFS_RESULT="/"for fs in `df |grep "/"|awk '{print $6}'`doif [[ $F_PATH/ =~ ${fs}/ ]]; then FS_RESULT=$fsfidoneecho $FS_RESULT}function get_binlog_useage(){useage=`df -h|grep $1|awk '{print $5}'|awk -FG '{print $1}'|awk '{print int($0)}'|sed -n '1p'`echo $useage}function get_binlog_idle_size(){idle=`df -h|grep $1|awk '{print $4}'|awk -FG '{print $1}'|awk '{print int($0)}'|sed -n '1p'`echo $idle}function get_behind_seconds(){standbyip=$(get_standby_ip $ipaddr)#echo "${standbyip}"if [ ! -n "${standbyip}" ]; then        echo "单机或者备库[$ipaddr],可直接清理..."#echo 0elseSECONDS_BEHIND_MASTER=$(mysql --connect-timeout=5 -h${standbyip} -u${manageruser} -p${managerpass} -e "SHOW SLAVE STATUS\G"| grep "Seconds_Behind_Master" | awk -F": " {' print $2 '})echo $SECONDS_BEHIND_MASTERfi}function get_standby_ip(){standby_ip=$(mysql --connect-timeout=5 -h$mysql_host -u$mysql_user -p$mysql_pass  -e "select distinct standby from iomp.ZJFH_MYSQL_LISTS where standby is not null and ip='$1';")echo $standby_ip|awk {'print $2'}}function backup_binlog_before_clean(){mkdir -p /data/mysql_8.0_3306/tempmount xxx.xxx.xxx.xxx:/appm/aixinst/mysql_install/Mysqlbinlog /data/mysql_8.0_3306/tempiptime="${ipaddr}_${datetime}"localdir=/data/mysql_8.0_3306/temp/${iptime}mkdir -p $localdirchown -R mysql:mysql $localdircd $(find /data -name "bin_log")cp mysql-bin.* $localdirumount /data/mysql_8.0_3306/tempecho "mysqlbinlog backup dir: \\\\xxx.xxx.xxx.xxx\appm\aixinst\mysql_install\Mysqlbinlog\\${iptime}"echo}function clean_binlog(){echo '清理前binlog大小:'mysql -u$manageruser -p$managerpass -e "show binary logs;"echomysql -u$manageruser -p$managerpass -e "purge binary logs before '${yesterday}';"echo '清理后binlog大小:'mysql -u$manageruser -p$managerpass -e "show binary logs;"}function send_mails(){#test url#url="http://xxx.xxx.xxx.xxx:8080/iomp/probe/send"#production urlurl=http://xxx.xxx.xxx.xxx:8080/xxx/probe/sendappcode="00000021"eagleappno="00000021"probetype="01"probedes="mysql_binlog_file_has_been_auto_clean[${ipaddr}]."   probetime=`date +"%Y%m%d%H%M%S"`    subappcode="1"echo "probetime:${datetime}, probedes: ${probedes}."command="curl $url -X POST -d 'appcode=$appcode&eagleappno=$eagleappno&probetype=$probetype&probetime=$probetime&subappcode=$subappcode' --data-urlencode probedes=$probedes"    echo $command     eval $command}#清理条件?binlog使用率大于90或 binlog剩余空间小于10GfileSystem=$(getFileSystem)useage=$(get_binlog_useage ${fileSystem})idle_size=$(get_binlog_idle_size ${fileSystem})if [ $useage -gt $useage_limited ] || [ $idle_size -lt $idle_size_limited ]; thenecho "binlog文件系统使用率或剩余大小满足清理条件,开始清理..."elseecho "binlog文件系统使用率[$useage]或剩余大小[$idle_size]充足,无需清理。"exit 1fi#清理内容?binlog时期在1天前的都备份后删除掉,修改binlog_expire_logs_seconds=86400可实现。. /home/mysql/.profileversion=$(mysql -u$manageruser -p$managerpass  -e "select version();")echo $version |grep "8.0"if [ $?==0 ]; thenecho "mysql版本为8.0,程序继续..."elseecho "mysql版本为5.7或5.5, 脚本暂不支持, 程序已退出..."exit 1fidelaytime=$(get_behind_seconds)echo "Seconds_Behind_Master:${delaytime}"if [ $delaytime -gt 86400 ]; thenecho "主从延迟[$delaytime]超过86400秒(一天),不在本程序处理范围内,程序已停止,请手动处理..."exit 1elseecho "binlog文件系统使用率或剩余大小满足清理条件,开始清理..."fialertcontent="本次共清理x个mysql-bin文件,空出x空间"#备份、清理、邮件通知backup_binlog_before_cleanclean_binlogsend_mails

来源地址:https://blog.csdn.net/Edison_03/article/details/128936003

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

【MYSQL】binlog安全清理的两种方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

【MYSQL】binlog安全清理的两种方法

通常在交付MYSQL数据库前会将日志目录与数据文件分开,为其单独设立一个文件系统,这样便于掌握日志与数据的空间使用情况。如果不是业务突然增长,binlog会按照默认设置的过期时间自动被清理,但是有时候业务量增长是很突然的,比如上线了一个
2023-08-22

mysql清理binlog的方式有哪些

使用PURGE BINARY LOGS命令清理binlog文件,可以指定保留多少天以内的binlog文件,或者指定删除到某个binlog文件之前的所有binlog文件。示例:PURGE BINARY LOGS BEFORE '2022-0
mysql清理binlog的方式有哪些
2024-03-08

Win8系统如何清理磁盘?win8系统清理磁盘的两种方法

win8系统清理磁盘的两种方法: 方法一: 1、双击打开“我的电脑”,选中需要优化的磁盘,单击右键,选择属性; 2、在磁盘属性“常规”选项卡下方,点击“磁盘清理”;3、
2022-06-04

android 设置全屏的两种方法

现在android的每一个项目都会需要设置为全屏,现在介绍两种设置为全屏的方式。 一、在配置文件中设置android:theme=”@android:style/Theme.Light.NoTitleBar.Fullscreen” 如:二、
2022-06-06

zabbix监控MySQL的两种方式(最全)

目录一. 最简单的,被监控主机上已安装zabbix-agent2的方式:1.在mysql数据库中创建监控账号并授权:2.在终端测试使用该账号密码和IP能正常登录MySQL;3.Zabbix_agent2自带内置MySQL模板,监控时需要根据
zabbix监控MySQL的两种方式(最全)
2024-08-12

win8系统两种安全模式怎样进行切换 win8系统两种安全模式切换方法

win8系统与win7系统相比有很大的变化,比如说没有之前的一键就可以取得安静模式的成果,所以说想要实现这个功能就必须要到后台操作。不过这样操作起来确实是十分的麻烦,因此不少人都问有没有更好的方法呢?答案是肯定的。那么win8系统两种安全模
2022-06-04

MySQL 两种恢复数据的方法

一 前言 前一段时间接二连三的出现开发人员在测试环境和生产误操作导致数据库误删除/更新,对DBA而言,回滚数据着实是一件头疼的事情,凡涉及到恢复线上数据必然对应用带来一定的影响。大多数情况是开发误操作delete数据,update多数行,根
2022-05-29

详解ubuntu安装vscode的两种方法

方法一: 依次输入如下命令 1、sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make 2、sudo apt-get update 3、sudo apt-get install ubun
2022-05-26

Linux下完全删除用户的两种方法

linux操作 实验环境:Centos7虚拟机 首先创建一个普通用户 gubeiqing 。[root@localhost ~]# useradd gubeiqing [root@localhost ~]# passwd gubeiqing
2022-06-04

编程热搜

目录