我正在尝试使 MySQL 复制正常工作,但是由于约束失败,我的从属服务器不断停止。
发生此错误是因为某个特定表的复制不起作用。
如果我检查中继日志文件,我可以看到几个 BINLOG 语句应该将行插入到该表中,但它们没有。以下是一个例子:
BINLOG '
sQn+VBMLAAAAYQAAAOkmaCUAAOnamUgBAAEADWRtXzc1NF9kYmJ1ZDkACnBlcnNvbmFzX18AEgMD
AwP+Dw8PDw8P/g/+AQcDART3AZYAlgBaACwBAwA8APcBPAD3AQ5+Ag==
sQn+VBcLAAAAWwAAAEQnaCUAAOnamUgBAAEAEv///w56/AEAAAADCHJlaW5hbGRvA2dvbgASAHJl
eWdvbmNsQGdtYWlsLmNvbQg5MTkwNzAzNrEJ/lQBAAAAAA==
'/*!*/;
### INSERT INTO `dm_754_dbbud9`.`personas__`
### SET
### @1=1 /* INT meta=0 nullable=0 is_null=0 */
### @2=NULL /* INT meta=0 nullable=1 is_null=1 */
### @3=NULL /* INT meta=0 nullable=1 is_null=1 */
### @4=NULL /* INT meta=0 nullable=1 is_null=1 */
### @5=3 /* ENUM(1 byte) meta=63233 nullable=0 is_null=0 */
### @6='reinaldo' /* VARSTRING(150) meta=150 nullable=0 is_null=0 */
### @7='gon' /* VARSTRING(150) meta=150 nullable=0 is_null=0 */
### @8='' /* VARSTRING(90) meta=90 nullable=0 is_null=0 */
### @9='[email protected]' /* VARSTRING(300) meta=300 nullable=0 is_null=0 */
### @10=NULL /* VARSTRING(300) meta=3 nullable=1 is_null=1 */
### @11='91907036' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */
### @12=NULL /* VARSTRING(60) meta=63233 nullable=1 is_null=1 */
### @13=NULL /* VARSTRING(60) meta=60 nullable=1 is_null=1 */
### @14=NULL /* VARSTRING(60) meta=63233 nullable=1 is_null=1 */
### @15=NULL /* VARSTRING(60) meta=0 nullable=1 is_null=1 */
### @16=1425934769 /* TIMESTAMP meta=0 nullable=0 is_null=0 */
### @17=1 /* INT meta=0 nullable=0 is_null=0 */
### @18=0 /* TINYINT meta=0 nullable=1 is_null=0 */
在 mysql 终端上执行这些行时,不会打印任何错误,但也不会插入任何行。
所有其他表似乎都运行良好。
有什么想法可能出了什么问题吗?
编辑:这是从属状态:
Slave_IO_State: Waiting for master to send event
Master_Host: 127.0.0.1
Master_User: replicacionusr
Master_Port: 33061
Connect_Retry: 60
Master_Log_File: servidor-bin.000005
Read_Master_Log_Pos: 38324143
Relay_Log_File: mysqld-relay-bin.000012
Relay_Log_Pos: 345615012
Relay_Master_Log_File: servidor-bin.000004
Slave_IO_Running: Yes
Slave_SQL_Running: No
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table: %.sesiones_usuarios__%
Last_Errno: 1452
Last_Error: Error 'Cannot add or update a child row: a foreign key constraint fails (`dm_752_dbnor1`.`recursos__`, CONSTRAINT `recursos___ibfk_1` FOREIGN KEY (`id_usuario_creo`) REFERENCES `usuarios__` (`id_usuario`))' on query. Default database: 'dm_752_dbnor1'. Query: 'INSERT INTO recursos__ (id_recurso,id_usuario_encargado,id_usuario_creo,tipo,activo,fecha_creacion,version,eliminado) VALUES (NULL,NULL,1,'sucursal',1,'2015- 03-09 18:00:53',1,0)'
Skip_Counter: 0
Exec_Master_Log_Pos: 627770120
Relay_Log_Space: 830068736
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: 1452
Last_SQL_Error: Error 'Cannot add or update a child row: a foreign key constraint fails (`dm_752_dbnor1`.`recursos__`, CONSTRAINT `recursos___ibfk_1` FOREIGN KEY (`id_usuario_creo`) REFERENCES `usuarios__` (`id_usuario`))' on query. Default database: 'dm_752_dbnor1'. Query: 'INSERT INTO recursos__ (id_recurso,id_usuario_encargado,id_usuario_creo,tipo,activo,fecha_creacion,version,eliminado) VALUES (NULL,NULL,1,'sucursal',1,'2015-03-09 18:00:53',1 ,0)'
Replicate_Ignore_Server_Ids:
Master_Server_Id: 11
答案1
这是 show slave status 输出中的错误:
Last_Error:错误“无法添加或更新子行:查询时外键约束失败(
dm_752_dbnor1
。recursos__
,CONSTRAINTrecursos___ibfk_1
FOREIGN KEY(id_usuario_creo
)REFERENCESusuarios__
(id_usuario
))”。默认数据库:“dm_752_dbnor1”。查询:“INSERT INTO recursos__(id_recurso,id_usuario_encargado,id_usuario_creo,tipo,activo,fecha_creacion,version,eliminado)VALUES(NULL,NULL,1,'sucursal',1,'2015- 03-09 18:00:53',1,0)”
您必须先检查失败的原因。