MySQL系統如何收集統計資訊

chenfeng發表於2017-09-14
一、手動  
執行Analyze table 
innodb和myisam儲存引擎都可以透過執行“Analyze table tablename”來收集表的統計資訊,除非執行計劃不準確,否則不要輕易執行該操作,如果是很大的表該操作會影響表的效能。

二、自動觸發
以下行為會自動觸發統計資訊的收集

1.第一次開啟表的時候
2.表修改的行超過1/6或者20億條時
3.當有新的記錄插入時
4.執行show index from tablename或者執行show table、查詢information_schema.tables\statistics 時


三、開啟引數innodb_stats_on_metadata
當開啟引數innodb_stats_on_metadata後訪問以下表也會觸發統計資訊的收集
在訪問以下表時,innodb表的統計資訊可自動收集
information_schema.TABLES
information_schema.STATISTICS
information_schema.PARTITIONS
information_schema.KEY_COLUMN_USAGE
information_schema.TABLE_CONSTRAINTS
information_schema.REFERENTIAL_CONSTRAINTS
information_schema.table_constraints


引數說明:
Innodb_stats_sample_pages:每次收集統計資訊時取樣的頁數,預設為20
innodb_stats_persistent:預設on,將analyze table產生的統計資訊儲存於磁碟,直至下次analyze table為止,此舉避免了統計資訊動態更新,保證了執行計劃的穩定,對於大表也節省了收集統計資訊的所需資源;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2144962/,如需轉載,請註明出處,否則將追究法律責任。

相關文章