阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

MySQL Slave库恢复实录

142次阅读
没有评论

共计 3759 个字符,预计需要花费 10 分钟才能阅读完成。

状况描述:
今天登录一个 MySQL 数据库 slave 节点主机发现 /var/lib/mysql 下存放大量的 mysql-relay-bin 文件,最早的文件创建日期甚至是 2018 年,我记得在 slave 库同步完 master 的日志操作记录后,会删除这些文件(默认设置不会删除,我记错了),于是便查看了 slave 库的状态,发现如下报错:

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: *.*.*.*
                  Master_User: dbsync
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000095
          Read_Master_Log_Pos: 869242147
               Relay_Log_File: mysqld-relay-bin.000146
                Relay_Log_Pos: 871280529
        Relay_Master_Log_File: mysql-bin.000075
             Slave_IO_Running: Yes
            Slave_SQL_Running: No
              Replicate_Do_DB: cdb,cdb_admin
          Replicate_Ignore_DB: mysql
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 1594
                   Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running'mysqlbinlog'on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 871280384
              Relay_Log_Space: 19994786573
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 1594
               Last_SQL_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running'mysqlbinlog'on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.
1 row in set (0.00 sec)

ERROR: 
No query specified

原因:
我在 master 节点上删除了名称为 mysql-bin.00007 格式的文件,其中包括 mysql-bin.000075,因此,slave 库找不到该文件,无法同步。

解决办法:

  1. 在 slave 库上重新指定同步位置。(不可行)

    slave stop;
    CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000095',MASTER_LOG_POS=869242147; //mysql master 节点上 mysql-bin.000095 的已有位置
    slave start;

    slave 节点上 show slave status,依然报错,具体的报错内容没有复制下来,只记得 errno 为 1236,Slave_IO_Running 进程不运行,Slave_SQL_Running 进程运行,大概描述就是某个库的某个表有问题。
    在多次尝试指定不同的同步位置(报错的位置,master 上 mysql-bin-000095 刚写过的位置)依然存在该错误。
    实际上,表记录已经有问题,就拿描述中提出的那个表来说,slave 库存放了约 1200 条记录,master 库则有 1900+ 的记录。除非手工将这些数据补上,否则由于记录操作数据的日志已经丢失(被我删除),是找不到最近的一致的日志操作执行位置的。

  2. 重做 slave 库。
    由于数据差异太大,而且我觉得不光一张表出现了数据不一样的问题,所以干净点,把从库重做。

1)比对 master、slave 节点库配置信息,保证一致。(我不知道为什么设置了双主模式,实际上我只有一个实例跑在 master 节点上啊?)

2)在 master、slave 节点上查看流量情况(show processlist),保证要重做的 slave 库上没有业务的流量接入。

3)停止 master 节点上 slave 进程。(这个停了以后,我就没开过,不知道有没有问题,待观察)

4)记录 master 节点上库的日志记录位置,之后备份数据库:

mysql> show master status;
+------------------+-----------+-------------------------------+------------------+
| File             | Position  | Binlog_Do_DB                  | Binlog_Ignore_DB |
+------------------+-----------+-------------------------------+------------------+
| mysql-bin.000095 | 871760173 | cdb,cdb_admin | mysql            |
+------------------+-----------+-------------------------------+------------------+
1 row in set (0.01 sec)
 mysqldump -u root -p --databases cdb,cdb_admin > bak.master.sql

5)保险起见,备份 slave 节点库:
mysqldump -u root -p --databases cdb,cdb_admin > bak.slave.sql

6)重做开始:把 master 库备份文件复制到 slave 节点上,导入该备份文件
mysql -u root -p < bak.master.sql

7)在 slave 节点上,重新指定读 master 日志的位置:

slave stop;
CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000095',MASTER_LOG_POS=871760173; //POS 为刚才记录的 master 节点日志记录位置
slave start;

8)slave 节点上 show slave status;此时 Slave_IO_Running,Slave_SQL_Running 均运行起来了,刷新 slave status,Read_Master_Log_Pos 数值也开始增加,重新开始同步了。

总结:
清理文件时, 要注意 mysql-bin 文件在 master、slave 节点日志读取和写的位置啊! 删之前一定要确认日志位置在 master 和 slave 断已被读过 ,不要乱删,否则搞得 slave 库无法同步了,就算在 slave 节点上强行指定 master 日志读取位置或者跳过该错误,也不排除 slave 库上数据丢失的可能。

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-22发表,共计3759字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中