溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Mysql 5.7 Gtid內(nèi)部學(xué)習(xí)(七) 總結(jié)binlog_gtid_simple_recovery參數(shù)帶來的影響

發(fā)布時間:2020-08-07 08:12:10 來源:ITPUB博客 閱讀:166 作者:gaopengtttt 欄目:MySQL數(shù)據(jù)庫

簡書地址:
http://www.jianshu.com/p/c9888d6447c8

想了想還是專門開了一節(jié)來總結(jié)這個問題
5.7.6以下中默認(rèn)

  • simplified_binlog_gtid_recovery=flase

5.7.6以上中默認(rèn)

  • binlog_gtid_simple_recovery=true

默認(rèn)值就是最合理的設(shè)置。
因為參數(shù)名更改了所以下面統(tǒng)稱simple_recovery來代替。

一、Gtid關(guān)閉


  • simple_recovery=flase

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

  • 重啟Mysql需要掃描全部的binlog來獲得正確的Gtid集合
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,由上層函數(shù)控制。因為不支持在線的Gtid更改。

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

  • 重啟Mysql掃描全部的binlog。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置觸發(fā)全binlog掃描。

  • simple_recovery=true

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

  • 重啟Mysql不掃描全部的binlog,只掃描第一個和最后一個binlog。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,由上層函數(shù)控制。

5.7.6以上:由于有每個binlog都有Previous gtid Event的支持能夠得到正確的Gtid集合。

  • 重啟Mysql不掃描全部的binlog,只掃描第一個和最后一個binlog。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,只掃描第一個和最后一個binlog。

二、Gtid打開


  • simple_recovery=flase

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

  • 重啟Mysql不掃描全部的binlog,如果是中途打開GTID,重啟任然需要掃描多個binlog因為需要找到Previous gtid Event。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,如果是中途打開GTID重啟,任然需要掃描多個binlog因為需要找到Previous gtid Event。

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

  • 重啟Mysql不掃秒全部的binlog,如果是中途打開GTID重啟任然需要掃描多個binlog因為需要找到Gtid event。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,如果是中途打開GTID重啟任然需要掃描多個binlog因為需要找到Gtid event。

  • simple_recovery=true

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

  • 重啟Mysql不掃描全部的binlog,只掃描第一個和最后一個binlog。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不掃描全部binlog,只掃描第一個和最后一個binlog。

5.7.6以上:由于有每個binlog都有Previous gtid Event的支持能夠得到正確的Gtid集合。

  • 重啟Mysql不掃描全部的binlog,只掃描第一個和最后一個binlog。
  • purge binlog或者超過參數(shù)expire_logs_days參數(shù)設(shè)置不觸發(fā)全binlog掃描,只掃描第一個和最后一個binlog。

三、本節(jié)總結(jié)

  • 5.7.6以下保持默認(rèn)設(shè)置simplified_binlog_gtid_recovery=flase,但是這會導(dǎo)致過多的binlog掃描,況且5.6沒有mysql.gtid_executed的支持,從庫必須開啟log_slave_updates,這會帶來性能影響。所以還是少用Gtid。
  • 5.7.6以上由于對每個binlog都有Previous gtid Event的支持binlog_gtid_simple_recovery=true是合理的設(shè)置,binlog掃描非常的快因為只是第一個和最后一個binlog文件而已。

可以看到Gtid也越來越成熟了。這部分的邏輯在函MYSQL_BIN_LOG::init_gtid_sets中前文已經(jīng)提到過,這里就不看代碼了。

此外在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. 

如果將參數(shù)設(shè)置為true可能在老版本中得不到正確的Gtid集合,也是前面討論的。

學(xué)習(xí)完本節(jié)至少能夠?qū)W習(xí)到:

  • binlog_gtid_simple_recovery/simplified_binlog_gtid_recovery是如何影響binlog文件的掃描的的
  • 5.7.6以下應(yīng)該如何設(shè)置
  • 5.7.6以上應(yīng)該如何設(shè)置

作者微信:


Mysql 5.7 Gtid內(nèi)部學(xué)習(xí)(七) 總結(jié)binlog_gtid_simple_recovery參數(shù)帶來的影響
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI