Spec-Zone .ru
спецификации, руководства, описания, API

13.7.5.16. SHOW ENGINE Syntax

SHOW ENGINE engine_name {STATUS | MUTEX}

SHOW ENGINE displays operational information about a storage engine. The following statements currently are supported:

SHOW ENGINE INNODB STATUSSHOW ENGINE INNODB MUTEXSHOW ENGINE {NDB | NDBCLUSTER} STATUSSHOW ENGINE PERFORMANCE_SCHEMA STATUS

SHOW ENGINE INNODB STATUS displays extensive information from the standard InnoDB Monitor about the state of the InnoDB storage engine. For information about the standard monitor and other InnoDB Monitors that provide information about InnoDB processing, see Section 14.2.4.4, "SHOW ENGINE INNODB STATUS and the InnoDB Monitors".

SHOW ENGINE INNODB MUTEX displays InnoDB mutex statistics. Statement output has the following columns:

Information from this statement can be used to diagnose system problems. For example, large values of spin_waits and spin_rounds may indicate scalability problems.

Use SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal operation of the Performance Schema code:

mysql> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\G...*************************** 3. row ***************************  Type: performance_schema  Name: events_waits_history.row_sizeStatus: 76*************************** 4. row ***************************  Type: performance_schema  Name: events_waits_history.row_countStatus: 10000*************************** 5. row ***************************  Type: performance_schema  Name: events_waits_history.memoryStatus: 760000...*************************** 57. row ***************************  Type: performance_schema  Name: performance_schema.memoryStatus: 26459600...

This statement is intended to help the DBA understand the effects that different Performance Schema options have on memory requirements.

Name values consist of two parts, which name an internal buffer and a buffer attribute, respectively. Interpret buffer names as follows:

Buffer attributes have these meanings:

In some cases, there is a direct relationship between a Performance Schema configuration parameter and a SHOW ENGINE value. For example, events_waits_history_long.row_count corresponds to performance_schema_events_waits_history_long_size. In other cases, the relationship is more complex. For example, events_waits_history.row_count corresponds to performance_schema_events_waits_history_size (the number of rows per thread) multiplied by performance_schema_max_thread_instances ( the number of threads).

SHOW ENGINE NDB STATUS. If the server has the NDB storage engine enabled, SHOW ENGINE NDB STATUS displays cluster status information such as the number of connected data nodes, the cluster connectstring, and cluster binlog epochs, as well as counts of various Cluster API objects created by the MySQL Server when connected to the cluster. Sample output from this statement is shown here:

mysql> SHOW ENGINE NDB STATUS;+------------+-----------------------+--------------------------------------------------+| Type       | Name                  | Status                                           |+------------+-----------------------+--------------------------------------------------+| ndbcluster | connection            | cluster_node_id=7,  connected_host=192.168.0.103, connected_port=1186, number_of_data_nodes=4,  number_of_ready_data_nodes=3, connect_count=0                                         || ndbcluster | NdbTransaction        | created=6, free=0, sizeof=212                    || ndbcluster | NdbOperation          | created=8, free=8, sizeof=660                    || ndbcluster | NdbIndexScanOperation | created=1, free=1, sizeof=744                    || ndbcluster | NdbIndexOperation     | created=0, free=0, sizeof=664                    || ndbcluster | NdbRecAttr            | created=1285, free=1285, sizeof=60               || ndbcluster | NdbApiSignal          | created=16, free=16, sizeof=136                  || ndbcluster | NdbLabel              | created=0, free=0, sizeof=196                    || ndbcluster | NdbBranch             | created=0, free=0, sizeof=24                     || ndbcluster | NdbSubroutine         | created=0, free=0, sizeof=68                     || ndbcluster | NdbCall               | created=0, free=0, sizeof=16                     || ndbcluster | NdbBlob               | created=1, free=1, sizeof=264                    || ndbcluster | NdbReceiver           | created=4, free=0, sizeof=68                     || ndbcluster | binlog                | latest_epoch=155467, latest_trans_epoch=148126,  latest_received_binlog_epoch=0, latest_handled_binlog_epoch=0,  latest_applied_binlog_epoch=0                                                         |+------------+-----------------------+--------------------------------------------------+

The rows with connection and binlog in the Name column were added to the output of this statement in MySQL 5.1. The Status column in each of these rows provides information about the MySQL server's connection to the cluster and about the cluster binary log's status, respectively. The Status information is in the form of comma-delimited set of name/value pairs.

The connection row's Status column contains the name/value pairs described in the following table.

Name Value
cluster_node_id The node ID of the MySQL server in the cluster
connected_host The host name or IP address of the cluster management server to which the MySQL server is connected
connected_port The port used by the MySQL server to connect to the management server (connected_host)
number_of_data_nodes The number of data nodes configured for the cluster (that is, the number of [ndbd] sections in the cluster config.ini file)
number_of_ready_data_nodes The number of data nodes in the cluster that are actually running
connect_count The number of times this mysqld has connected orreconnected to cluster data nodes

The binlog row's Status column contains information relating to MySQL Cluster Replication. The name/value pairs it contains are described in the following table.

Name Value
latest_epoch The most recent epoch most recently run on this MySQL server (that is, the sequence number of the most recent transaction run on the server)
latest_trans_epoch The most recent epoch processed by the cluster's data nodes
latest_received_binlog_epoch The most recent epoch received by the binlog thread
latest_handled_binlog_epoch The most recent epoch processed by the binlog thread (for writing to thebinlog)
latest_applied_binlog_epoch The most recent epoch actually written to the binlog

See Section 17.6, "MySQL Cluster Replication", for more information.

The remaining rows from the output of SHOW ENGINE NDB STATUS which are most likely to prove useful in monitoring the cluster are listed here by Name:

Note

SHOW ENGINE NDB STATUS returns an empty result if no operations involving NDB tables have been performed during the current session by the MySQL client accessing the SQL node on which this statement is run.