MySQL中Redo Log相關的重要參數總結

 

參數介紹html

 

下面介紹、總結一下MySQL的Redo Log相關的幾個重要參數:innodb_log_buffer_size、innodb_log_file_size、innodb_log_files_in_groupmysql

 

innodb_log_buffer_sizesql

 

 

Command-Line Format數據庫

--innodb-log-buffer-size=#緩存

System Variable服務器

innodb_log_buffer_sizeapp

Scopeless

Globalide

Dynamic性能

Yes

SET_VAR Hint Applies

No

Type

Integer

Default Value

16777216

Minimum Value

1048576

Maximum Value

4294967295

 

The size in bytes of the buffer that InnoDB uses to write to the log files on disk. The default is 16MB. A large log buffer enables large transactions to run without the need to write the log to disk before the transactions commit. Thus, if you have transactions that update, insert, or delete many rows, making the log buffer larger saves disk I/O. For related information, see Memory Configuration, and Section 8.5.4, 「Optimizing InnoDB Redo Logging」. For general I/O tuning advice, see Section 8.5.8, 「Optimizing InnoDB Disk I/O」.

 

參數用來設置緩存還未提交的事務的緩衝區的大小,通俗來講也就是日誌緩衝區的大小。通常默認值16MB是夠用的,但若是事務之中含有blog/text等大字段,這個緩衝區會被很快填滿會引發額外的IO負載。可經過查看innodb_log_waits狀態,若是不爲0的話,則須要增長innodb_log_buffer_size。

 

mysql> show variables like 'innodb_log_buffer_size';
+------------------------+----------+
| Variable_name          | Value    |
+------------------------+----------+
| innodb_log_buffer_size | 16777216 |
+------------------------+----------+
1 row in set (0.00 sec)
 
mysql> show status like 'innodb_log_waits';
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| Innodb_log_waits | 0     |
+------------------+-------+
1 row in set (0.00 sec)
 
mysql>

 

 

innodb_log_file_size

 

參數innodb_log_file_size用於設定MySQL日誌組中每一個日誌文件的大小。此參數是一個全局的靜態參數,不能動態修改。

 

mysql> show variables like 'innodb_log_file_size';
+----------------------+----------+
| Variable_name        | Value    |
+----------------------+----------+
| innodb_log_file_size | 50331648 |
+----------------------+----------+
1 row in set (0.02 sec)

 

官方文檔關於參數innodb_log_file_size的介紹以下:

 

 

Command-Line Format

--innodb-log-file-size=#

System Variable

innodb_log_file_size

Scope

Global

Dynamic

No

SET_VAR Hint Applies

No

Type

Integer

Default Value

50331648

Minimum Value

4194304

Maximum Value

512GB / innodb_log_files_in_group

 

The size in bytes of each log file in a log group. The combined size of log files (innodb_log_file_size * innodb_log_files_in_group) cannot exceed a maximum value that is slightly less than 512GB. A pair of 255 GB log files, for example, approaches the limit but does not exceed it. The default value is 48MB.

Generally, the combined size of the log files should be large enough that the server can smooth out peaks and troughs in workload activity, which often means that there is enough redo log space to handle more than an hour of write activity. The larger the value, the less checkpoint flush activity is required in the buffer pool, saving disk I/O. Larger log files also make crash recovery slower.

The minimum innodb_log_file_size is 4MB.

For related information, see Redo Log File Configuration. For general I/O tuning advice, see Section 8.5.8, 「Optimizing InnoDB Disk I/O」.

If innodb_dedicated_server is enabled, the innodb_log_file_size value is automatically configured if it is not explicitly defined. For more information, see Section 15.8.12, 「Enabling Automatic Configuration for a Dedicated MySQL Server」.

 

 

注意事項:

 

 

