• mysql 主从同步 问题修复总结


    原因:从报错来看,应该是插入的值违反了主键的约束,表结构,主键是自增类型。

    参考文章:https://www.cnblogs.com/Uest/p/7941329.html   https://www.iteye.com/blog/dinglin-1236330

    关于: sql_slave_skip_counter=N

    • 在主从库维护中,有时候需要跳过某个无法执行的命令,需要在slave处于stop状态下,执行 set global sql_slave_skip_counter=N以跳过命令。常用的且不易用错的是N=1的情况,但N>1时,则不那么顾名思义,本文详细介绍N的意义,及使用注意事项。
    • MySQL从库从主库上复制binlog文件内容到本地执行。在binlog上命令以event的形式存在,并非一个命令对应一个event。以一个insert语句为例(引擎InnoDB、binglog_format=statement), 在binlog中实际上有三个event,分别为begininsertcommit 。 命令类型都是Query_log_event.
    •  而set global sql_slave_skip_counter=N的意思,即为在start slave时,从当前位置起,跳过N个event。每跳过一个event,则N--.

    看到这里有同学就会问,这是有问题的。如果当前的执行位置是某个insert语句开头,那使用 N=1实际上是从begininsertcommit的第二个开始执行,这个insert语句还是不能被跳过?

        实际上这里还有两个策略:

        1、若N=1且当前event为BEGIN, 则N不变,跳过当前event继续。

        2、若N=1且当前event处于一个事务之内(BEGIN之后,COMMIT之前),则N不变,跳过当前event继续。

         说明:其实上面两个策略合起来就是一句话,当N=1时,会连续跳过若干个event,直到当前所在的事务结束。

        当然如果N>1,则每跳过一个event都要N--.

    修复过程:

    1、mysql主从同步告警。

    2、查询从库状态。

    mysql> show slave statusG
    *************************** 1. row ***************************
                   Slave_IO_State:
                      Master_Host: xxxxxxxxx
                      Master_User: repl
                      Master_Port: 3306
                    Connect_Retry: 60
                  Master_Log_File: mysql-bin.000174
              Read_Master_Log_Pos: 178164043
                   Relay_Log_File: mysql-relay-bin.000522
                    Relay_Log_Pos: 172331198
            Relay_Master_Log_File: mysql-bin.000174
                 Slave_IO_Running: No
                Slave_SQL_Running: No
                  Replicate_Do_DB:
              Replicate_Ignore_DB:
               Replicate_Do_Table:
           Replicate_Ignore_Table:
          Replicate_Wild_Do_Table:
      Replicate_Wild_Ignore_Table:
                       Last_Errno: 1062
                       Last_Error: Error 'Duplicate entry '81202596' for key 'PRIMARY'' on query. Default database: 'xxxx....
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 172331053
                  Relay_Log_Space: 178164686
                  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: 1062
                   Last_SQL_Error: Error 'Duplicate entry '81202596' for key 'PRIMARY'' on query. Default database: 'xxxxx'
    1 row in set (0.00 sec)

    3、beta环境,为了赶时间 skip这条语句。

    stop slave;
    mysql> stop slave;
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> set global sql_slave_skip_counter=1;
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> start slave ;
    Query OK, 0 rows affected (0.00 sec)

    3、退出回话变成默认。

    mysql> show variables like 'sql_slave_skip_counter';
    +------------------------+-------+
    | Variable_name          | Value |
    +------------------------+-------+
    | sql_slave_skip_counter |       |
    +------------------------+-------+
    1 row in set (0.00 sec)

    不推荐以下配置:

    让从库的同步线程忽略这个错误,方法:修改mysql配置文件 /etc/my.cnf 在 [mysqld]下加一行 slave_skip_errors = 1062 ,保存.重启mysql. mysql slave可以正常同步了.

  • 相关阅读:
    oracle nvl,to_char 函数(二)
    GridView的使用技巧
    asp.net应用程序性能的提高方案
    浅谈 ViewState
    最为关心的问题,hbase查询一条数据的过程.
    HBase的弊端。
    拙建:(mapreduce 如何来分步统计词频)
    终于找到hbase分布式存储数据的方式.
    迷局一般的openjdk6jdk!
    IT事业不好走,大家在虚拟的世界,记得回到真实的世界,不然你将会成为下一个张孝祥.
  • 原文地址:https://www.cnblogs.com/sunshine-long/p/12603791.html
Copyright © 2020-2023  润新知