深入理解MySQL5.7GTID系列(七)binlog_gtid_simple_recovery引數的影響總結

技術小能手發表於2018-03-12

想了想還是專門開了一節來總結這個問題:

5.7.6以下中預設


8481c8f592b7f349aa84a1de5c171db681516edfsimplified_binlog_gtid_recovery=flase

5.7.6以上中預設

8481c8f592b7f349aa84a1de5c171db681516edfbinlog_gtid_simple_recovery=true

預設值就是最合理的設定。

因為引數名更改了所以下面統稱simple_recovery來代替。

一、Gtid關閉

8481c8f592b7f349aa84a1de5c171db681516edfsimple_recovery=flase

5.7.6以下:這種方式一定得到正確的Gtid集合

8481c8f592b7f349aa84a1de5c171db681516edf重啟MySQL需要掃描全部的BINLOG來獲得正確的GTID集合
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,由上層函式控制。因為不支援線上的GTID更改。

5.7.6以上:這種方式一定得到正確的Gtid集合

8481c8f592b7f349aa84a1de5c171db681516edf重啟MySQL掃描全部的BINLOG
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定觸發全BINLOG掃描。
8481c8f592b7f349aa84a1de5c171db681516edfsimple_recovery=true

5.7.6以下:這種情況可能得不到正確的GTID集合

8481c8f592b7f349aa84a1de5c171db681516edf重啟Mysql不掃描全部的BINLOG,只掃描第一個和最後一個BINLOG
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,由上層函式控制。

5.7.6以上:由於有每個BINLOG都有Previous gtid Event的支援能夠得到正確的GTID集合。

8481c8f592b7f349aa84a1de5c171db681516edf重啟Mysql不掃描全部的BINLOG,只掃描第一個和最後一個BINLOG
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,只掃描第一個和最後一個BINLOG

二、Gtid開啟

8481c8f592b7f349aa84a1de5c171db681516edfsimple_recovery=flase

5.7.6以下:這種方式一定得到正確的GTID集合。

8481c8f592b7f349aa84a1de5c171db681516edf重啟MySQL不掃描全部的BINLOG,如果是中途開啟GTID,重啟任然需要掃描多個BINLOG因為需要找到Previous gtid Event
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,如果是中途開啟GTID重啟,任然需要掃描多個BINLOG因為需要找到Previous gtid Event

5.7.6以上:這種方式一定得到正確的GTID集合

8481c8f592b7f349aa84a1de5c171db681516edf重啟Mysql不掃秒全部的BINLOG,如果是中途開啟GTID重啟任然需要掃描多個BINLOG因為需要找到GTID EVENT
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,如果是中途開啟GTID重啟任然需要掃描多個BINLOG因為需要找到GTID EVENT
8481c8f592b7f349aa84a1de5c171db681516edfsimple_recovery=true

5.7.6以下:這種情況可能得不到正確的GTID集合

8481c8f592b7f349aa84a1de5c171db681516edf重啟Mysql不掃描全部的BINLOG,只掃描第一個和最後一個BINLOG
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不掃描全部GTID,只掃描第一個和最後一個BINLOG

5.7.6以上:由於有每個BINLOG都有Previous gtid Event的支援能夠得到正確的GTID集合。

8481c8f592b7f349aa84a1de5c171db681516edf重啟Mysql不掃描全部的BINLOG,只掃描第一個和最後一個BINLOG
8481c8f592b7f349aa84a1de5c171db681516edfpurge binlog或者超過引數expire_logs_days引數設定不觸發全BINLOG掃描,只掃描第一個和最後一個BINLOG

三、本節總結

8481c8f592b7f349aa84a1de5c171db681516edf5.7.6以下保持預設設定simplified_binlog_gtid_recovery=flase,但是這會導致過多的BINLOG掃描,況且5.6沒有mysql.gtid_executed的支援,從庫必須開啟log_slave_updates,這會帶來效能影響。所以還是少用GTID
8481c8f592b7f349aa84a1de5c171db681516edf5.7.6以上由於對每個BINLOG都有Previous gtid Event的支援binlog_gtid_simple_recovery=true是合理的設定,BINLOG掃描非常的快因為只是第一個和最後一個BINLOG檔案而已。

可以看到Gtid也越來越成熟了。這部分的邏輯在函MYSQL_BIN_LOG::init_gtid_sets中前文已經提到過,這裡就不看程式碼了。

此外在5.7的官方文件中對binlog_gtid_simple_recovery=true 有如下警告的描述:

If this option is enabled, gtid_executed and gtid_purged may be
initialized incorrectly in the following situations:
• The newest binary log was generated by MySQL 5.7.5 or older, and
gtid_mode was ON for some binary logs but OFF for the newest binary log.
• A SET GTID_PURGED statement was issued on a MySQL version
prior to 5.7.7, and the binary log that was active at the time of the SET
GTID_PURGED has not yet been purged.
If an incorrect GTID set is computed in either situation, it will remain incorrect
even if the server is later restarted, regardless of the value of this option.

如果將引數設定為true可能在老版本中得不到正確的GTID集合,也是前面討論的。

學習完本節至少能夠學習到:

8481c8f592b7f349aa84a1de5c171db681516edfbinlog_gtid_simple_recovery/simplified_binlog_gtid_recovery是如何影響BINLOG檔案的掃描的的
8481c8f592b7f349aa84a1de5c171db681516edf5.7.6以下應該如何設定
8481c8f592b7f349aa84a1de5c171db681516edf5.7.6以上應該如何設定

原文釋出時間為:2018-03-9
本文作者:
高鵬(重慶八怪)
本文來自雲棲社群合作伙伴“老葉茶館”,瞭解相關資訊可以關注“老葉茶館”微信公眾號


相關文章