File: rpl_receive_event_count.inc

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (331 lines) | stat: -rw-r--r-- 9,373 bytes parent folder | download
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# ==== Purpose ====
#
# Receive a specified number of events on the slave, possibly pausing
# in the middle of a transaction.
#
# This script assumes that the receiver thread is stopped when the
# script starts.  The script does not involve the applier thread(s).
#
# ==== Usage ====
#
# --let $rpl_after_received_events_action= [stop|flush|hang]
# --let $rpl_event_count= N
# [--let $rpl_channel_name= NAME]
# [--let $rpl_count_header_events= 1]
# [--let $rpl_count_only_event_type= EVENT_TYPE]
# [--let $slave_timeout= N]
# [--let $rpl_debug= 1]
# [--let $rpl_continue_event_count_after_hanging= 1]
# [--let $rpl_skip_event_count_print_in_result_log= 1]
# --source include/rpl_receive_event_count.inc
#
# Parameters:
#
# $rpl_after_received_events_action
#   Specifies what to do after receiving the events:
#   stop  - Issue STOP REPLICA IO_THREAD and wait for it to stop.
#   flush - Issue FLUSH RELAY LOG and then continue to replicate.
#   hang  - Leave the receiver thread hanging on a debug sync point.
#           The caller must later release the receiver thread using:
#           SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';
#
# $rpl_event_count
#   Replicate this number of events before stopping.
#
# $rpl_count_header_events
#   By default, the count starts after all
#   Format_description_log_events, Rotate_log_events, and
#   Previous_gtids_log_events.  If this parameter is set, these events
#   are counted too.
#
# $rpl_count_only_event_type
#   By default, counts events of all types (except those excluded by
#   $rpl_count_header_events).  If this variable is set, counts only
#   this type of event.
#
# $slave_timeout
#   Wait this number of seconds before receiving events (default 300).
#
# $rpl_debug
#   Print debug info.
#
# $rpl_channel_name
#   See include/wait_for_slave_param.inc
#
# $rpl_continue_event_count_after_hanging
#   The include should not start the I/O Thread because it is already
#   started.
#
# $rpl_skip_event_count_print_in_result_log
#   Set if you do not want to print sensible info (action and
#   event count) in the result log. This is useful if action or event
#   count varies for different configurations. For eg: event count
#   can be different for STS and MTS.

# Sanity check.
if (!$rpl_event_count)
{
  --die ERROR IN TEST: $rpl_event_count must be > 0.
}

if (!$rpl_after_received_events_action)
{
  --die ERROR IN TEST: $rpl_after_received_events_action must be set.
}
# IO thread should be stopped
--let $_for_channel=
if ($rpl_channel_name != '')
{
  --let $_for_channel= FOR CHANNEL '$rpl_channel_name'
}

--let $is_slave_io_running= query_get_value(SHOW SLAVE STATUS $_for_channel, Slave_IO_Running, 1)
if (!$rpl_continue_event_count_after_hanging)
{
  if ($is_slave_io_running != 'No' )
  {
    --die ERROR IN TEST: The I/O thread was expected to be stopped.
  }
}
if ($rpl_continue_event_count_after_hanging)
{
  if ($is_slave_io_running != 'Yes' )
  {
    --die ERROR IN TEST: The I/O thread was expected to be running.
  }
}
# Generate something sensible on the result log.
--let $_rrec_ev= events
if ($rpl_event_count == 1)
{
  --let $_rrec_ev= event
}
--let $_rrec_event_type_text= non-header $_rrec_ev
if ($rpl_count_header_events)
{
  --let $_rrec_event_type_text= $_rrec_ev
}
if ($rpl_count_only_event_type)
{
  --let $_rrec_event_type_text= $rpl_count_only_event_type $_rrec_ev
}
if (!$rpl_skip_event_count_print_in_result_log)
{
--let $include_filename= rpl_receive_event_count.inc [$rpl_after_received_events_action after $rpl_event_count $_rrec_event_type_text]
}
if ($rpl_skip_event_count_print_in_result_log)
{
--let $include_filename= rpl_receive_event_count.inc
}
--source include/begin_include_file.inc

if (!$rpl_debug)
{
  --disable_query_log
}

--let $_rrec_timeout_clause= TIMEOUT 300
if ($slave_timeout)
{
  --let $_rrec_timeout_clause= TIMEOUT $slave_timeout
}

# Make it pause on the debug point and start the receiver thread.
--let $debug_point= pause_after_queue_event
--let $debug_point_silent= 1
--source include/add_debug_point.inc

if (!$rpl_continue_event_count_after_hanging)
{
  --eval START REPLICA IO_THREAD $_for_channel;
}
if ($rpl_continue_event_count_after_hanging)
{
  SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';
}

# Cleanup from previous runs
--let $_rrec_file=

# Determine if we need to check the event type.
--let $_rrec_need_event_type= 0
if ($rpl_count_event_type)
{
  --let $_rrec_need_event_type= 1
}
if (!$rpl_count_header_events)
{
  --let $_rrec_need_event_type= 1
}
if (!$_rrec_need_event_type)
{
  --let $_rrec_event_type= [unknown]
}

