mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-34705: Binlog-in-engine: Read side of out-of-band binlogging
With this commit, the out-of-band binlogging of large event groups in multiple smaller records interleaved with other event groups is now working. Instead of flushing the binlog cache to disk when they reach @@binlog_cache_size, instead the cache is binlogged as an out-of-band record. Then at transaction commit, a commit record is written containing just the GTID and a link to the out-of-band data. To facilitate append-only operation, the binlogged records do not have a "next" pointer. Instead, they are written out as a forest of perfect binary trees, the leftmost leaf of one tree pointing to the root of the previous tree. This structure is used in the binlog reader to efficiently read out the event group data consecutively for the binlog dump thread, needing to maintain only O(log(N)) amount of memory during the reading. As part of this commit, the existing binlog reader code is refactored to be greatly improved, with a much cleaner explicit state machine and handling of chunk/page/file boundaries etc. Also fixes some bugs in the gtid_search::find_gtid_pos(). Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
This commit is contained in:
@@ -109,7 +109,7 @@ while ($i < $NUM_POS) {
|
||||
--disable_result_log
|
||||
eval START SLAVE UNTIL master_gtid_pos='$gtid_pos';
|
||||
--enable_result_log
|
||||
--let $res= `SELECT MASTER_GTID_WAIT('$gtid_pos')`
|
||||
--let $res= `SELECT MASTER_GTID_WAIT('$gtid_pos', 60)`
|
||||
if ($res != 0) {
|
||||
--die "FAIL: MASTER_GTID_WAIT($gtid_pos) returned $res, should have been 0"
|
||||
}
|
||||
@@ -154,7 +154,7 @@ while ($i <= $NUM_DOMAIN) {
|
||||
--disable_result_log
|
||||
eval START SLAVE UNTIL master_gtid_pos='$until_pos';
|
||||
--enable_result_log
|
||||
--let $res= `SELECT MASTER_GTID_WAIT('$until_pos')`
|
||||
--let $res= `SELECT MASTER_GTID_WAIT('$until_pos', 60)`
|
||||
if ($res != 0) {
|
||||
--die "FAIL: MASTER_GTID_WAIT($until_pos) returned $res, should have been 0"
|
||||
}
|
||||
|
Reference in New Issue
Block a user