解析MySQL binlog --(6)XID_EVENT、ROTATE_EVENT及stop

來源:互聯網
上載者:User

標籤:mysql   binlog   xid   

1、XID_EVENT

當事務提交時,不論是statement還是row格式的binlog都會添加一個XID_EVENT作為事務的結束。該事件記錄了該事務的ID。在mysql進行崩潰恢複時根據binlog中提交的情況來決定是否提交儲存引擎中prepared狀態的事務。

2、ROTATE_EVENT

當binlog檔案大小達到max_binlog_size參數設定的值或執行flush logs命令時,binlog發生切換,這時會在當前使用的binlog檔案末尾添加一個ROTATE_EVENT事件,將下一個binlog檔案的名稱和位置記錄到該事件中。

3、STOP_EVENT

當MySQL服務停止時,會在當前binlog檔案尾添加一個STOP_EVENT事件表示資料庫的停止。該事件僅包括一個公有事件頭,沒有私人事件頭和事件體。只需要公有事件頭的event type就可以了。
4、代碼

Xid_log_event::write    Log_event::write_header    wrapper_my_b_safe_write(file, (uchar*) &xid, sizeof(xid))    write_footer(file))//checksumRotate_log_event::write    write_header(file, ROTATE_HEADER_LEN + ident_len)    wrapper_my_b_safe_write(file, (uchar*) buf, ROTATE_HEADER_LEN)    wrapper_my_b_safe_write(file, (uchar*) new_log_ident,(uint) ident_len)    write_footer(file))

解析MySQL binlog --(6)XID_EVENT、ROTATE_EVENT及stop

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.