·         參數innodb_log_file_size的單位爲字節,它的默認值(MySQL 5.6.8以及以後版本)默認爲48M, 50331648/1024/1024=48M。而在以前的MySQL版本中(例如MySQL 5.5),此參數的默認值爲5M。

·         參數innodb_log_file_size的最小值跟MySQL版本有關係,MySQL 5.7.11以前的版本中,參數innodb_log_file_size的最小值爲1MB,MySQL 5.7.11之後版本,參數innodb_log_file_size的最小值增長到4MB。

·         參數innodb_log_file_size的最大值,二進制日誌文件大小(innodb_log_file_size * innodb_log_files_in_group)不能超過512GB,因此通常而言,其大小值爲512GB / innodb_log_files_in_group,而innodb_log_files_in_group最小值爲2,因此innodb_log_file_size最大值不能超過256GB。其實這個參數也跟MySQL版本有關,MySQL 5.5和以前的版本中,innodb_log_file_size最大值爲2GB。

·         若是參數innodb_log_file_size設置過小,就會致使MySQL的日誌文件(redo log)頻繁切換,頻繁的觸發數據庫的檢查點(Checkpoint),致使刷新髒頁(dirty page)到磁盤的次數增長。從而影響IO性能。另外,若是有一個大的事務,把全部的日誌文件寫滿了,尚未寫完,這樣就會致使日誌不能切換(由於實例恢復還須要,不能被循環複寫,比如Oracle中的redo log沒法循環覆蓋)這樣MySQL就Hang住了。若是參數innodb_log_file_size設置太大的話,雖然大大提高了IO性能,可是當MySQL因爲意外(斷電,OOM-Kill等)宕機時,二進制日誌很大,那麼恢復的時間必然很長。並且這個恢復時間每每不可控,受多方面因素影響。因此必須權衡兩者進行綜合考慮。

 

 

 

innodb_log_files_in_group

 

 

參數innodb_log_files_in_group指定日誌組個數。默認爲2個日誌組。

 

mysql> show variables like 'innodb_log_files_in_group';
+---------------------------+-------+
| Variable_name             | Value |
+---------------------------+-------+
| innodb_log_files_in_group | 2     |
+---------------------------+-------+
1 row in set (0.00 sec)

 

官方文檔的介紹以下所示:

 

Command-Line Format

--innodb-log-files-in-group=#

System Variable

innodb_log_files_in_group

Scope

Global

Dynamic

No

SET_VAR Hint Applies

No

Type

Integer

Default Value

2

Minimum Value

2

Maximum Value

100

 

The number of log files in the log group. InnoDB writes to the files in a circular fashion. The default (and recommended) value is 2. The location of the files is specified by innodb_log_group_home_dir. The combined size of log files (innodb_log_file_size * innodb_log_files_in_group) can be up to 512GB.

 

此參數的默認值爲2,最小值爲2,最大值爲100,通常可能2~3居多。這個參數其實沒有什麼能夠分析的。

 

 

innodb_mirrored_log_groups

 

innodb_mirrored_log_groups:指定日誌鏡像文件組的數量,默認爲 1. 相信熟悉Oracle的應該不會陌生。不過這個參數是一個棄用的參數,MySQL 5.6中已經提示爲啓用參數,在MySQL 5.7中已經移除了。這裏不作過多介紹。

 

 

 

參數優化

 

 

其它幾個參數的優化,其實沒有太多能夠說的,主要是關於參數innodb_log_file_size的調優。參數innodb_log_file_size的大小設置或者優化設置有沒有什麼guideline呢?在MySQL 8.0以前,通常是計算一段時間內生成的事務日誌(redo log)的大小, 而MySQL的日誌文件的大小最少應該承載一個小時的業務日誌量。

 

一個Guideline:計算、統計一分鐘內生成的事務日誌大小,而後以這個值爲均值,計算一個小時內生成了多少日誌量。參考博客How to calculate a good InnoDB log file size

 

