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索引
- MySQL中的統計資訊相關引數介紹MySql
- redis持久化相關引數解釋Redis持久化
- MySQL slow log相關引數解釋MySql
- autotrace explain plan 相關引數解釋AI
- MySQL handler相關狀態引數解釋MySql
- parallel並行度的相關操作、概念、引數解釋Parallel並行
- 【測試】Android Studio 相關下載及引數Android
- [轉帖]Redis相關的核心引數解釋與設定Redis
- MySQL5.7 SYS Schema的效能框架檢視引數解釋MySql框架
- EBS相關日誌和引數
- MySQL環境變數裡關於字符集character_set相關引數的解釋MySql變數
- Linux 核心引數 和 Oracle相關引數調整LinuxOracle
- MYSQL連線相關引數和狀態值詳解MySql
- 【SCRIPT】Oracle統計資訊相關SQLOracleSQL
- Oracle的AMM和ASMM以及相關引數探究OracleASM
- Spark的相關引數配置Spark
- 介面測試 - 引數測試
- 關於修改資料庫引數的測試資料庫
- 【DataGuard】部署Data Guard相關引數詳解
- 介面壓測實踐-壓力測試常見引數解釋說明
- 統計學三大相關係數之Pearson相關係數、Spearman相關係數
- Oracle 統計資訊相關命令彙總Oracle
- GreatSQL統計資訊相關知識點SQL
- linux 跟oracle相關的系統核心引數?LinuxOracle
- 幾項網路安全相關的no引數詳解
- MySQL效能相關引數MySql
- 歸檔相關引數
- PostgreSQL AutoVacuum 相關引數SQL
- 有關引數cursor_sharing=similar的測試MILA
- oracle檢視和更新統計表的資訊Oracle
- Redis-cluster命令 cluster info 引數資訊解釋Redis
- 通俗解釋協方差與相關係數
- MySQL 連線相關引數MySql
- MySQL slow log相關引數MySql
- iframe相關的引數傳遞【Z】
- oracle相關的linux核心引數OracleLinux
- 關於執行計劃裡recursive calls,db block gets和consistent gets引數的解釋BloC