5.6 slave中断(1032)

报错信息:

Replicate_Wild_Ignore_Table:

Last_Errno: 1032

Last_Error: Could not execute Delete_rows event on table product_same.authtoken_token; Can‘t find record in ‘authtoken_token‘, Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event‘s master log mysql-bin.001710, end_log_pos 15201673

Skip_Counter: 0

Exec_Master_Log_Pos: 15201386

Relay_Log_Space: 6413744227

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

Last_SQL_Error: Could not execute Delete_rows event on table product_same.authtoken_token; Can‘t find record in ‘authtoken_token‘, Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event‘s master log mysql-bin.001710, end_log_pos 15201673

Replicate_Ignore_Server_Ids:

Master_Server_Id: 3305390547

Master_UUID: 19499a2d-31bf-11e4-8c95-ac853d9f52b2

Master_Info_File: /home/mysql/data3024/mysql/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: 141127 10:13:06

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set: 17103fb0-31bf-11e4-8c94-ac853d9f54d0:1657108805-1657120882,

19499a2d-31bf-11e4-8c95-ac853d9f52b2:11-11598345

Executed_Gtid_Set: 17103fb0-31bf-11e4-8c94-ac853d9f54d0:1-1657120882,

19499a2d-31bf-11e4-8c95-ac853d9f52b2:1-22046,

5030a771-3345-11e4-9685-ac853d9f53ca:1-303

Auto_Position: 1

1 row in set (0.00 sec)

这个实例是个slave,指向的主master,主master发生切换,切换到备master;

17103fb0-31bf-11e4-8c94-ac853d9f54d0:原主库的uuid

19499a2d-31bf-11e4-8c95-ac853d9f52b2:新主库的uuid

5030a771-3345-11e4-9685-ac853d9f53ca:slave的uuid

跳过这个事物:

STOP SLAVE;

SET GTID_NEXT= “19499a2d-31bf-11e4-8c95-ac853d9f52b2:22047”;

BEGIN; COMMIT;

SET GTID_NEXT ="automatic";

START SLAVE;

时间: 2024-10-11 22:47:41

5.6 slave中断(1032)的相关文章

修复mysql slave复制1032错误

一台从库出现1032错误,那1032是什么错误,我们看一下 [[email protected] ~]# perror 1032 MySQL error code 1032 (ER_KEY_NOT_FOUND): Can't find record in '%-.192s' 简单说,就是在从库上找不到相应的记录,同时在show slave status\G;中有相关输出,我们看一下: Last_Errno: 1032 Last_Error: Could not execute Update_ro

Redis集群_1.redis主从配置

Redis主从配置(Master-Slave) 一. Redis Replication的特点: 1):一个Master可以同步多个Slave 2):不仅Master可以同步多个Slave,Slave也可以同步其它Slave,可以构成一个图形结构,同时还能分担Master的同步压力 3):Redis Replication使用的是异步复制.从2.8开始,Slave会周期性发起一个Ack确认replication stream被处理进度 4):复制在Master Server是以非阻塞模式完成数据

MySQL 主从同步中断常见问题

Error_code: 1032 [现象]  Last_Error: Could not execute Update_rows event on table kebao.t1; Can't find record in 't1', Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event's master log mysql-bin.000014, end_log_pos 114166 140719 23:01:04 [ER

Slave作为其它Slave的Master时使用

主从配置需要注意的点 (1)主从服务器操作系统版本和位数一致: (2) Master和Slave数据库的版本要一致: (3) Master和Slave数据库中的数据要一致: (4) Master开启二进制日志,Master和Slave的server_id在局域网内必须唯一: 主从配置的简要步骤 1.Master上的配置 (1) 安装数据库: (2) 修改数据库配置文件,指明server_id,开启二进制日志(log-bin): (3) 启动数据库,查看当前是哪个日志,position号是多少:

mysql主从中断

Mysql主从复制中断一例 收到mysql主从中断报警,马上登上服务器查看,发现是中继日志损坏. Show slave status\G,提示中继日志损坏.  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'

如何快速解决MySQL 1032 主从错误

3分钟解决MySQL 1032主从错误 Part1:写在最前1032错误----现在生产库中好多数据,在从库误删了,生产库更新后找不到了,现在主从不同步了,再跳过错误也没用,因为没这条,再更新还会报错 解决方案 Part1:临时方案 mysql> stop slave;Query OK, 0 rowsaffected (0.00 sec) mysql> set global sql_slave_skip_counter=1;Query OK, 0 rowsaffected (0.00 sec)

复制中常见1062和1032错误处理方法

复制中错误处理 传统复制错误跳过: stop slave sql_thread ; set global slq_slave_skip_counter=1; start slave sql_thread ; GTID复制错误跳过: stop slave sql_thread ; set gtid_next='uuid:N'; begin;commit; set gtid_next='automatic'; start slave sql_thread ; 注意: 若是binlog+pos复制,使

mysql5.6 传统复制模式下1032和1062故障处理

一.环境 master     172.16.1.61      3307 slave      172.16.1.62      3307 二.检查环境 在master上检查 ([email protected]) [(none)]>show processlist\G *************************** 1. row ***************************      Id: 2    User: root    Host: localhost:42483

[自制简单操作系统] 2、鼠标及键盘中断处理事件[PIC\GDT\IDT\FIFO]

1.大致介绍: >_<" 大致执行顺序是:ipl10.nas->asmhead.nas->bootpack.c PS: 这里bootpack.c要调用graphic.c.dsctbl.c.fifo.c.int.c实现功能,其中有些函数还必须汇编来写,所以单独写一个汇编文件naskfunc.nas,为了方便看全部函数和结构体,所以写一个bootpack.h来写一些结构体和函数声明~ >_<" 下面是编译图解:最终生成的haribote.img可放在软盘