Mysql 事务挂起-服务器重启后仍然存在

Mysql 事务挂起-服务器重启后仍然存在
select * from INFORMATION_SCHEMA.INNODB_TRX\G;
*************************** 1. row ***************************
                    trx_id: 41844623
                 trx_state: RUNNING
               trx_started: 2016-11-23 15:40:42
     trx_requested_lock_id: NULL
          trx_wait_started: NULL
                trx_weight: 71
       trx_mysql_thread_id: 0
                 trx_query: NULL
       trx_operation_state: NULL
         trx_tables_in_use: 0
         trx_tables_locked: 6
          trx_lock_structs: 7
     trx_lock_memory_bytes: 1136
           trx_rows_locked: 1
         trx_rows_modified: 64
   trx_concurrency_tickets: 0
       trx_isolation_level: REPEATABLE READ
         trx_unique_checks: 1
    trx_foreign_key_checks: 1
trx_last_foreign_key_error: NULL
 trx_adaptive_hash_latched: 0
 trx_adaptive_hash_timeout: 10000
          trx_is_read_only: 0
trx_autocommit_non_locking: 0

有没有办法通过 trx_id 终止 MySQL 事务?或者以某种方式清除它?此事务没有关联的 MySQL 线程 ID 或查询 ID,并且在服务器重启后仍然存在。

答案1

这是一个分布式事务。它正在等待提交或回滚。

http://dev.mysql.com/doc/refman/5.7/en/xa-statements.html

要查看待处理的分布式事务,请转到 MySQL 命令提示符并输入:

XA 恢复;

要回滚事务,请从 XA Recover 输出中获取数据列中的数据。因此,如果数据列显示“X12345”:

XA 回滚‘X12345’

答案2

尝试此修复。 使用:

mysql> xa recover convert xid;

然后使用以下命令提交它们:

mysql> xa commit 0x01020304627175616C;

相关内容