MySQL复制对我来说有点新鲜,但看起来我已经开始工作直到我不理解的一些错误。
一些背景知识:我将所有数据库(通过SSL)从MySQL 5.6.22服务器复制到MariaDB 10.0.15服务器,除了作为主服务器的专用从服务器之外,它不做任何事情。 。它执行一些查询但随后遇到Magento数据库的更新问题。如果我跳过此查询,它将遇到类似的查询,导致相同的错误。
这是奴隶状态给我的错误:
无法在表magento_db.log_visitor上执行Update_rows事件;专栏' visitor_id'不能为null,Error_code:1048;无法在' log_visitor'中找到记录,Error_code:1032;专栏' visitor_id'不能为null,Error_code:1048;处理程序错误HA_ERR_KEY_NOT_FOUND;事件的主日志mysql-bin.000121,end_log_pos 7656
Exec_Master_Log_Pos是7215,但我认为这是不相关的,错误发生在下一个查询(/ transaction block)中。
这是(详细的)mysqlbinlog:
的一部分
COMMIT/*!*/;
# at 7215
#150330 2:19:45 server id 1 end_log_pos 7292 CRC32 0xf975481b Query thread_id=25 exec_time=0 error_code=0
SET TIMESTAMP=1427674785/*!*/;
BEGIN
/*!*/;
# at 7292
# at 7358
#150330 2:19:45 server id 1 end_log_pos 7358 CRC32 0x0312921e Table_map: `magento_db`.`log_url_info` mapped to number 2528
#150330 2:19:45 server id 1 end_log_pos 7497 CRC32 0xe3704a8b Write_rows: table id 2528 flags: STMT_END_F
### INSERT INTO `magento_db`.`log_url_info`
### SET
### @1=12534083 /* LONGINT meta=0 nullable=0 is_null=0 */
### @2='http://www.myshop.com/catalog/category/view/id/29?cat=31&color=22&dir=desc&order=position&price=9-' /* VARSTRING(765) meta=765 nullable=1 is_null=0 */
### @3=NULL /* VARSTRING(765) meta=765 nullable=1 is_null=1 */
# at 7497
# at 7565
#150330 2:19:45 server id 1 end_log_pos 7565 CRC32 0x340012cd Table_map: `magento_db`.`log_visitor` mapped to number 2513
#150330 2:19:45 server id 1 end_log_pos 7656 CRC32 0xd3d2e26f Update_rows: table id 2513 flags: STMT_END_F
### UPDATE `magento_db`.`log_visitor`
### WHERE
### @1=3036630 /* LONGINT meta=0 nullable=0 is_null=0 */
### SET
### @2='deq65v4ks7tgahp2lvih8s74j1' /* VARSTRING(192) meta=192 nullable=0 is_null=0 */
### @3=1427667585 /* TIMESTAMP(0) meta=0 nullable=1 is_null=0 */
### @4=1427667585 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
### @5=12534083 /* LONGINT meta=0 nullable=0 is_null=0 */
### @6=1 /* SHORTINT meta=0 nullable=0 is_null=0 */
# at 7656
# at 7714
#150330 2:19:45 server id 1 end_log_pos 7714 CRC32 0xc1eee09b Table_map: `magento_db`.`log_url` mapped to number 2529
#150330 2:19:45 server id 1 end_log_pos 7770 CRC32 0xf7bcccad Write_rows: table id 2529 flags: STMT_END_F
### INSERT INTO `magento_db`.`log_url`
### SET
### @1=12534083 /* LONGINT meta=0 nullable=0 is_null=0 */
### @2=3036630 /* LONGINT meta=0 nullable=1 is_null=0 */
### @3=1427667585 /* TIMESTAMP(0) meta=0 nullable=0 is_null=0 */
# at 7770
#150330 2:19:45 server id 1 end_log_pos 7801 CRC32 0x51775dd4 Xid = 29537
COMMIT/*!*/;
# at 7801
#150330 2:19:53 server id 1 end_log_pos 7886 CRC32 0xd6d724c7 Query thread_id=26 exec_time=0 error_code=0
SET TIMESTAMP=1427674793/*!*/;

visitor_id
是在phpMyAdmin中显示的第一列,也是在我执行SHOW COLUMNS FROM log_visitor;
时,所以我猜这个列映射到' @ 1' (无法找到如何验证这一点)。但是当我用visitor_id 3036630搜索记录时,它只找到一个。请注意,这不是由于外部查询,当我再次执行START SLAVE;
时,它会挂起相同的错误。此外,我尝试在奴隶上运行mysql_upgrade,但除了一些警告,这没有解决任何问题。
底线是:我不知道如何解释这个错误,我可能会查看错误的查询?我觉得不应该是一个错误,也许是一些不相容的东西?
欢迎任何建议!
编辑:根据要求,一个SHOW CREATE TABLE,在执行diff之后在两个服务器上看起来都是一样的,除了增量索引:
CREATE TABLE `log_visitor` (
`visitor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID',
`session_id` varchar(64) NOT NULL COMMENT 'Session ID',
`first_visit_at` timestamp NULL DEFAULT NULL COMMENT 'First Visit Time',
`last_visit_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last Visit Time',
`last_url_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Last URL ID',
`store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
PRIMARY KEY (`visitor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3036631 DEFAULT CHARSET=utf8 COMMENT='Log Visitors Table'

通过删除所有数据库(我已多次尝试)创建了slave,在获取主服务器上的读锁定后将所有数据库执行mysqldump,将其导入从服务器,然后在右侧启动slave位置。它做了一些查询,当我看时,它已经出现了像这里描述的更新错误。
答案 0 :(得分:1)
好像我找到了解决方案。我曾经为主人复制/调整了一个很好的my.cnf,其中包括MySQL 5.6设置" binlog_row_image = MINIMAL"。这会导致binlog跳过UPDATE的SET子句中的列,这些列已经在WHERE子句中并且未更改。 MariaDB似乎没有实现此设置,默认的binlog ROW格式需要所有字段的值。