Skip to content

Latest commit

 

History

History
68 lines (56 loc) · 2.66 KB

File metadata and controls

68 lines (56 loc) · 2.66 KB

The InnoDB Storage Engine

深入系列: InnoDB存储引擎

Table of Contents
目录
部分技巧

-- 查询客户端连接(服务器线程)
SHOW FULL PROCESSLIST;

-- 查询InnoDB状态
SHOW ENGINE INNODB STATUS;

-- 查询理论上的MySQL内存最大使用量
SELECT ( @@key_buffer_size
+ @@query_cache_size
+ @@innodb_buffer_pool_size
+ @@innodb_log_buffer_size
+ @@max_connections * (
    @@read_buffer_size
    + @@read_rnd_buffer_size
    + @@sort_buffer_size
    + @@join_buffer_size
    + @@binlog_cache_size
    + @@thread_stack
    + @@tmp_table_size )
) / (1024 * 1024 * 1024) AS MAX_MEMORY_GB;
相关链接