MySQL5.7統計資訊更新的相關引數解釋和測試
MySQL版本:5.7.21
統計資訊相關引數如下:
mysql> show global variables like '%stats%';
+--------------------------------------+---------------+
| Variable_name | Value |
+--------------------------------------+---------------+
| innodb_stats_auto_recalc | ON |
| innodb_stats_include_delete_marked | OFF |
| innodb_stats_method | nulls_equal |
| innodb_stats_on_metadata | ON |
| innodb_stats_persistent | OFF |
| innodb_stats_persistent_sample_pages | 20 |
| innodb_stats_sample_pages | 8 |
| innodb_stats_transient_sample_pages | 8 |
| myisam_stats_method | nulls_unequal |
+--------------------------------------+---------------+
9 rows in set (0.01 sec)
引數解釋:
innodb_stats_persistent
非持久化統計資訊開關,該選項設定為ON時候,統計資訊會持久化儲存到磁碟中,而不是存在在記憶體中,
如果是非持久化儲存的(存在記憶體中),相應的統計資訊會隨著伺服器的關閉而丟失,MySQL 5.7中預設為on。
innodb_stats_auto_recalc
是否自動觸發更新持久化儲存的表的統計資訊,僅影響持久化儲存的統計資訊的表,閾值是變化的資料超過錶行數的10%。
當一個表索引統計資訊是持久化儲存的(innodb_stats_auto_recalc設定為ON),並且表中資料變化了超過10%,就會自動更新統計資訊,否則不會自動更新。
innodb_stats_persistent_sample_pages
持久化更新統計資訊時候索引頁的取樣頁數,預設值是20
innodb_stats_transient_sample_pages
非持久化更新統計資訊時候索引頁的取樣頁數,預設值是8
innodb_stats_on_metadata
是否自動更新統計資訊,在統計資訊配置為非持久化的時候生效(innodb_stats_persistent=off),
當設定為ON的時候,InnoDB在執show table status 或者訪問INFORMATION_SCHEMA.TABLES或INFORMATION_SCHEMA.STATISTICS 系統表的時候,會更新非持久化統計資訊(類似於ANALYZE TABLE命令)。
實驗如下:
持久化統計資訊實驗:
innodb_stats_on_metadata=on
innodb_stats_persistent=on
innodb_stats_auto_recalc=on
mysql> use test
Database changed
mysql> set global innodb_stats_persistent=on;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_on_metadata=on;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_auto_recalc=on;
Query OK, 0 rows affected (0.00 sec)
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 0
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 08:39:11
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
建索引:
mysql> alter table chenfeng add index idx_simhash(simhash);
Query OK, 0 rows affected (0.35 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table chenfeng add index idx_contextLength(contextLength);
Query OK, 0 rows affected (0.13 sec)
Records: 0 Duplicates: 0 Warnings: 0
檢視table status:
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 0
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 09:02:16
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
發現Index_length=0,統計資訊沒有自動更新,因為開啟了持久化統計資訊開關innodb_stats_persistent=on,因此必須當一個表中的資料變化了超過10%,才會自動更新統計資訊,否則不會自動更新。
非持久化統計資訊實驗:
mysql> set global innodb_stats_persistent=off;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_on_metadata=on;
Query OK, 0 rows affected (0.00 sec)
加索引:
mysql> alter table chenfeng add index idx_isPush(isPush);
Query OK, 0 rows affected (0.12 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table chenfeng add index idx_noise(noise);
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
檢視table status:
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 65536
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 09:08:13
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.01 sec)
發現Index_length有了值,表中的資料沒有任何變化時也自動更新了統計資訊,因為設定了innodb_stats_on_metadata=on和innodb_stats_persistent=off,innodb_stats_on_metadata當設定為ON的時候,InnoDB在執show table status 或者訪問INFORMATION_SCHEMA.TABLES或INFORMATION_SCHEMA.STATISTICS 系統表的時候,會自動更新非持久化統計資訊。
統計資訊相關引數如下:
mysql> show global variables like '%stats%';
+--------------------------------------+---------------+
| Variable_name | Value |
+--------------------------------------+---------------+
| innodb_stats_auto_recalc | ON |
| innodb_stats_include_delete_marked | OFF |
| innodb_stats_method | nulls_equal |
| innodb_stats_on_metadata | ON |
| innodb_stats_persistent | OFF |
| innodb_stats_persistent_sample_pages | 20 |
| innodb_stats_sample_pages | 8 |
| innodb_stats_transient_sample_pages | 8 |
| myisam_stats_method | nulls_unequal |
+--------------------------------------+---------------+
9 rows in set (0.01 sec)
引數解釋:
innodb_stats_persistent
非持久化統計資訊開關,該選項設定為ON時候,統計資訊會持久化儲存到磁碟中,而不是存在在記憶體中,
如果是非持久化儲存的(存在記憶體中),相應的統計資訊會隨著伺服器的關閉而丟失,MySQL 5.7中預設為on。
innodb_stats_auto_recalc
是否自動觸發更新持久化儲存的表的統計資訊,僅影響持久化儲存的統計資訊的表,閾值是變化的資料超過錶行數的10%。
當一個表索引統計資訊是持久化儲存的(innodb_stats_auto_recalc設定為ON),並且表中資料變化了超過10%,就會自動更新統計資訊,否則不會自動更新。
innodb_stats_persistent_sample_pages
持久化更新統計資訊時候索引頁的取樣頁數,預設值是20
innodb_stats_transient_sample_pages
非持久化更新統計資訊時候索引頁的取樣頁數,預設值是8
innodb_stats_on_metadata
是否自動更新統計資訊,在統計資訊配置為非持久化的時候生效(innodb_stats_persistent=off),
當設定為ON的時候,InnoDB在執show table status 或者訪問INFORMATION_SCHEMA.TABLES或INFORMATION_SCHEMA.STATISTICS 系統表的時候,會更新非持久化統計資訊(類似於ANALYZE TABLE命令)。
實驗如下:
持久化統計資訊實驗:
innodb_stats_on_metadata=on
innodb_stats_persistent=on
innodb_stats_auto_recalc=on
mysql> use test
Database changed
mysql> set global innodb_stats_persistent=on;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_on_metadata=on;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_auto_recalc=on;
Query OK, 0 rows affected (0.00 sec)
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 0
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 08:39:11
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
建索引:
mysql> alter table chenfeng add index idx_simhash(simhash);
Query OK, 0 rows affected (0.35 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table chenfeng add index idx_contextLength(contextLength);
Query OK, 0 rows affected (0.13 sec)
Records: 0 Duplicates: 0 Warnings: 0
檢視table status:
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 0
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 09:02:16
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.00 sec)
發現Index_length=0,統計資訊沒有自動更新,因為開啟了持久化統計資訊開關innodb_stats_persistent=on,因此必須當一個表中的資料變化了超過10%,才會自動更新統計資訊,否則不會自動更新。
非持久化統計資訊實驗:
mysql> set global innodb_stats_persistent=off;
Query OK, 0 rows affected (0.00 sec)
mysql> set global innodb_stats_on_metadata=on;
Query OK, 0 rows affected (0.00 sec)
加索引:
mysql> alter table chenfeng add index idx_isPush(isPush);
Query OK, 0 rows affected (0.12 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> alter table chenfeng add index idx_noise(noise);
Query OK, 0 rows affected (0.20 sec)
Records: 0 Duplicates: 0 Warnings: 0
檢視table status:
mysql> show table status like 'chenfeng' \G
*************************** 1. row ***************************
Name: chenfeng
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0
Avg_row_length: 0
Data_length: 16384
Max_data_length: 0
Index_length: 65536
Data_free: 0
Auto_increment: NULL
Create_time: 2018-06-20 09:08:13
Update_time: NULL
Check_time: NULL
Collation: utf8mb4_general_ci
Checksum: NULL
Create_options:
Comment:
1 row in set (0.01 sec)
發現Index_length有了值,表中的資料沒有任何變化時也自動更新了統計資訊,因為設定了innodb_stats_on_metadata=on和innodb_stats_persistent=off,innodb_stats_on_metadata當設定為ON的時候,InnoDB在執show table status 或者訪問INFORMATION_SCHEMA.TABLES或INFORMATION_SCHEMA.STATISTICS 系統表的時候,會自動更新非持久化統計資訊。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15498/viewspace-2156364/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL索引統計資訊更新相關的引數MySql索引
- redis持久化相關引數解釋Redis持久化
- 【測試】Android Studio 相關下載及引數Android
- [轉帖]Redis相關的核心引數解釋與設定Redis
- 【SCRIPT】Oracle統計資訊相關SQLOracleSQL
- GreatSQL統計資訊相關知識點SQL
- Oracle 統計資訊相關命令彙總Oracle
- pga相關引數
- Spark的相關引數配置Spark
- Redis-cluster命令 cluster info 引數資訊解釋Redis
- 資料字典和固定表統計資訊更新
- 統計學三大相關係數之Pearson相關係數、Spearman相關係數
- MySQL效能相關引數MySql
- PostgreSQL AutoVacuum 相關引數SQL
- mydumper和myloader使用引數解釋
- 介面壓測實踐-壓力測試常見引數解釋說明
- 通俗解釋協方差與相關係數
- 介面測試 - 引數測試
- MySQL 連線相關引數MySql
- 系統設計 相關面試題面試題
- SQL Server 更新統計資訊SQLServer
- 大資料測試 - 相關性評估大資料
- JSR規範,系統引數測試大全JS
- Linux檢視相關係統資訊Linux
- 微軟正在測試2019 Win10更新五月版18362.263更新:解決工作列相關Bug微軟Win10
- java 執行緒池的初始化引數解釋和引數設定Java執行緒
- pg中與執行計劃相關的配置(ENABLE_*)引數
- 基於Python的滲透測試資訊收集系統的設計和實現Python
- MySQL change buffer介紹和相關引數調整建議MySql
- 小白快速學測試:用古代成語通俗易懂地解釋軟體測試相關知識點
- 介面測試並不只是測試引數和返回值
- 解讀數倉中的資料物件及相關關係物件
- ab壓力測試命令及引數詳解
- 面試題:一道關於解構賦值和引數預設值的程式設計題面試題賦值程式設計
- mysql relay log相關引數說明MySql
- [20191204]hugepage相關引數含義.txt
- Oracle安裝相關Linux引數(轉)OracleLinux
- openGauss執行緒池相關引數執行緒