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
NAMEFile name and line number of the mutex implementation. Remember that this information depends on your InnoDB/XtraDB version.
CREATE_FILE
CREATE_LINE
OS_WAITS

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.