Converting HEAP to MyISAM in SHOW PROCESSLIST

来源:互联网 发布:航天金税盘软件下载 编辑:程序博客网 时间:2024/05/21 14:57


http://www.mysqlab.net/knowledge/kb/detail/topic/myisam/id/6149

Discussion

The state "converting HEAP to MyISAM" happens when a query that needs a temporary table is converting from an in-memory temporary table to a disk-based temporary table.

 

MySQL uses memory-based temporary tables up to the size limit set by the tmp_table_size system variable. If a query needs a temporary table larger than this it will be converted to a disk-based temporary table using the MyISAM storage engine.

 

GROUP BY queries and ORDER BY queries that can't use an index for the ordering are the most common causes of temporary table creation.

 

Solution

You could consider raising the per-session value of tmp_table_size if you have sufficient memory. Use theSHOW GLOBAL STATUS statement to see the value of the Created_tmp_tables variable. It will show the total number of temporary tables that have been created:

SHOW GLOBAL STATUS LIKE 'Created_tmp_tables';+--------------------+-------+| Variable_name      | Value |+--------------------+-------+| Created_tmp_tables | 13    | +--------------------+-------+

The

Created_tmp_disk_tables

variable shows how many of those have been converted to disk temporary tables:

 

SHOW GLOBAL STATUS LIKE 'Created_tmp_disk_tables';+-------------------------+-------+| Variable_name           | Value |+-------------------------+-------+| Created_tmp_disk_tables | 1     | +-------------------------+-------+

 

 

调2个参数

tmp_table_size和max_heap_table_size ============> converting HEAP to MyISAM


原文地址:http://7567567.blog.51cto.com/706378/630036



0 0