diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-13 06:02:08 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-13 10:13:14 +0400 |
commit | 20928e2e960454ff7f9dee0094a464b1a6fdb195 (patch) | |
tree | 05773ee895214cedb742e2631302c29dd772edf5 /include/thread_pool_priv.h | |
parent | aa6058469e2fbf9260e9b8b80ab4975ffa4e53ab (diff) | |
download | mariadb-git-20928e2e960454ff7f9dee0094a464b1a6fdb195.tar.gz |
MDEV-14984 - regression in connect performance
Removed redundant plugin_thdvar_cleanup() from end_connection(): called by
THD::free_connection(), which always follows end_connection().
Saves at least one lock(LOCK_plugin) and one
rdlock(LOCK_system_variables_hash).
Benchmarked on a 2socket/20core/40threads Broadwell system using sysbench
connect brencmark @40 threads (with select 1 disabled).
10.2 shows moderate improvement: 136219.93 -> 137766.31 CPS.
10.3 is improvement is somewhat better: 93018.29 -> 101379.77 CPS.
Also backported MyRocks memory leak fix from 10.4, which turned out to
be unrelated.
Diffstat (limited to 'include/thread_pool_priv.h')
-rw-r--r-- | include/thread_pool_priv.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/thread_pool_priv.h b/include/thread_pool_priv.h index afa2848ae88..79cfb6b4040 100644 --- a/include/thread_pool_priv.h +++ b/include/thread_pool_priv.h @@ -98,8 +98,6 @@ void mysql_audit_release(THD *thd); bool thd_is_connection_alive(THD *thd); /* Close connection with possible error code */ void close_connection(THD *thd, uint errcode); -/* End the connection before closing it */ -void end_connection(THD *thd); /* Decrement connection counter */ void dec_connection_count(); /* Destroy THD object */ |