Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
10.6
Description
The fix of MDEV-24671 introduced a serious performance regression that is observable at 32 concurrent connections.
My current hypothesis based on some initial investigation is that the changed sizeof(trx->lock) caused an increase of cache misses.
Attachments
Issue Links
- causes
-
MDEV-25016 Race condition between lock_sys_t::cancel() and page split or merge
-
- Closed
-
-
MDEV-25371 Potential hang in wsrep_is_BF_lock_timeout()
-
- Closed
-
-
MDEV-26883 InnoDB hang due to table lock conflict
-
- Closed
-
- is caused by
-
MDEV-24671 Assertion failure in lock_wait_table_reserve_slot()
-
- Closed
-
- relates to
-
MDEV-25016 Race condition between lock_sys_t::cancel() and page split or merge
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is caused by |
Status | Open [ 1 ] | In Progress [ 3 ] |
issue.field.resolutiondate | 2021-02-05 17:15:44.0 | 2021-02-05 17:15:44.751 |
Fix Version/s | 10.6.0 [ 24431 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Resolution | Fixed [ 1 ] | |
Status | Closed [ 6 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Fix Version/s | 10.6 [ 24028 ] | |
Fix Version/s | 10.6.0 [ 24431 ] |
Link |
This issue relates to |
issue.field.resolutiondate | 2021-03-02 12:41:36.0 | 2021-03-02 12:41:36.866 |
Fix Version/s | 10.6.0 [ 24431 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Link |
This issue causes |
Link |
This issue causes |
Link |
This issue causes |
Workflow | MariaDB v3 [ 118851 ] | MariaDB v4 [ 158862 ] |
Reducing sizeof(trx_lock_t) did not help (I did it anyway), but some refactoring to reduce the hold time of lock_sys.mutex and lock_sys.wait_mutex seems to have done the trick. Thanks to axel for helping with the analysis and validation!