mirror of
https://github.com/MariaDB/server.git
synced 2026-02-21 18:19:03 +01:00
Implement an improved binlog implementation that is integrated into the storage engine. The new implementation is enabled with the --binlog-storage-engine option. Initially the InnoDB storage engine implements the binlog. Integrating the binlog in the storage engine improves performance, since it makes the InnoDB redo log the single source of truth and avoids the need for expensive two-phase commit between binlog and engine. It also makes it possible to disable durability (set --innodb-flush-log-at-trx-commit=0) to further improve performance, while still preserving the ability to recover the binlog and database into a consistent state after a crash. The new binlog implementation also greatly improves the internal design and implementation of the binlog, and enables future enhancements for replication. This is a squash of the original 11.4-based patch series. Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
53 lines
1.3 KiB
Text
53 lines
1.3 KiB
Text
--source include/have_debug_sync.inc
|
|
--source include/have_binlog_format_mixed.inc
|
|
--source include/master-slave.inc
|
|
|
|
--connection master
|
|
CREATE TABLE t1 (a INT PRIMARY KEY);
|
|
INSERT INTO t1 VALUES (1);
|
|
FLUSH BINARY LOGS;
|
|
INSERT INTO t1 VALUES (2);
|
|
|
|
--echo *** Test that RESET MASTER fails when a slave is connected.
|
|
--error ER_BINLOG_IN_USE
|
|
RESET MASTER;
|
|
|
|
--connection master
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection slave
|
|
--source include/sync_with_master_gtid.inc
|
|
--source include/stop_slave.inc
|
|
|
|
--connection master
|
|
--echo *** Test that RESET MASTER fails on concurrent SHOW BINLOG EVENTS.
|
|
--source include/kill_binlog_dump_threads.inc
|
|
|
|
--connection master1
|
|
SET debug_sync= 'after_show_binlog_events SIGNAL waiting WAIT_FOR go';
|
|
--disable_result_log
|
|
send SHOW BINLOG EVENTS in 'master-bin.000001';
|
|
|
|
--connection master
|
|
SET debug_sync= 'now WAIT_FOR waiting';
|
|
--error ER_BINLOG_IN_USE
|
|
RESET MASTER;
|
|
SET debug_sync= 'now SIGNAL go';
|
|
|
|
--connection master1
|
|
reap;
|
|
--enable_result_log
|
|
|
|
--connection master
|
|
--echo *** RESET MASTER works when no concurrent reader.
|
|
RESET MASTER;
|
|
|
|
DROP TABLE t1;
|
|
--source include/save_master_gtid.inc
|
|
|
|
--connection slave
|
|
SET GLOBAL gtid_slave_pos= '';
|
|
--source include/start_slave.inc
|
|
--source include/sync_with_master_gtid.inc
|
|
|
|
--source include/rpl_end.inc
|