MySQL Last_SQL_Errno: 1062

一、环境描述

1. centos 6.6

2.mysql 5.6.25

3.基于gtid的复制


二、异常描述

    误把从节点当成主节点插入一条数据,同一条数据在主、从节点插入都进行了一次插入操作,导致主键冲突,slave线程异常。

 

三、处理过程  

1.查看报错信息

(root@localhost) [(none)]> show slave status\G;

*************************** 1. row ***************************

               ...............略.............................

                   Last_Errno: 1062

                   Last_Error: Could not execute Write_rows event on table user-center.t_dea_info; Duplicate entry '89465d5d792541459e38cabaf677c95e' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log mysql-bin.000005, end_log_pos 469856269

                 Skip_Counter: 0

          Exec_Master_Log_Pos: 469855892

              Relay_Log_Space: 470236370

              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: Could not execute Write_rows event on table user-center.t_dea_info; Duplicate entry '89465d5d792541459e38cabaf677c95e' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log mysql-bin.000005, end_log_pos 469856269

  Replicate_Ignore_Server_Ids: 

             Master_Server_Id: 157

                  Master_UUID: 77220b08-41ab-11e5-b9be-000ec4cac97a

             Master_Info_File: mysql.slave_master_info

                    SQL_Delay: 0

          SQL_Remaining_Delay: NULL

      Slave_SQL_Running_State: 

           Master_Retry_Count: 86400

                  Master_Bind: 

      Last_IO_Error_Timestamp: 

     Last_SQL_Error_Timestamp: 170410 16:10:01

               Master_SSL_Crl: 

           Master_SSL_Crlpath: 

           Retrieved_Gtid_Set: 77220b08-41ab-11e5-b9be-000ec4cac97a:33417992-37560729

            Executed_Gtid_Set: 1d7e2d03-084b-11e6-88f0-000ec4cac979:1-3236,

716feeae-41b4-11e5-82c2-000ec4cac979:1-2,

77220b08-41ab-11e5-b9be-000ec4cac97a:1-37559950,

99bcf840-22f5-11e6-b6d2-000ec4cac981:1-10

                Auto_Position: 1

1 row in set (0.00 sec)



2.确认需要跳过的gtid是关键

找到这个已经执行的gtid,加1

77220b08-41ab-11e5-b9be-000ec4cac97a:1-37559950,



3.跳gtid


(root@localhost) [(none)]> stop slave;

(root@localhost) [(none)]> SET @@SESSION.GTID_NEXT= '77220b08-41ab-11e5-b9be-000ec4cac97a:37559951';

Query OK, 0 rows affected (0.00 sec)


(root@localhost) [(none)]> BEGIN; COMMIT;

Query OK, 0 rows affected (0.00 sec)


Query OK, 0 rows affected (0.00 sec)


(root@localhost) [(none)]> SET SESSION GTID_NEXT = AUTOMATIC;

Query OK, 0 rows affected (0.00 sec)


4.重启线程,查看状态,确认OK

(root@localhost) [(none)]> START SLAVE;

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



(root@localhost) [(none)]> show slave status\G;

*************************** 1. row ***************************

  .........................略............................

              Master_Log_File: mysql-bin.000005

          Read_Master_Log_Pos: 470459548

               Relay_Log_File: relay-bin.000016

                Relay_Log_Pos: 70709

        Relay_Master_Log_File: mysql-bin.000005

             Slave_IO_Running: Yes

            Slave_SQL_Running: Yes

              Replicate_Do_DB: 

          Replicate_Ignore_DB: 

           Replicate_Do_Table: 

       Replicate_Ignore_Table: 

      Replicate_Wild_Do_Table: 

  Replicate_Wild_Ignore_Table: 

                   Last_Errno: 0

                   Last_Error: 

                 Skip_Counter: 0

          Exec_Master_Log_Pos: 470459548

              Relay_Log_Space: 114127

              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: 0

Master_SSL_Verify_Server_Cert: No

                Last_IO_Errno: 0

                Last_IO_Error: 

               Last_SQL_Errno: 0

               Last_SQL_Error: 

  Replicate_Ignore_Server_Ids: 

             Master_Server_Id: 157

                  Master_UUID: 77220b08-41ab-11e5-b9be-000ec4cac97a

             Master_Info_File: mysql.slave_master_info

                    SQL_Delay: 0

          SQL_Remaining_Delay: NULL

      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it

           Master_Retry_Count: 86400

                  Master_Bind: 

      Last_IO_Error_Timestamp: 

     Last_SQL_Error_Timestamp: 

               Master_SSL_Crl: 

           Master_SSL_Crlpath: 

           Retrieved_Gtid_Set: 77220b08-41ab-11e5-b9be-000ec4cac97a:33417992-37561196

            Executed_Gtid_Set: 1d7e2d03-084b-11e6-88f0-000ec4cac979:1-3236,

716feeae-41b4-11e5-82c2-000ec4cac979:1-2,

77220b08-41ab-11e5-b9be-000ec4cac97a:1-37561196,

99bcf840-22f5-11e6-b6d2-000ec4cac981:1-10

                Auto_Position: 1

1 row in set (0.00 sec)


ERROR: 

No query specified


四、关键点

   1.找到需要跳过的GTID,知道为什么要加1,理解了原理,问题就迎刃而解了。










本文转自 roidba 51CTO博客,原文链接:http://blog.51cto.com/roidba/1914604,如需转载请自行联系原作者
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值