mysql> pager grep sequence;
PAGER set to 'grep sequence'
mysql> show engine innodb status\G select sleep(60); show engine innodb status\G
Log sequence number          1103198881953
1 row in set (0.00 sec)
 
1 row in set (1 min 0.00 sec)
 
Log sequence number          1103205163584
1 row in set (0.00 sec)
 
mysql> nopager;
PAGER set to stdout

clip_image001

 

mysql> select (1103205163584-1103198881953)/1024/1024 as MB_per_min;
+------------+
| MB_per_min |
+------------+
| 5.99063015 |
+------------+
1 row in set (0.00 sec)
 
mysql> select (1103205163584-1103198881953)/1024/1024*60 as MB_per_hour;
+--------------+
| MB_per_hour  |
+--------------+
| 359.43780899 |
+--------------+
1 row in set (0.03 sec)
 
mysql> 

 

可是關於這個Guideline也有一個問題(我的見解),就是這一分鐘是位於業務繁忙時段? 仍是業務空閒時段? MySQL生成日的志是平均的仍是有較大的波動範圍?用一分鐘內生成的日誌大小作均值推算一個小時內生成的事務日誌大小,這個可能存在較大的偏差,因此,正確的操做應該是計算半小時或一小時內生成的日誌量大小。這樣不只更接近均值,並且偏差也更小

 

mysql> pager grep sequence;
PAGER set to 'grep sequence'
mysql> show engine innodb status\G select sleep(60*60);show engine innodb status\G
Log sequence number          1114192951353
1 row in set (0.00 sec)
 
1 row in set (1 hour 0.00 sec)
 
Log sequence number          1114578626251
1 row in set (0.01 sec)
 
mysql> nopager;
PAGER set to stdout
mysql> 

 

 

MySQL 8.0引入了innodb_dedicated_server自適應參數,可基於服務器的內存來動態設置innodb_buffer_pool_size,innodb_log_file_size和innodb_flush_method。默認狀況下,此參數是關閉的。

 

若是設置參數innodb_dedicated_server爲ON後,MySQL會自動探測服務器的內存資源,肯定innodb_buffer_pool_size, innodb_log_file_size 和 innodb_flush_method 三個參數的取值。具體取值策略以下

 

innodb_log_file_size

 

在MySQL 8.0.13以前的版本(MySQL 8.*)中,根據服務器內存來動態設置innodb_log_file_size大小。規則以下

 

Detected Server Memory

Log File Size

< 1GB

48MiB (the default value)

<= 4GB

128M

<= 8GB

512M

<= 16GB

1024M

> 16GB

2048M

 


從MySQL 8.0.14開始,根據buffer pool size的大小進行配置innodb_log_file_size參數

 

buffer pool size

log file size

<=8GB

512mb

8GB--128GB

1024mb

大於128GB

2048mb

 

innodb_log_files_in_group


MySQL 8.0.14中,根據buffer pool size的大小進行自動配置(單位是GB)。

buffer pool size

log file number

小於8GB

ROUND(buffer pool size)

8GB--128GB

ROUND(buffer pool size * 0.75)

大於128GB

64

 

若是buffer pool size小於2GB,innodb_log_files_in_group最小值是2。

 

注意:官方只是建議在可使用所有的系統資源的專用服務器上配置開啓該參數。若是MySQL和其它應用(例如Tomcat、Apach等)共享資源的話,是不建議開啓該參數的。

 

另外,參數innodb_dedicated_server是一個只讀參數,須要在配置文件my.cnf中設置。

mysql> set global innodb_dedicated_server=ON;

ERROR 1238 (HY000): Variable 'innodb_dedicated_server' is a read only variable

 

 

 

參考資料:

https://www.percona.com/blog/2017/10/18/chose-mysql-innodb_log_file_size/

https://www.percona.com/blog/2008/11/21/how-to-calculate-a-good-innodb-log-file-size/

https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_log_file_size

相關文章
相關標籤/搜索