summaryrefslogtreecommitdiff
path: root/sql/mysqld.h
diff options
context:
space:
mode:
authorThayumanavar <thayumanavar.x.sachithanantha@oracle.com>2013-02-05 11:06:38 +0530
committerThayumanavar <thayumanavar.x.sachithanantha@oracle.com>2013-02-05 11:06:38 +0530
commite15a51363dec2c7b92fef406190e33dbb453bad3 (patch)
tree1d976f005082d5fbe1c27e1adbadaf7cbab3cc1e /sql/mysqld.h
parentf8eea3b3c44d81bc62021f05ec75dda491325f4d (diff)
downloadmariadb-git-e15a51363dec2c7b92fef406190e33dbb453bad3.tar.gz
BUG#16196591 - CLIENTS CANNOT CONNECT TO MYSQL
PROBLEM: When large number of connections are continuously made with wait_timeout of 600 seconds for some hours, some connections remain after wait_timeout expired and also new connections get struck under the configuration and the scenario reported in bug#16196591. FIX: The cause of this bug is the issue identified and fixed in the BUG#16088658 in 5.6.Also LOCK_thread_count contention issue fixed in BUG#15921866 in 5.6 need to be in 5.5 as well. Since the issue is not reproducible, it has been verified at customer configuration the issue could not be reproduced after a 48-hour test with a non-debug build which includes the above two fixes backported.
Diffstat (limited to 'sql/mysqld.h')
-rw-r--r--sql/mysqld.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/mysqld.h b/sql/mysqld.h
index 632bcfe975f..2857094dba3 100644
--- a/sql/mysqld.h
+++ b/sql/mysqld.h
@@ -257,6 +257,7 @@ extern PSI_mutex_key key_RELAYLOG_LOCK_index;
extern PSI_rwlock_key key_rwlock_LOCK_grant, key_rwlock_LOCK_logger,
key_rwlock_LOCK_sys_init_connect, key_rwlock_LOCK_sys_init_slave,
key_rwlock_LOCK_system_variables_hash, key_rwlock_query_cache_query_lock;
+extern PSI_mutex_key key_LOCK_thread_created;
#ifdef HAVE_MMAP
extern PSI_cond_key key_PAGE_cond, key_COND_active, key_COND_pool;