-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathgr_applier_initialization.result
33 lines (33 loc) · 2.07 KB
/
gr_applier_initialization.result
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
include/group_replication.inc
Warnings:
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
[connection server1]
set session sql_log_bin=0;
call mtr.add_suppression("A group replication applier handler, marked *.*");
call mtr.add_suppression("Cannot start the group replication applier as *.*");
call mtr.add_suppression("On shutdown there was a timeout on the group replication applier *.*");
call mtr.add_suppression("The member is leaving a group without being on one");
set session sql_log_bin=1;
SET @group_replication_components_stop_timeout_save = @@GLOBAL.group_replication_components_stop_timeout;
SET GLOBAL group_replication_group_name= "2d249320-2e06-11e3-aa6e-0800200c9a66";
SET @debug_save= @@GLOBAL.DEBUG;
SET GLOBAL debug= 'd,double_unique_handler';
START GROUP_REPLICATION;
ERROR HY000: The START GROUP_REPLICATION command failed as the applier module failed to start.
SET @@GLOBAL.DEBUG= @debug_save;
include/start_group_replication.inc
SET GLOBAL group_replication_components_stop_timeout= 2;
include/assert.inc [The value of stop_components_timeout should be 2]
SET @@GLOBAL.DEBUG= 'd,applier_thd_timeout';
STOP GROUP_REPLICATION;
ERROR HY000: The STOP GROUP_REPLICATION command execution is incomplete: The applier thread got the stop signal while it was busy. The applier thread will stop once the current task is complete.
START GROUP_REPLICATION;
ERROR HY000: The START GROUP_REPLICATION command failed as the applier module failed to start.
SET DEBUG_SYNC= "now SIGNAL signal.applier_continue";
SET @@GLOBAL.DEBUG= @debug_save;
SET GLOBAl group_replication_components_stop_timeout = @group_replication_components_stop_timeout_save;
include/start_group_replication.inc
include/stop_group_replication.inc
SET @@GLOBAL.DEBUG= @debug_save;
include/group_replication_end.inc