Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
5.13.0
-
None
Description
There is an read/write lock guarding the cleanup task and other jdbc ops in the jdbc message store.
Typically the read lock is obtained before the connection from the jdbc connection pool.
In the case of xa transactions, the connection is obtained before the read lock, in transactioncontext.begin, leaving a window between which readlock holders can be blocked pending the connection release.
If there is a cleanup (and write lock) request before release, the xa transaction cannot obtain a read lock and we are stuck.
Disabling the cleanup task avoids this issue, but that is only an option if there are no durable subs or if the durable sub cleanup task can be tackled through db admin.
Attachments
Issue Links
- is broken by
-
AMQ-2551 Locking issue with MySQL InnoDB
- Resolved