mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
This commit implements two phase binloggable ALTER.
When a new
@@session.binlog_alter_two_phase = YES
ALTER query gets logged in two parts, the START ALTER and the COMMIT
or ROLLBACK ALTER. START Alter is written in binlog as soon as
necessary locks have been acquired for the table. The timing is
such that any concurrent DML:s that update the same table are either
committed, thus logged into binary log having done work on the old
version of the table, or will be queued for execution on its new
version.
The "COMPLETE" COMMIT or ROLLBACK ALTER are written at the very point
of a normal "single-piece" ALTER that is after the most of
the query work is done. When its result is positive COMMIT ALTER is
written, otherwise ROLLBACK ALTER is written with specific error
happened after START ALTER phase.
Replication of two-phase binloggable ALTER is
cross-version safe. Specifically the OLD slave merely does not
recognized the start alter part, still being able to process and
memorize its gtid.
Two phase logged ALTER is read from binlog by mysqlbinlog to produce
BINLOG 'string', where 'string' contains base64 encoded
Query_log_event containing either the start part of ALTER, or a
completion part. The Query details can be displayed with `-v` flag,
similarly to ROW format events. Notice, mysqlbinlog output containing
parts of two-phase binloggable ALTER is processable correctly only by
binlog_alter_two_phase server.
@@log_warnings > 2 can reveal details of binlogging and slave side
processing of the ALTER parts.
The current commit also carries fixes to the following list of
reported bugs:
MDEV-27511, MDEV-27471, MDEV-27349, MDEV-27628, MDEV-27528.
Thanks to all people involved into early discussion of the feature
including Kristian Nielsen, those who helped to design, implement and
test: Sergei Golubchik, Andrei Elkin who took the burden of the
implemenation completion, Sujatha Sivakumar, Brandon
Nesterenko, Alice Sherepa, Ramesh Sivaraman, Jan Lindstrom.
54 lines
1.6 KiB
Text
54 lines
1.6 KiB
Text
#
|
|
# Start Alter with Parallel Replication
|
|
# 1 domain id
|
|
# |Concurrent alters| >= |Parallel workers on slave|
|
|
# |x| denotes number of entities it encloses
|
|
#
|
|
--source include/have_log_bin.inc
|
|
--source include/have_innodb.inc
|
|
--source include/master-slave.inc
|
|
--source include/have_debug.inc
|
|
--connection master
|
|
--let $binlog_alter_two_phase= `select @@binlog_alter_two_phase`
|
|
set global binlog_alter_two_phase=Yes;
|
|
set binlog_alter_two_phase=Yes;
|
|
--connection slave
|
|
--let $gtid_strict_mode= `select @@gtid_strict_mode`
|
|
--let $slave_parallel_threads= `select @@slave_parallel_threads`
|
|
--let $slave_parallel_mode= `select @@slave_parallel_mode`
|
|
set global gtid_strict_mode=1;
|
|
|
|
|
|
--connection slave
|
|
--source include/stop_slave.inc
|
|
SET GLOBAL slave_parallel_threads=4;
|
|
set global slave_parallel_mode=optimistic;
|
|
change master to master_use_gtid=slave_pos;
|
|
--source include/start_slave.inc
|
|
|
|
--echo # Parallel Slave
|
|
--connection master
|
|
--let $master_server= "master"
|
|
--let $domain_1=0
|
|
--let $domain_2=0
|
|
--let $M_port= $MASTER_MYPORT
|
|
--let $S_port= $SLAVE_MYPORT
|
|
--let $sync_slave=1
|
|
--source include/start_alter_include.inc
|
|
--connection master
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection slave
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
--echo # cleanup
|
|
--source include/stop_slave.inc
|
|
--eval set global slave_parallel_threads = $slave_parallel_threads;
|
|
--eval set global slave_parallel_mode = $slave_parallel_mode;
|
|
--eval set global gtid_strict_mode = $gtid_strict_mode;
|
|
set global gtid_domain_id= 0;
|
|
--source include/start_slave.inc
|
|
|
|
--connection master
|
|
--eval set global binlog_alter_two_phase=$binlog_alter_two_phase;
|
|
--source include/rpl_end.inc
|