mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-33465: an option to enable semisync recovery
The current semi-sync binlog fail-over recovery process uses rpl_semi_sync_slave_enabled==TRUE as its condition to truncate a primary server’s binlog, as it is anticipating the server to re-join a replication topology as a replica. However, for servers configured with both rpl_semi_sync_master_enabled=1 and rpl_semi_sync_slave_enabled=1, if a primary is just re-started (i.e. retaining its role as master), it can truncate its binlog to drop transactions which its replica(s) has already received and executed. If this happens, when the replica reconnects, its gtid_slave_pos can be ahead of the recovered primary’s gtid_binlog_pos, resulting in an error state where the replica’s state is ahead of the primary’s. This patch changes the condition for semi-sync recovery to truncate the binlog to instead use the configuration variable --init-rpl-role, when set to SLAVE. This allows for both rpl_semi_sync_master_enabled and rpl_semi_sync_slave_enabled to be set for a primary that is restarted, and no transactions will be lost, so long as --init-rpl-role is not set to SLAVE. Reviewed By: ============ Sergei Golubchik <serg@mariadb.com>
This commit is contained in:
committed by
Brandon Nesterenko
parent
e40d232ad6
commit
eb4458e993
@@ -36,7 +36,7 @@ CREATE TABLE tm (f INT) ENGINE=Aria;
|
||||
# Using 'debug_sync' hold 'query1' execution after 'query1' is flushed and
|
||||
# synced to binary log but not yet committed. In an another connection hold
|
||||
# 'query2' execution after 'query2' is flushed and synced to binlog.
|
||||
# Crash and restart server with --rpl-semi-sync-slave-enabled=1
|
||||
# Crash and restart server with --init-rpl-role=SLAVE
|
||||
#
|
||||
# During recovery of binary log 'query1' status is checked with InnoDB engine,
|
||||
# it will be in prepared but not yet commited. All transactions starting from
|
||||
|
Reference in New Issue
Block a user