summaryrefslogtreecommitdiff
path: root/storage/innobase/trx/trx0roll.cc
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2018-01-27 19:30:18 +0400
committerSergey Vojtovich <svoj@mariadb.org>2018-01-31 15:18:21 +0400
commit53cc9aa5be63b4dd03aba804aebaa3bd470dab9c (patch)
treef6ceb3cbd4e2b2e16c575e363f583ecdc8837f41 /storage/innobase/trx/trx0roll.cc
parentaf566d8a63f908c76d43957e790e861d944486b0 (diff)
downloadmariadb-git-53cc9aa5be63b4dd03aba804aebaa3bd470dab9c.tar.gz
MDEV-15104 - Remove trx_sys_t::rw_trx_ids
Take snapshot of registered read-write transaction identifiers directly from rw_trx_hash. It immediately saves one trx_sys.mutex lock, reduces size of another critical section protected by this mutex, and makes further optimisations like removing trx_sys_t::serialisation_list possible. Downside of this approach is bigger overhead for view opening, because iterating LF_HASH is more expensive compared to taking snapshot of an array. However for low concurrency overhead difference is negligible, while for high concurrency mutex is much bigger evil. Currently we still take trx_sys.mutex to serialise ReadView creation. This is required to keep serialisation_list ordered by trx->no as well as not to let purge thread to create more recent snapshot while another thread gets suspended during creation of older snapshot. This will become completely mutex free along with serialisation_list removal. Compared to previous implementation removing element from rw_trx_hash and serialisation_list is not atomic. We disregard all possible bad consequences (if there're any) since it will be solved along with serialisation_list removal.
Diffstat (limited to 'storage/innobase/trx/trx0roll.cc')
-rw-r--r--storage/innobase/trx/trx0roll.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/trx/trx0roll.cc b/storage/innobase/trx/trx0roll.cc
index 20244b02964..7e7870f53ce 100644
--- a/storage/innobase/trx/trx0roll.cc
+++ b/storage/innobase/trx/trx0roll.cc
@@ -859,7 +859,7 @@ void trx_rollback_recovered(bool all)
ut_ad(!srv_undo_sources);
ut_ad(srv_fast_shutdown);
discard:
- trx_sys.rw_trx_hash.erase(trx);
+ trx_sys.deregister_rw(trx);
trx_free_at_shutdown(trx);
}
else