Information Schema INNODB_MUTEXES Table

You are viewing an old version of this article. View the current version here.
MariaDB starting with 10.1.3

The Information Schema INNODB_MUTEXES table was added in MariaDB 10.1.3

The INNODB_MUTEXES table monitors mutex and rw locks waits. It has the following columns:

ColumnDescription
NAMEName of the lock, as it appears in the source code.
CREATE_FILEFile name of the mutex implementation.
CREATE_LINELine number of the mutex implementation.
OS_WAITSHow many times the mutex occurred.

Remember that CREATE_FILE and CREATE_LINE depend on your InnoDB/XtraDB version.

The SHOW ENGINE INNODB STATUS statement provides similar information.

Examples

SELECT * FROM INNODB_MUTEXES;
+------------------------------+---------------------+-------------+----------+
| NAME                         | CREATE_FILE         | CREATE_LINE | OS_WAITS |
+------------------------------+---------------------+-------------+----------+
| &dict_sys->mutex             | dict0dict.cc        |         989 |        2 |
| &buf_pool->flush_state_mutex | buf0buf.cc          |        1388 |        1 |
| &log_sys->checkpoint_lock    | log0log.cc          |        1014 |        2 |
| &block->lock                 | combined buf0buf.cc |        1120 |        1 |
+------------------------------+---------------------+-------------+----------+

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.