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
|
include/rpl_init.inc [topology=1->2, 3->2, 4->2]
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.
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.
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 server_1]
CREATE TEMPORARY TABLE t1 (a INT);
include/sync_slave_sql_with_master.inc [FOR CHANNEL 'channel_1']
[connection server_3]
CREATE TEMPORARY TABLE t3 (a INT);
include/sync_slave_sql_with_master.inc [FOR CHANNEL 'channel_3']
Stopping slave on all channels
include/stop_slave.inc
Warnings:
Warning 3022 This operation may not be safe when the replica has temporary tables. The tables will be kept open until the server restarts or until the tables are deleted by any replicated DROP statement. Suggest to wait until replica_open_temp_tables = 0.
include/start_slave.inc
Stopping slave on channel_4 only
include/stop_slave.inc [FOR CHANNEL 'channel_4']
include/assert.inc [Replica_open_temp_tables is correctly set to 2 after creating temp tables]
Stopping slave on channel_1 only
include/stop_slave.inc [FOR CHANNEL 'channel_1']
Warnings:
Warning 3022 This operation may not be safe when the replica has temporary tables. The tables will be kept open until the server restarts or until the tables are deleted by any replicated DROP statement. Suggest to wait until replica_open_temp_tables = 0.
include/assert.inc [Replica_open_temp_tables is correctly set to 2 after stopping replication thread]
RESET SLAVE FOR CHANNEL 'channel_1';
Warnings:
Warning 1287 'RESET SLAVE' is deprecated and will be removed in a future release. Please use RESET REPLICA instead
include/assert.inc [Replica_open_temp_tables is correctly set to 1 after resetting channel]
Stopping slave on channel_3 only
include/stop_slave.inc [FOR CHANNEL 'channel_3']
Warnings:
Warning 3022 This operation may not be safe when the replica has temporary tables. The tables will be kept open until the server restarts or until the tables are deleted by any replicated DROP statement. Suggest to wait until replica_open_temp_tables = 0.
Warnings:
Warning 3022 This operation may not be safe when the replica has temporary tables. The tables will be kept open until the server restarts or until the tables are deleted by any replicated DROP statement. Suggest to wait until replica_open_temp_tables = 0.
include/start_slave.inc [FOR CHANNEL 'channel_3']
[connection server_3]
DROP TEMPORARY TABLE t3;
include/sync_slave_sql_with_master.inc [FOR CHANNEL 'channel_3']
include/assert.inc [Replica_open_temp_tables is correctly set to 0 after dropping last temp table]
Stopping slave on channel_3 only
include/stop_slave.inc [FOR CHANNEL 'channel_3']
CHANGE REPLICATION SOURCE TO SOURCE_PORT = 4711 FOR CHANNEL 'channel_3';
RESET SLAVE ALL;
Warnings:
Warning 1287 'RESET SLAVE' is deprecated and will be removed in a future release. Please use RESET REPLICA instead
include/rpl_end.inc
|