衆所周知,MySQL的複製延遲是一直被詬病的問題之一,然而在Inside君以前的兩篇博客中(1,2)中都已經提到了MySQL 5.7版本已經支持「真正」的並行複製功能,官方稱爲爲enhanced multi-threaded slave(簡稱MTS),所以複製延遲問題已經獲得了極大的改進,甚至在Inside君所在的網易電商應用中已經徹底消除了以前延遲長達幾小時的問題。然而,Inside君發現仍是有很部分小夥伴不瞭解這個足以載入史冊的「偉大」的特性,故做分享。總之, 5.7版本後,複製延遲問題永不存在 。html
誠然,MySQL 5.6版本也支持所謂的並行複製,可是其並行只是基於schema的,也就是基於庫的。若是用戶的MySQL數據庫實例中存在多個schema,對於從機複製的速度的確能夠有比較大的幫助。MySQL 5.6並行複製的架構以下所示:mysql
在上圖的紅色框框部分就是實現並行複製的關鍵所在。在MySQL 5.6版本以前,Slave服務器上有兩個線程I/O線程和SQL線程。I/O線程負責接收二進制日誌(更準確的說是二進制日誌的event),SQL線程進行回放二進制日誌。若是在MySQL 5.6版本開啓並行複製功能,那麼SQL線程就變爲了coordinator線程,coordinator線程主要負責之前兩部分的內容:sql
這意味着 coordinator線程並非僅將日誌發送給worker線程,本身也能夠回放日誌,可是全部能夠並行的操做交付由worker線程完成。coordinator線程與worker是典型的生產者與消費者模型。數據庫
(疑問:這裏是在判斷不能夠並行執行時,在等待全部的worker線程執行完成後,是由coordinator執行仍是由worker進程非並行進行。從上面兩句話中看不出coordinator進程回放日誌。)服務器
上述機制實現了基於schema的並行複製存在兩個問題,首先是crash safe功能很差作,由於可能以後執行的事務因爲並行複製的關係先完成執行,那麼當發生crash的時候,這部分的處理邏輯是比較複雜的。從代碼上看,5.6這裏引入了Low-Water-Mark標記來解決該問題,從設計上看( WL#5569 ),其是但願藉助於日誌的冪等性來解決該問題,不過5.6的二進制日誌回放還不能實現冪等性。另外一個最爲關鍵的問題是這樣設計的並行複製效果並不高,若是用戶實例僅有一個庫,那麼就沒法實現並行回放,甚至性能會比原來的單線程更差。而 單庫多表是比多庫多表更爲常見的一種情形 。架構
MySQL 5.7基於組提交的並行複製app
MySQL 5.7纔可稱爲真正的並行複製,這其中最爲主要的緣由就是slave服務器的回放與主機是一致的即master服務器上是怎麼並行執行的slave上就怎樣進行並行回放。再也不有庫的並行複製限制,對於二進制日誌格式也無特殊的要求(基於庫的並行複製也沒有要求)。less
從MySQL官方來看,其並行複製的本來計劃是支持表級的並行複製和行級的並行複製,行級的並行複製經過解析ROW格式的二進制日誌的方式來完成, WL#4648 。可是最終出現給小夥伴的確是在開發計劃中稱爲:MTS: Prepared transactions slave parallel applier,可見: WL#6314 。該並行複製的思想最先是由MariaDB的Kristain提出,並已在MariaDB 10中出現,相信不少選擇MariaDB的小夥伴最爲看重的功能之一就是並行複製。nosql
MySQL 5.7並行複製的思想簡單易懂,一言以蔽之: 一個組提交的事務都是能夠並行回放 ,由於這些事務都已進入到事務的prepare階段,則說明事務之間沒有任何衝突(不然就不可能提交)。ide
爲了兼容MySQL 5.6基於庫的並行複製,5.7引入了新的變量slave-parallel-type,其能夠配置的值有:
支持並行複製的GTID
如何知道事務是否在一組中,又是一個問題,由於原版的MySQL並無提供這樣的信息。在MySQL 5.7版本中,其設計方式是將組提交的信息存放在GTID中。那麼若是用戶沒有開啓GTID功能,即將參數gtid_mode設置爲OFF呢?故MySQL 5.7又引入了稱之爲Anonymous_Gtid的二進制日誌event類型,如:
mysql> SHOW BINLOG EVENTS in 'mysql-bin.000006'; +------------------+-----+----------------+-----------+-------------+-----------------------------------------------+ | Log_name | Pos | Event_type | Server_id | End_log_pos | Info | +------------------+-----+----------------+-----------+-------------+-----------------------------------------------+ | mysql-bin.000006 | 4 | Format_desc | 88 | 123 | Server ver: 5.7.7-rc-debug-log, Binlog ver: 4 | | mysql-bin.000006 | 123 | Previous_gtids | 88 | 194 | f11232f7-ff07-11e4-8fbb-00ff55e152c6:1-2 | | mysql-bin.000006 | 194 | Anonymous_Gtid | 88 | 259 | SET @@SESSION.GTID_NEXT= 'ANONYMOUS' | | mysql-bin.000006 | 259 | Query | 88 | 330 | BEGIN | | mysql-bin.000006 | 330 | Table_map | 88 | 373 | table_id: 108 (aaa.t) | | mysql-bin.000006 | 373 | Write_rows | 88 | 413 | table_id: 108 flags: STMT_END_F | ......
這意味着在 MySQL 5.7版本中即便不開啓GTID,每一個事務開始前也是會存在一個Anonymous_Gtid ,而這GTID中就存在着組提交的信息。
LOGICAL_CLOCK
然而,經過上述的SHOW BINLOG EVENTS,咱們並無發現有關組提交的任何信息。可是經過mysqlbinlog工具,用戶就能發現組提交的內部信息:
root@localhost:~# mysqlbinlog mysql-bin.0000006 | grep last_committed #150520 14:23:11 server id 88 end_log_pos 259 CRC32 0x4ead9ad6 GTID last_committed=0 sequence_number=1 #150520 14:23:11 server id 88 end_log_pos 1483 CRC32 0xdf94bc85 GTID last_committed=0 sequence_number=2 #150520 14:23:11 server id 88 end_log_pos 2708 CRC32 0x0914697b GTID last_committed=0 sequence_number=3 #150520 14:23:11 server id 88 end_log_pos 3934 CRC32 0xd9cb4a43 GTID last_committed=0 sequence_number=4 #150520 14:23:11 server id 88 end_log_pos 5159 CRC32 0x06a6f531 GTID last_committed=0 sequence_number=5 #150520 14:23:11 server id 88 end_log_pos 6386 CRC32 0xd6cae930 GTID last_committed=0 sequence_number=6 #150520 14:23:11 server id 88 end_log_pos 7610 CRC32 0xa1ea531c GTID last_committed=6 sequence_number=7 #150520 14:23:11 server id 88 end_log_pos 8834 CRC32 0x96864e6b GTID last_committed=6 sequence_number=8 #150520 14:23:11 server id 88 end_log_pos 10057 CRC32 0x2de1ae55 GTID last_committed=6 sequence_number=9 #150520 14:23:11 server id 88 end_log_pos 11280 CRC32 0x5eb13091 GTID last_committed=6 sequence_number=10 #150520 14:23:11 server id 88 end_log_pos 12504 CRC32 0x16721011 GTID last_committed=6 sequence_number=11 #150520 14:23:11 server id 88 end_log_pos 13727 CRC32 0xe2210ab6 GTID last_committed=6 sequence_number=12 #150520 14:23:11 server id 88 end_log_pos 14952 CRC32 0xf41181d3 GTID last_committed=12 sequence_number=13 ...
能夠發現較之原來的二進制日誌內容多了last_committed和sequence_number,last_committed表示事務提交的時候,上次事務提交的編號,若是事務具備相同的last_committed,表示這些事務都在一組內,能夠進行並行的回放。例如上述last_committed爲0的事務有6個,表示組提交時提交了6個事務,而這6個事務在從機是能夠進行並行回放的。
上述的last_committed和sequence_number表明的就是所謂的LOGICAL_CLOCK。先來看源碼中對於LOGICAL_CLOCK的定義:
class Logical_clock { private: int64 state; /* Offset is subtracted from the actual "absolute time" value at logging a replication event. That is the event holds logical timestamps in the "relative" format. They are meaningful only in the context of the current binlog. The member is updated (incremented) per binary log rotation. */ int64 offset; ......
state是一個自增的值,offset在每次二進制日誌發生rotate時更新,記錄發生rotate時的state值。其實state和offset記錄的是全局的計數值,而存在二進制日誌中的僅是當前文件的相對值。使用LOGICAL_CLOCK的場景以下:
class MYSQL_BIN_LOG: public TC_LOG { ... public: /* Committed transactions timestamp */ Logical_clock max_committed_transaction; /* "Prepared" transactions timestamp */ Logical_clock transaction_counter; ...
能夠看到在類MYSQL_BIN_LOG中定義了兩個Logical_clock的變量:
下圖顯示了開啓MTS後,slave服務器的QPS。測試的工具是sysbench的單表全update測試,測試結果顯示在16個線程下的性能最好,從機的QPS能夠達到25000以上,進一步增長並行執行的線程至32並無帶來更高的提高。而原單線程回放的QPS僅在4000左右,可見MySQL 5.7 MTS帶來的性能提高,而因爲測試的是單表,因此MySQL 5.6的MTS機制則徹底無能爲力了。
master_info_repository
開啓MTS功能後,務必將參數master_info_repostitory設置爲TABLE,這樣性能能夠有50%~80%的提高。這是由於並行複製開啓後對於元master.info這個文件的更新將會大幅提高,資源的競爭也會變大。在以前 InnoSQL 的版本中,添加了參數來控制刷新master.info這個文件的頻率,甚至能夠不刷新這個文件。由於刷新這個文件是沒有必要的,即根據master-info.log這個文件恢復自己就是不可靠的。在MySQL 5.7中,Inside君推薦將master_info_repository設置爲TABLE,來減少這部分的開銷。
slave_parallel_workers
若將slave_parallel_workers設置爲0,則MySQL 5.7退化爲原單線程複製,但將slave_parallel_workers設置爲1,則SQL線程功能轉化爲coordinator線程,可是隻有1個worker線程進行回放,也是單線程複製。然而,這兩種性能卻又有一些的區別,由於多了一次coordinator線程的轉發,所以slave_parallel_workers=1的性能反而比0還要差,在Inside君的測試下還有20%左右的性能降低,以下圖所示:
這裏其中引入了另外一個問題,若是主機上的負載不大,那麼組提交的效率就不高,頗有可能發生每組提交的事務數量僅有1個,那麼在從機的回放時, 雖然開啓了並行複製,但會出現性能反而比原先的單線程還要差的現象,即延遲反而增大了 。聰明的小夥伴們,有想過對這個進行優化嗎?
Enhanced Multi-Threaded Slave配置
說了這麼多,要開啓enhanced multi-threaded slave其實很簡單,只需根據以下設置:
# slave
slave-parallel-type=LOGICAL_CLOCK slave-parallel-workers=16 master_info_repository=TABLE relay_log_info_repository=TABLE relay_log_recovery=ON
複製的監控依舊能夠經過SHOW SLAVE STATUS\G,可是MySQL 5.7在performance_schema架構下多了這些表,用戶能夠更細力度的進行監控:
mysql> show tables like 'replication%'; +---------------------------------------------+ | Tables_in_performance_schema (replication%) | +---------------------------------------------+ | replication_applier_configuration | | replication_applier_status | | replication_applier_status_by_coordinator | | replication_applier_status_by_worker | | replication_connection_configuration | | replication_connection_status | | replication_group_member_stats | | replication_group_members | +---------------------------------------------+ 8 rows in set (0.00 sec)
MySQL 5.7推出的Enhanced Multi-Threaded Slave解決了困擾MySQL長達數十年的複製延遲問題,再次提醒一些無知的PostgreSQL用戶,不要再停留在以前對於MySQL的印象,物理複製也不必定確定比邏輯複製有優點,而MySQL 5.7的MTS已經徹底能夠解決延遲問題。anyway,和Inside君一塊兒見證劃時代MySQL 5.7 GA版本的降臨吧.
注:
一、Coordinator thread on slave dispatches work across several worker threads。Each worker thread commits trx in isolation。
二、mysql 5.6的MTS是基於庫級別的並行,當有多個數據庫時,能夠將slave_parallel_workers設置爲數據庫的數量,爲了不新建庫後來回修改,也能夠將該參數設置的大一些。設置爲庫級別的事務時,不容許這樣作,會報錯。
三、mysql 5.7 後的MTS能夠實現更小粒度的並行複製,但須要將slave_parallel_type設置爲LOGICAL_CLOCK,但僅僅設置爲LOGICAL_CLOCK也會存在問題,由於此時在slave上應用事務的順序是無序的,和relay log中記錄的事務順序不同,這樣數據一致性是沒法保證的,爲了保證事務是按照relay log中記錄的順序來回放,就須要開啓參數slave_preserve_commit_order。開啓該參數後,the executing thread waits until all previous transactions are committed before committing. While the slave thread is waiting for other workers to commit their transactions it reports its status as Waiting for preceding transaction to commit
.
因此雖然mysql5.7添加MTS後,雖然slave能夠並行應用relay log,但commit部分仍然是順序提交,其中可能會有等待的狀況。
當開啓slave_preserve_commit_order參數後,slave_parallel_type只能是LOGICAL_CLOCK,若是你有使用級聯複製,那LOGICAL_CLOCK可能會使離master越遠的slave並行性越差。
Regardless of the value of this variable, there is no special configuration required on the master. When slave_preserve_commit_order=1
, you can only use LOGICAL_CLOCK
. If your replication topology uses multiple levels of slaves, LOGICAL_CLOCK
may achieve less parallelization for each level the slave is away from the master.
四、5.7中會在binlog中額外加入元數據,來劃分那些事務能夠並行執行。
Additional metadata is stored in the binlogs to identify transactions that can be applied in parallel
而slave則經過 coordinator 線程從relay log中抽取元數據,進而分發給worker線程並行執行的事務組。
The coordinator thread is able to extract the metadata from the relay logs to dispatch the transactions across workers
mysql> show tables like 'replication%'; +---------------------------------------------+ | Tables_in_performance_schema (replication%) | +---------------------------------------------+ | replication_applier_configuration | | replication_applier_status | | replication_applier_status_by_coordinator | | replication_applier_status_by_worker | | replication_connection_configuration | | replication_connection_status | | replication_group_member_stats | | replication_group_members | +---------------------------------------------+ 8 rows in set (0.00 sec)
經過replication_applier_status_by_worker能夠看到worker進程的工做狀況:
mysql> mysql> select * from replication_applier_status_by_worker; +--------------+-----------+-----------+---------------+--------------------------------------------+-------------------+--------------------+----------------------+ | CHANNEL_NAME | WORKER_ID | THREAD_ID | SERVICE_STATE | LAST_SEEN_TRANSACTION | LAST_ERROR_NUMBER | LAST_ERROR_MESSAGE | LAST_ERROR_TIMESTAMP | +--------------+-----------+-----------+---------------+--------------------------------------------+-------------------+--------------------+----------------------+ | | 1 | 32 | ON | 0d8513d8-00a4-11e6-a510-f4ce46861268:96604 | 0 | | 0000-00-00 00:00:00 | | | 2 | 33 | ON | 0d8513d8-00a4-11e6-a510-f4ce46861268:97760 | 0 | | 0000-00-00 00:00:00 | +--------------+-----------+-----------+---------------+--------------------------------------------+-------------------+--------------------+----------------------+ 2 rows in set (0.00 sec)
其餘各表的使用參考官方文檔。
Controls how many microseconds the binary log commit waits before synchronizing the binary log file to disk. By default binlog-group-commit-sync-delay
is set to 0, meaning that there is no delay. Setting binlog-group-commit-sync-delay
to a microsecond delay enables more transactions to be synchronized together to disk at once, reducing the overall time to commit a group of transactions because the larger groups require fewer time units per group. With the correct tuning, this can increase slave performance without compromising the master's throughput.
八、討論技術就討論技術,不必踩低別人來擡高本身,並且不瞭解pg就妄論pg是好笑的。類比Linus那句話:「Talk is cheap,show your test.」
參考:
http://mp.weixin.qq.com/s?__biz=MjM5MjIxNDA4NA==&mid=205236417&idx=1&sn=15281c834348911cea106478aa819175&scene=23&srcid=0525zwrE6gRYCIPgKxoq40iN#rd
http://blog.booking.com/better_parallel_replication_for_mysql.html
https://www.percona.com/resources/technical-presentations/multi-threaded-replication-mysql-56-and-57-percona-technical-mysql
https://dev.mysql.com/doc/refman/5.7/en/replication-options-slave.html#option_mysqld_slave-parallel-type
https://dev.mysql.com/doc/refman/5.7/en/replication-options-slave.html#sysvar_slave_preserve_commit_order
https://dev.mysql.com/doc/refman/5.7/en/replication-options-binary-log.html#sysvar_binlog_group_commit_sync_delay