mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
This is actually an existing problem in the old binlog implementation, and this patch is applicable to old binlog also. The problem is that RESET MASTER can run concurrently with binlog dump threads / connected slaves. This will remove the binlog from under the feet of the reader, which can cause all sorts of strange behaviour. This patch fixes the problem by disallowing to run RESET MASTER when dump threads (or other RESET MASTER or SHOW BINARY LOGS) are running. An error is thrown in this case, user must stop slaves and/or kill dump threads to make the RESET MASTER go through. A slave that connects in the middle of RESET MASTER will wait for it to complete. Fix a lot of test cases to kill any lingering dump threads before doing RESET MASTER, mostly just by sourcing include/kill_binlog_dump_threads.inc. Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
89 lines
2.4 KiB
SQL
89 lines
2.4 KiB
SQL
#############################################################
|
|
# Author: Rafal
|
|
# Date: 2007-08-20
|
|
# based on rpl_multi_engine3.inc
|
|
#############################################################
|
|
|
|
connection slave;
|
|
STOP SLAVE;
|
|
RESET SLAVE;
|
|
|
|
connection master;
|
|
--source include/kill_binlog_dump_threads.inc
|
|
RESET MASTER;
|
|
|
|
connection slave;
|
|
START SLAVE;
|
|
|
|
--echo --- Populate t1 with data ---
|
|
connection master;
|
|
--disable_query_log
|
|
INSERT INTO t1 VALUES(42,1,'Testing MySQL databases is a cool ',
|
|
'Must make it bug free for the customer',
|
|
654321.4321,15.21,0,1965,"1905-11-14");
|
|
INSERT INTO t1 VALUES(2,1,'Testing MySQL databases is a cool ',
|
|
'Must make it bug free for the customer',
|
|
654321.4321,15.21,0,1965,"1965-11-14");
|
|
INSERT INTO t1 VALUES(4,1,'Testing MySQL databases is a cool ',
|
|
'Must make it bug free for the customer',
|
|
654321.4321,15.21,0,1965,"1985-11-14");
|
|
INSERT INTO t1 VALUES(142,1,'Testing MySQL databases is a cool ',
|
|
'Must make it bug free for the customer',
|
|
654321.4321,15.21,0,1965,"1995-11-14");
|
|
INSERT INTO t1 VALUES(412,1,'Testing MySQL databases is a cool ',
|
|
'Must make it bug free for the customer',
|
|
654321.4321,15.21,0,1965,"2005-11-14");
|
|
--enable_query_log
|
|
|
|
--echo --- Select from t1 on master ---
|
|
select *
|
|
from t1
|
|
order by id;
|
|
|
|
sync_slave_with_master;
|
|
--echo --- Select from t1 on slave ---
|
|
select *
|
|
from t1
|
|
order by id;
|
|
|
|
--echo --- Perform basic operation on master ---
|
|
--echo --- and ensure replicated correctly ---
|
|
connection master;
|
|
|
|
--echo --- Update t1 on master --
|
|
UPDATE t1 SET b1 = 0, bc='updated', t="2006-02-22"
|
|
WHERE id < 100
|
|
ORDER BY id;
|
|
|
|
--echo --- Check the update on master ---
|
|
SELECT *
|
|
FROM t1
|
|
WHERE id < 100
|
|
ORDER BY id;
|
|
|
|
# Must give injector thread a little time to get update
|
|
# into the binlog other wise we will miss the update.
|
|
|
|
sync_slave_with_master;
|
|
--echo --- Check Update on slave ---
|
|
SELECT *
|
|
FROM t1
|
|
WHERE id < 100
|
|
ORDER BY id;
|
|
|
|
connection master;
|
|
--echo --- Remove a record from t1 on master ---
|
|
DELETE FROM t1 WHERE id = 412;
|
|
|
|
--echo --- Show current count on master for t1 ---
|
|
SELECT COUNT(*) FROM t1;
|
|
|
|
sync_slave_with_master;
|
|
--echo --- Show current count on slave for t1 ---
|
|
SELECT COUNT(*) FROM t1;
|
|
|
|
connection master;
|
|
TRUNCATE TABLE t1;
|
|
sync_slave_with_master;
|
|
connection master;
|