溫馨提示×

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

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

淺析mysql主從復(fù)制中的gtid

發(fā)布時(shí)間:2020-07-11 09:17:57 來(lái)源:網(wǎng)絡(luò) 閱讀:7603 作者:橡皮高 欄目:MySQL數(shù)據(jù)庫(kù)

gtid(Global Transaction ID)是對(duì)于一個(gè)已提交事務(wù)的編號(hào),并且是一個(gè)全局唯一的編號(hào)。它的官方定義如下:
gtid= source_id :transaction_id

每一個(gè) gtid代表一個(gè)數(shù)據(jù)庫(kù)事務(wù)。在上面的定義中,source_id 表示執(zhí)行事務(wù)的主庫(kù) uuid(server_uuid),transaction_id 是一個(gè)從 1 開(kāi)始的自增計(jì)數(shù),表示在這個(gè)主庫(kù)上執(zhí)行的第 n 個(gè)事務(wù)。MySQL 只要保證每臺(tái)數(shù)據(jù)庫(kù)的 server_uuid 全局唯一,以及每臺(tái)數(shù)據(jù)庫(kù)生成的 transaction_id 自身唯一,就能保證 gtid 的全局唯一性。
在開(kāi)啟gtid的主從復(fù)制的環(huán)境下,在slave上執(zhí)行show slave status\G 可以看到下述信息:

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
...
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
...
           Retrieved_Gtid_Set: b5e3d908-fa6d-11e7-b931-06f990000100:1-3
            Executed_Gtid_Set: b5e3d908-fa6d-11e7-b931-06f990000100:1-3
                Auto_Position: 1
1 row in set (0.00 sec)

Retrieved_Gtid_Set 表示slave從master接受的gtid set,使用 reset slave 命令可以清空此項(xiàng);
Executed_Gtid_Set 表示slave已執(zhí)行的gtid set,使用 reset master 命令可以清空此項(xiàng)。
Retrieved_Gtid_Set 和 Executed_Gtid_Set 必須為master 上 gtid set 的子集,否則會(huì)報(bào)以下錯(cuò)誤:

mysql> show slave status\G
*************************** 1. row ***************************
...
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Slave has more GTIDs than the master has, using the master's SERVER_UUID. This may indicate that the end of the binary log was truncated or that the last binary log file was lost, e.g., after a power or disk failure when sync_binlog != 1. The master may or may not have rolled back transactions that were already replica'
...
1 row in set (0.00 sec)

slave 停掉后再次啟動(dòng)時(shí),會(huì)進(jìn)行以下操作:
1.讀取master上的gtid set(假設(shè)為set A)
2.將set A和自身的 Retrieved_Gtid_Set(假設(shè)為set B) 對(duì)比,執(zhí)行 A-B 部分的事務(wù)以保持和master的同步
。

這里本來(lái)是要貼上驗(yàn)證的操作的,但51cto博客的表格展示很不友好,所以驗(yàn)證的工作就交給大家啦~^o^

向AI問(wèn)一下細(xì)節(jié)

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

AI