我正在使用 MySQL 运行两个 SymmetricDS 实例。
我必须启动和停止同步,为此我使用:
update sym_channel set enabled=0/1;
由于某种原因,当它们同步(enabled=1
)时,我收到以下错误:
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot add or update a child row: a foreign key constraint fails (`test_db`.`defectstdreference`, CONSTRAINT `Relationship72` FOREIGN KEY (`improve_notice_doc_id`, `defect_id`, `client_id`) REFERENCES `improvementnoticedefect` (`doc_id`, `defect_id`, `client)
然而,在某些时候同步成功完成,所以所有这些异常都会显着减慢进程。
你知道是什么原因造成的吗?