Bug #99440 | Threads of MTS Slave randomly stuck | ||
---|---|---|---|
Submitted: | 5 May 2020 7:16 | Modified: | 3 Dec 2020 13:37 |
Reporter: | Mershad Irani | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server: Replication | Severity: | S2 (Serious) |
Version: | 5.7.26 | OS: | Linux |
Assigned to: | CPU Architecture: | x86 | |
Tags: | logical_clock |
[5 May 2020 7:16]
Mershad Irani
[5 May 2020 7:19]
Mershad Irani
Details of Troubleshooting
Attachment: bug_99440_details.txt (text/plain), 16.12 KiB.
[5 May 2020 13:44]
MySQL Verification Team
Hi, Have you tried reproducing this on the latest 5.7? or 8.0? thanks Bogdan
[6 May 2020 13:37]
MySQL Verification Team
Hi, I am unable to reproduce this on 5.7.30. Kind regards Bogdan
[7 May 2020 10:44]
MySQL Verification Team
Repeated on 5.7.28...
Attachment: bug99440_5.7.28_outputs.txt (text/plain), 103.79 KiB.
[7 May 2020 11:33]
MySQL Verification Team
Repeated on 5.7.30...
Attachment: bug99440_5.7.30_outputs.txt (text/plain), 137.56 KiB.
[7 May 2020 11:36]
MySQL Verification Team
easier to repeat with innodb_lock_wait_timeout=1
[7 May 2020 12:46]
MySQL Verification Team
also affects 8.0.20
Attachment: bug99440_8.0.20_outputs.txt (text/plain), 208.65 KiB.
[24 Sep 2020 7:48]
Venkatesh Prasad Venugopal
Looks like all the below bugs are duplicates of each other. Bug #87796 Commit_order_manager can't terminate MTS worker properly when deadlock happens Bug #89247 Deadlock with MTS when slave_preserve_commit_order = ON. Bug #95249 stop slave permanently blocked Bug #99440 Threads of MTS Slave randomly stuck Here is the root cause for the bug. When --slave-preserve-commit-order is enabled on slave and if the waiting thread has locked the rows which are needed by the thread executing the previous transaction(as per their order in the relay log), then the innodb deadlock detection algorithm detects the deadlock between workers and will ask the waiting thread to rollback (only if its sequence number is lesser than that of the waiting thread). When this happens, the waiting thread wakes up from the cond_wait(SPCO) and it gets to know that it was asked to rollback by its preceding transaction as it was holding a lock that is needed by the other transaction to progress. It then rolls back its transaction so that the the preceding transaction can be committed and retries the transaction. The above logic sometimes caused the worker thread to miss the signals resulting in the replica server to hang. One of such hang is mentioned below. Consider a replica server which is configured with slave_parallel_workers=3, slave_parallel_type=LOGICAL_CLOCK, slave_preserve_commit_order=1 and slave_transaction_retries=0. When MTS is enabled, it is quite possible that workers execute out of order causing the below state. Worker 1 - Processing the events of Transaction T1 Worker 2 - Executed Transaction T2 and is waiting for T1 to commit. Worker 3 - Processing the events of Transaction T3 1. If T1 and T2 are modifying same rows in InnodB, then the worker 1 detects deadlock and asks worker 2 to rollback by signalling. 2. Worker 2 wakes up from the cond_wait. It gets to know that it was asked to roll back by the other transaction and returns with an error. 3. Worker 2 rolls back the transaction and comes to the retry part of the code and checks the value of slave_transaction_retries. Since it is 0, it returns from the handle_slave_worker loop and enters the error handling part. 4. As part of error handling, Worker 2 notifies the co-ordinator that it is exiting, and then calls report_rollback() function to unregister itself from the SPCO queue. 5. While executing report_rollback(), Worker 2 will again enter wait_for_its_turn(). But before entering the wait, it checks the commit_order_deadlock flag. Since the flag is already set, Worker2 immediately returns from the function with error. 6. Co-ordinator thread gets this information and sets the rli->abort_slave=1 to stop replication and waits till all workers exit. 7. Worker 2 exits. There is no worker 2 from here onwards. Now the status is, Worker 1 - Processing the events of Transaction T1 Worker 2 - Not running. Worker 3 - Processing the events of Transaction T3 8. Now the worker 1 proceeds and executes the transaction and enters the Commit_order_manager::wait_for_its_turn. 9. Worker 1 finds out that the previous worker(Worker 2) failed because of an error. 10. Worker 1 signals next transaction/worker to proceed. 11. Worker 3 executes the transaction and enters the Commit_order_manager::wait_for_its_turn. 12. Worker 1 rolls back the transaction and eventually exits. 13. There will be no one to signal Worker 3 and thus waits forever. This resulted in a system hang as the co-ordinator thread will be waiting for the worker thread to finish and the worker thread will be waiting for the signal to proceed with the commit. mysql> show processlist; +----+-------------+-----------------+------+---------+------+-----------------------------------------+ | Id | User | Host | db | Command | Time | State | Info | Rows_sent | Rows_examined | +----+-------------+-----------------+------+---------+------+-----------------------------------------+ | 2 | root | localhost:55708 | test | Query | 0 | starting | show processlist | 0 | 0 | | 3 | system user | | NULL | Connect | 107 | Waiting for master to send event | NULL | 0 | 0 | | 4 | system user | | NULL | Connect | 77 | Waiting for workers to exit | NULL | 0 | 0 | | 7 | system user | | NULL | Connect | 84 | Waiting for preceding transaction to commit | NULL | 0 | 0 | +----+-------------+-----------------+------+---------+------+-----------------------------------------+
[24 Sep 2020 7:54]
Venkatesh Prasad Venugopal
Contributed patch on top of 5.7.31 (*) I confirm the code being submitted is offered under the terms of the OCA, and that I am authorized to contribute it.
Contribution: 0001-MTS-deadlock-with-slave_preserve_commit_order.patch (text/x-patch), 37.06 KiB.
[24 Sep 2020 8:03]
MySQL Verification Team
Thank you, Venu for the contribution. regards, Umesh
[29 Sep 2020 5:20]
Venkatesh Prasad Venugopal
Contributed patch on top of 8.0.21 (*) I confirm the code being submitted is offered under the terms of the OCA, and that I am authorized to contribute it.
Contribution: 0001-MTS-deadlock-with-slave_preserve_commit_order-8.0.patch (text/x-patch), 37.04 KiB.
[3 Dec 2020 13:37]
Srinivasarao Ravuri
Closing this bug as a duplicate to https://bugs.mysql.com/bug.php?id=87796