1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
# ==== Purpose ====
#
# Test the time-delayed replication feature, i.e.,
# CHANGE MASTER TO MASTER_DELAY=X:
#
# - Verify that slave has executed the events after but not before the
# delay timeout.
#
# - Verify that delay is correct when slave is already lagging
# due to slow queries.
#
# - Verify that STOP SLAVE works instantly even during a delay, and
# that it does not cause the waited-for event to be executed too
# early on slave.
#
# - Verify that changing back to no delay works.
#
# - Verify that RESET SLAVE sets the delay to 0.
#
# - Verify that setting a bad value for the delay gives an error.
#
# ==== Implementation ====
#
# We run the slave with 10 seconds lag.
#
# To simulate that the slave lags due to slow queries, we invoke a
# stored function that executes SLEEP if @@server_id==2. This requires
# that we run with binlog_format=STATEMENT.
#
# ==== Related Bugs and Worklogs ====
#
# WL#344: Time-delayed replication
# BUG#28760: Simulating a replication lag
# [duplicate] BUG#22072: configurable delayed replication
# [duplicate] BUG#21639: Add Replication Delay parameter
# BUG#56442: Slave executes delayed statements when STOP SLAVE is issued
#
# Needed so that sleeps get executed in the slave SQL thread.
--source include/have_binlog_format_statement.inc
--source include/set_privilege_checks_user_as_system_user.inc
--source include/master-slave.inc
call mtr.add_suppression("Unsafe statement written to the binary log using statement format");
--connection slave
call mtr.add_suppression("Unsafe statement written to the binary log using statement format");
--connection master
--let $delay= 10
--let $slave_sleep= 2
--echo [on master]
CREATE TABLE t1 (a VARCHAR(100), b INT);
INSERT INTO t1 VALUES ("zero", 0);
--echo ==== Normal setup ====
--echo [on slave]
--source include/sync_slave_sql_with_master.inc
--source include/stop_slave.inc
--disable_query_log
eval CHANGE REPLICATION SOURCE TO SOURCE_DELAY = $delay;
--enable_query_log
--source include/start_slave.inc
--let $assert_text= SHOW SLAVE STATUS should return the same delay that we set with CHANGE MASTER
--let $assert_cond= [SHOW SLAVE STATUS, SQL_Delay, 1] = $delay
--source include/assert.inc
--echo [on master]
--connection master
INSERT INTO t1 VALUES ('normal setup', 1);
--let $trx_num= 4
--source extra/rpl_tests/check_slave_delay.inc
--echo ==== Slave lags "naturally" after master ====
--echo [on master]
--disable_query_log
--echo # CREATE FUNCTION delay_on_slave(time_units INT) RETURNS INT BEGIN IF @@server_id = 2 THEN RETURN SLEEP(time_units * T); ELSE RETURN 0; END IF; END
--eval CREATE FUNCTION delay_on_slave(time_units INT) RETURNS INT BEGIN IF @@server_id = 2 THEN RETURN SLEEP(time_units * $slave_sleep); ELSE RETURN 0; END IF; END
--enable_query_log
INSERT INTO t1 SELECT delay_on_slave(3), 2;
--let $trx_num= 6
--source extra/rpl_tests/check_slave_delay.inc
--save_master_pos
INSERT INTO t1 VALUES ('slave is already lagging: this statement should execute immediately', 3);
--let $trx_num= 7
--source extra/rpl_tests/check_slave_delay.inc
INSERT INTO t1 SELECT delay_on_slave(2), 4;
--let $trx_num= 8
--source extra/rpl_tests/check_slave_delay.inc
--echo ==== STOP SLAVE / START SLAVE + DML ====
--source include/rpl_connection_slave.inc
--source include/stop_slave.inc
--disable_query_log
eval CHANGE REPLICATION SOURCE TO SOURCE_DELAY = $delay;
--enable_query_log
--source include/start_slave.inc
--echo [on master]
--connection master
INSERT INTO t1 VALUES ('stop slave and start slave: DML', 5);
--echo [on slave]
--connection slave
--sleep $slave_sleep
--let $timestamp_before_stop= `SELECT UNIX_TIMESTAMP()`
--let $relay_log_pos_before_stop= query_get_value(SHOW SLAVE STATUS, Relay_Log_Pos, 1)
--source include/stop_slave.inc
--let $assert_text= SQL thread position should not increase after STOP SLAVE
--let $assert_cond= [SHOW SLAVE STATUS, Relay_Log_Pos, 1] = $relay_log_pos_before_stop
--source include/assert.inc
--let $assert_text= Query should not be executed after STOP SLAVE
--let $assert_cond= MAX(b) = 4 FROM t1
--source include/assert.inc
--let $assert_text= Status should be '' after STOP SLAVE
--let $assert_cond= "[SHOW SLAVE STATUS, Slave_SQL_Running_State, 1]" = ""
--source include/assert.inc
--source include/start_slave.inc
--source include/rpl_connection_master.inc
--let $trx_num= 9
--source extra/rpl_tests/check_slave_delay.inc
--echo ==== STOP SLAVE / START SLAVE + DDL ====
--echo This verifies BUG#56442
--echo [on master]
CREATE TABLE t_check_dml_not_executed_prematurely (a INT);
--source include/save_master_pos.inc
--echo [on slave]
--connection slave
--sleep $slave_sleep
--let $timestamp_before_stop= `SELECT UNIX_TIMESTAMP()`
--let $relay_log_pos_before_stop= query_get_value(SHOW SLAVE STATUS, Relay_Log_Pos, 1)
--source include/stop_slave.inc
--let $assert_text= SQL thread position should not increase after STOP SLAVE
--let $assert_cond= [SHOW SLAVE STATUS, Relay_Log_Pos, 1] = $relay_log_pos_before_stop
--source include/assert.inc
--let $assert_text= Query should not be executed after STOP SLAVE
--let $assert_cond= COUNT(*) = 0 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = "t_check_dml_not_executed_prematurely"
--source include/assert.inc
--let $assert_text= Status should be '' after STOP SLAVE
--let $assert_cond= "[SHOW SLAVE STATUS, Slave_SQL_Running_State, 1]" = ""
--source include/assert.inc
--source include/start_slave.inc
--source include/rpl_connection_master.inc
--let $trx_num= 10
--source extra/rpl_tests/check_slave_delay.inc
--source include/rpl_connection_slave.inc
--let $assert_text= DDL Query should be executed
--let $assert_cond= COUNT(*) = 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = "t_check_dml_not_executed_prematurely"
--source include/assert.inc
--source include/check_slave_is_running.inc
--echo ==== Change back to no delay ====
--echo [on slave]
--source include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = 0;
--let $assert_text= Delay should be 0 when we set it to 0
--let $assert_cond= [SHOW SLAVE STATUS, SQL_Delay, 1] = 0
--source include/assert.inc
--echo ==== Reset delay with RESET SLAVE ====
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = 71;
--source include/start_slave.inc
--let $assert_text= Delay should be 71 when we set it to 71
--let $assert_cond= [SHOW SLAVE STATUS, SQL_Delay, 1] = 71
--source include/assert.inc
--source include/stop_slave.inc
RESET SLAVE;
--source include/start_slave.inc
--let $assert_text= Delay should be 0 after RESET SLAVE
--let $assert_cond= [SHOW SLAVE STATUS, SQL_Delay, 1] = 0
--source include/assert.inc
--echo ==== Set an invalid value for the delay ====
--source include/stop_slave.inc
--echo # Expect error for setting negative delay
--error ER_PARSE_ERROR
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = -1;
--echo # Expect that it's ok to set delay of 2^31-1
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = 2147483647;
--echo # Expect error for setting delay between 2^31 and 2^32-1
--error ER_SOURCE_DELAY_VALUE_OUT_OF_RANGE
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = 2147483648;
--echo # Expect error for setting delay to nonsense
--error ER_PARSE_ERROR
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = blah;
# todo: CHANGE MASTER TO MASTER_DELAY = 999999999999999999999999999
# should give error
CHANGE REPLICATION SOURCE TO SOURCE_DELAY = 0;
--source include/start_slave.inc
--echo ==== Clean up ====
--echo [on master]
--connection master
DROP TABLE t1, t_check_dml_not_executed_prematurely;
DROP FUNCTION delay_on_slave;
--echo [on slave]
--source include/sync_slave_sql_with_master.inc
--source include/rpl_end.inc
|