forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpl_mts_pending_events.inc
123 lines (113 loc) · 4.91 KB
/
rpl_mts_pending_events.inc
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
###############################################################################
# This .inc is used to check coordinator behaviour of scheduling an event
# when the new event cannot be placed into worker's queue due to size limit
# (SLAVE_PENDING_JOBS_SIZE_MAX)
#
# Usage:
# --let $table_to_lock=db1.t
# --let $query_that_waits_on_table_lock=INSERT INTO db1.t VALUES ('small event')
# --let $query_that_needs_to_be_processed_by_coordinator=INSERT INTO db2.t VALUES (REPEAT('big event', $mts_pending_max))
# --let $tables_involved_in_test=db1.t, db2.t
# --source ../mysql-test/extra/rpl_tests/rpl_mts_pending_events.inc
#
# Parameters:
#
# $table_to_lock:
# Provide full table name that needs to be locked using LOCK TABLE.
# Eg: --let $table_to_lock=db1.t
#
# $query_that_waits_on_table_lock:
# A query that cannot be executed due the lock acquired by LOCK TABLE.
# Eg: --let $table_to_lock=db1.t
# --let $query_that_waits_on_table_lock=INSERT INTO db1.t VALUES ('small event')
#
# $query_that_needs_to_be_processed_by_coordinator:
# A query that will be processed by coordinator only after
# $query_that_waits_on_table_lock is completely executed due to size limit
# (SLAVE_PENDING_JOBS_SIZE_MAX)
# --let $query_that_needs_to_be_processed_by_coordinator=INSERT INTO db2.t VALUES (REPEAT('big event', $mts_pending_max))
#
# $tables_involved_in_test:
# Tables that are involved in the test. This list will be used to do diff
# between master and slave's tables to test that replication worked fine.
# Eg: --let $tables_involved_in_test=db1.t, db2.t
#
###############################################################################
if (!$table_to_lock)
{
--die ERROR IN TEST: you must set $table_to_lock before sourcing rpl_mts_pending_events.inc.
}
if (!$query_that_waits_on_table_lock)
{
--die ERROR IN TEST: you must set $query_that_waits_on_table_lock before sourcing rpl_mts_pending_events.inc.
}
if (!$query_that_needs_to_be_processed_by_coordinator)
{
--die ERROR IN TEST: you must set $query_that_needs_to_be_processed_by_coordinator before sourcing rpl_mts_pending_events.inc.
}
if (!$tables_involved_in_test)
{
--die ERROR IN TEST: you must set $tables_involved_in_test before sourcing rpl_mts_pending_events.inc.
}
--echo #
--echo # 1) On Slave, lock one table so that any operation on that
--echo # will be waiting for the lock to be released.
--echo #
--source include/rpl_connection_slave1.inc
--eval LOCK TABLE $table_to_lock WRITE
--echo #
--echo # 2) Execute query that is going to wait for the table lock.
--echo #
--source include/rpl_connection_master.inc
--eval $query_that_waits_on_table_lock
--echo #
--echo # 3) Wait on Slave till a worker picks this event and wait for the
--echo # lock (which is acquired in step 1)
--echo #
--source include/rpl_connection_slave.inc
--let $wait_condition= SELECT COUNT(*) = 1 FROM information_schema.processlist WHERE state = "Waiting for table metadata lock"
--source include/wait_condition.inc
--echo #
--echo # 4) Now on Master, insert another query that reaches slave.
--echo #
--source include/rpl_connection_master.inc
--eval $query_that_needs_to_be_processed_by_coordinator
--echo #
--echo # 5) Check that Coordinator waits for the query (at step 2) to be
--echo # executed before dedicating this new query (at step 4) to
--echo # one of the workers because of the event size limits.
--echo #
--source include/rpl_connection_slave.inc
--let $assert_text= Check that one of the applier worker thread is waiting for the table metadata lock.
--let $assert_cond= [SELECT count(*) FROM information_schema.processlist WHERE state = "Waiting for table metadata lock"] = 1
--source include/assert.inc
--let $wait_condition= SELECT count(*) = 1 FROM information_schema.processlist WHERE state = "Waiting for Slave Workers to free pending events"
--source include/wait_condition.inc
--echo #
--echo # 6) Release the lock acquired in step 1, so that first query will
--echo # continue it's work and once it is done, second big event
--echo # will also continue it's work.
--echo #
--source include/rpl_connection_slave1.inc
UNLOCK TABLES;
--echo #
--echo # 7) check that slave is able to catch up with master after releasing the
--echo # lock in step 6.
--echo #
--echo # 7.1) Sync SQL thread with Master.
--echo #
--source include/rpl_connection_master.inc
--source include/sync_slave_sql_with_master.inc
--echo #
--echo # 7.2) Diff all the tables involved in the test to prove
--echo # that replication worked fine.
--echo #
--let $number_of_tables_involved_in_test=`SELECT LENGTH('$tables_involved_in_test') - LENGTH(REPLACE('$tables_involved_in_test',',','')) + 1`
--let $t=1
while ($t <= $number_of_tables_involved_in_test)
{
--let $table= `SELECT SUBSTRING_INDEX(SUBSTRING_INDEX('$tables_involved_in_test', ',', $t), ',', -1 )`
--let $diff_tables= master:$table,slave:$table
--source include/diff_tables.inc
--inc $t
}