cetus/doc/mysql-xa-bug.md
2018-03-06 18:14:13 +08:00

2.1 KiB
Raw Blame History

MySQL xa事务问题说明

发现的问题

cetus测试过程中发现MySQL的xa 事务有bugMySQL版本为5.7.21。测试方法为开启一个模拟银行账户转账的测试任务随机kill -9 杀掉后端mysql实例并重启实例。发现有两种悬挂事务的情况

问题的现象

1、只有主库存在悬挂事务

mysql主库已接受到xa commit通知xa commit未完成前kill -9 杀掉mysql主库,再启动mysql主库主库出现悬挂事务而从库该分布式事务已提交。主库此时需要执行xa commit语句提交分布式事务这个操作同步到从库后会导致从库sql应用进程报错提示找不到该分布式事务。

2、只有从库出现悬挂事务。

cetus向后端分片发送xa prepare分片mysql主库接收到xa preparexa prepare未完成前kill -9 杀掉mysql主库再启动mysql主库用xa事务已回滚主库未出现悬挂事务从库出现悬挂事务。这种情况下从库需要回滚xa事务才能保证数据的一致性。

以上两种情况主库的xa事务状态跟binlog记录的事务状态不一致。在mysql官方文档找到解释mysql异常关闭有可能导致数据库状态和binlog不一致。这些bug在非正常关闭mysql时才出现正常关闭mysql不会出现这个问题。如果出现xa事务悬挂可以用Cetus xa悬挂处理工具自动处理。

官方的描述

XA is not fully resilient to an unexpected halt with respect to the binary log (on the master). If there is an unexpected halt before XA PREPARE, between XA PREPARE and XA COMMIT (or XA ROLLBACK), or after XA COMMIT (or XA ROLLBACK), the server and binary log are correctly recovered and taken to a consistent state. However, if there is an unexpected halt in the middle of the execution of one of these statements, the server may not be able to recover to a correct state, leaving the server and the binary log in an inconsistent state. 已提交至官方的xa bug XA prepare is logged ahead of engine prepare https://bugs.mysql.com/bug.php?id=76233