# Step through events.
# Loop invariant: at the beginning of each iteration, it has received
# and queued one more event.
--let $_rrec_counted_events= 0
while ($_rrec_counted_events < $rpl_event_count)
{
  eval SET DEBUG_SYNC= 'now WAIT_FOR reached_after_queue_event $_rrec_timeout_clause';

  if (`SHOW COUNT(*) WARNINGS`)
  {
    --source include/show_rpl_debug_info.inc
    --die Timeout in rpl_receive_event_count.inc while waiting for event to be queued.
  }

  # Get the event type.
  if ($_rrec_need_event_type)
  {
    # Get the position of the event.
    if ($_rrec_file != '')
    {
      --let $result= No such row
      # In non-first iteration, read the position of the next event.
      while ($result == No such row)
      {
        --let $result= query_get_value("SHOW RELAYLOG EVENTS IN '$_rrec_file' FROM $_rrec_pos LIMIT 1, 1", Pos, 1)
        if ($result == No such row)
        {
          # Unpause the receiver thread
          SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';
          eval SET DEBUG_SYNC= 'now WAIT_FOR reached_after_queue_event $_rrec_timeout_clause';
        }
      }
      --let $_rrec_pos= $result
    }
    if ($_rrec_file == '')
    {
      # Find name of last relay log.
      --source include/rpl_get_end_of_relay_log.inc
      --let $_rrec_file= $relay_log_file
      # Find number of events in last relay log.
      --let $statement= SHOW RELAYLOG EVENTS IN '$_rrec_file'
      --let $column= Log_name
      --source include/get_row_count.inc
      # Get position for last event in relay log.
      --dec $row_count
      --let $_rrec_pos= query_get_value("SHOW RELAYLOG EVENTS IN '$_rrec_file' LIMIT $row_count, 1", Pos, 1)
    }
    # Get the event type.
    --let $_rrec_event_type= query_get_value(SHOW RELAYLOG EVENTS IN '$_rrec_file' FROM $_rrec_pos, Event_type, 1)
    if ($rpl_debug)
    {
      --echo Received event of type $_rrec_event_type at file $_rrec_file, position $_rrec_pos
    }
  }

  # Skip events that don't match $rpl_count_only_event_type.
  --let $_rrec_count_event= 1
  if ($rpl_count_only_event_type != '')
  {
    if ($_rrec_event_type != $rpl_count_only_event_type)
    {
      if ($rpl_debug)
      {
        --echo Skipping event of type $_rrec_event_type (is not a $rpl_count_only_event_type)
      }
      --let $_rrec_count_event= 0
    }
  }

  # Move to the next relay log file if needed.
  if ($_rrec_event_type == Rotate)
  {
    # Find name of last relay log.
    --source include/rpl_get_end_of_relay_log.inc
    if ($_rrec_file != $relay_log_file)
    {
      --let $_rrec_file= $relay_log_file
      --let $_rrec_pos= 1
    }
  }

  # Skip header events.
  if (!$rpl_count_header_events)
  {
    if ($_rrec_event_type == Format_desc)
    {
      --let $_rrec_count_event= 0
      if ($rpl_debug)
      {
        --echo Skipping event of type $_rrec_event_type (is a header event)
      }
    }
    if ($_rrec_event_type == Rotate)
    {
      --let $_rrec_count_event= 0
      if ($rpl_debug)
      {
        --echo Skipping event of type $_rrec_event_type (is a header event)
      }
    }
    if ($_rrec_event_type == Previous_gtids)
    {
      --let $_rrec_count_event= 0
      if ($rpl_debug)
      {
        --echo Skipping event of type $_rrec_event_type (is a header event)
      }
    }
  }

  # Increment counter if this event counts.
  if ($_rrec_count_event)
  {
    if ($rpl_debug)
    {
      --echo Counting event of type '$_rrec_event_type'
    }
    --inc $_rrec_counted_events
  }

  # Unpause the receiver thread.
  if ($_rrec_counted_events < $rpl_event_count)
  {
    SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';
  }
}

# Execute the required action.
if ($rpl_after_received_events_action == 'flush')
{
  --source include/remove_debug_point.inc
  FLUSH LOCAL RELAY LOGS;
  SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';
}

if ($rpl_after_received_events_action == 'stop')
{
  --let $_rrec_connection= $CURRENT_CONNECTION
  --let $_rrec_port= `SELECT @@PORT`
  --connect (_rrec_other_connection,127.0.0.1,root,,test,$_rrec_port,)

  --connection _rrec_other_connection
  --send_eval STOP REPLICA IO_THREAD $_for_channel;
  --connection $_rrec_connection

  SET DEBUG_SYNC= 'now WAIT_FOR reached_stopping_io_thread';
  --source include/remove_debug_point.inc
  SET DEBUG_SYNC= 'now SIGNAL continue_after_queue_event';

  --connection _rrec_other_connection
  --reap
  --connection $_rrec_connection

  --disconnect _rrec_other_connection
  --source include/wait_for_slave_io_to_stop.inc
}

if ($rpl_after_received_events_action != 'flush')
{
  if ($rpl_after_received_events_action != 'stop')
  {
    --source include/remove_debug_point.inc
  }
}

--let $include_filename= rpl_receive_event_count.inc
--source include/end_include_file.inc