File: gr_provisioning_logical_backup.test

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 (110 lines) | stat: -rw-r--r-- 4,146 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
######################################################################################################
# Create a backup from a member of GR group , which at later point can be restored successfully.
#
# 0. Start GR on with 2 servers
# 1. Perform some DDL/DML operations on a member
# 2. Verify if the available backup (binlog file) can be later restored successfully on a non-member
# 3. Verify if that non-member can then be added to the GR group
# 4. Perform some DDL/DML operations to the group
# 5. Check mysqlbinlog output to test View Change Log events are written properly.
# 6. Cleanup
######################################################################################################

--source include/big_test.inc
--source include/have_group_replication_plugin.inc
--let $rpl_skip_group_replication_start= 1
--let $rpl_server_count= 3
--source include/group_replication.inc

# Start group replication on two servers

--echo
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--source include/start_and_bootstrap_group_replication.inc

--echo
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--source include/start_group_replication.inc

# Make sure number of servers in the group is 2
--let $group_replication_number_of_members= 2
--source include/gr_wait_for_number_of_members.inc

# Create a table and insert data into it.
USE test;
CREATE TABLE t1 (c1 INT NOT NULL PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t1 VALUES (0);
INSERT INTO t1 VALUES (1);
UPDATE t1 SET c1=2 WHERE c1=0;

# Get the binlog file
--let $server2_datadir= `SELECT @@DATADIR`
--let $server2_binlog_file= query_get_value(SHOW MASTER STATUS, File, 1)

# Restore the backup onto a 3rd server outside the GR group
--echo
--let $rpl_connection_name= server3
--source include/rpl_connection.inc
# Setting the arguments to connect to server3#
--let $server3_connection_args= --user=root --host=127.0.0.1 --port=$SERVER_MYPORT_3
# Restoring the backup file on server3 using mysqlbinlog client and the connection arguments set above
--exec $MYSQL_BINLOG $server2_datadir/$server2_binlog_file | $MYSQL $server3_connection_args

# See if the data has been properly restored on server3
--let $assert_text= 'There is a value 1 in table t1'
--let $assert_cond= [SELECT COUNT(*) AS count FROM test.t1 WHERE t1.c1 = 1, count, 1] = 1
--source include/assert.inc
--let $assert_text= 'There is a value 2 in table t1'
--let $assert_cond= [SELECT COUNT(*) AS count FROM test.t1 WHERE t1.c1 = 2, count, 1] = 1
--source include/assert.inc

# Add server3 to GR group
--source include/start_group_replication.inc

# Make sure number of servers in the group is 3
--let $group_replication_number_of_members= 3
--source include/gr_wait_for_number_of_members.inc

# Create a table and insert data into it.
USE test;
CREATE TABLE t2 (c1 INT NOT NULL PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t2 VALUES (0);
INSERT INTO t2 VALUES (1);
UPDATE t2 SET c1=2 WHERE c1=0;
--source include/rpl_sync.inc

# See if data has been successfully replicated across the group
--echo
--let $rpl_connection_name= server1
--source include/rpl_connection.inc
--let $assert_text= 'Checking the number of records in test.t2'
--let $assert_cond= [SELECT COUNT(*) as count FROM test.t2,count, 1] = 2
--source include/assert.inc

--echo
--let $rpl_connection_name= server2
--source include/rpl_connection.inc
--let $assert_text= 'Checking the number of records in test.t2'
--let $assert_cond= [SELECT COUNT(*) as count FROM test.t2,count, 1] = 2
--source include/assert.inc

# Get the binlog file
--let $server2_datadir= `SELECT @@DATADIR`
--let $server2_binlog_file= query_get_value(SHOW MASTER STATUS, File, 1)
# Record the binlog file
--exec $MYSQL_BINLOG $server2_datadir/$server2_binlog_file > $MYSQL_TMP_DIR/binlog_output

# Verifying the output of mysqlbinlog for VCLE
--let $grep_pattern= View_change_log_event
--let $grep_file= $MYSQL_TMP_DIR/binlog_output
--let $grep_output= print_count
--source include/grep_pattern.inc

# Drop table
DROP TABLE test.t1;
DROP TABLE test.t2;
--remove_file $MYSQL_TMP_DIR/binlog_output

--source include/group_replication_end.inc