Server IP : 172.67.216.182 / Your IP : 162.158.106.172 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/mysql-test/suite/group_replication/t/ |
Upload File : |
################################################################################################# # 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. Create a backup from the member using mysqldump # 3. Verify if that backup can be later restored successfully on a 3rd server # 4. See if that 3rd server can then be added to GR group # 5. Perform some DDL/DML operations on the group # 6. Cleanup ################################################################################################# --source include/big_test.inc --source ../inc/have_group_replication_plugin.inc --let $rpl_skip_group_replication_start= 1 --let $rpl_server_count= 3 --source ../inc/group_replication.inc # Start group replication on thwo servers --echo --let $rpl_connection_name= server1 --source include/rpl_connection.inc --source ../inc/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 ../inc/gr_wait_for_number_of_members.inc # Create a table and insert data into it. CREATE DATABASE db; USE db; 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; # Create a backup using mysqldump --let $server2_datadir= `SELECT @@DATADIR` --let $server2_backup_file= backup_server2.sql # Use mysqldump client to get a dump of server2 # --single-transaction uses savepoints --exec $MYSQL_DUMP --user=root --host=127.0.0.1 --single-transaction --port=$SLAVE_MYPORT --databases db > $server2_datadir/$server2_backup_file # Restore the backup onto a 3rd server outside the GR group --echo --let $rpl_connection_name= server3 --source include/rpl_connection.inc --exec $MYSQL --user=root --host=127.0.0.1 --port=$SERVER_MYPORT_3 < $server2_datadir/$server2_backup_file # See if the data has been properly restored on server3 --echo --let $assert_text= 'There is a value 1 in table t1' --let $assert_cond= [SELECT COUNT(*) AS count FROM db.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 db.t1 WHERE t1.c1 = 2, count, 1] = 1 --source include/assert.inc # Add server3 to GR group --echo --source include/start_group_replication.inc # Make sure number of servers in the group is now 3 --echo --let $wait_timeout= 100 let $wait_condition=SELECT COUNT(*)=3 FROM performance_schema.replication_group_members where MEMBER_STATE="ONLINE"; --source include/wait_condition.inc # Now perform DDL/DML operations --echo # Create a table and insert data into it. USE db; 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 db.t2' --let $assert_cond= [SELECT COUNT(*) as count FROM db.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 db.t2' --let $assert_cond= [SELECT COUNT(*) as count FROM db.t2,count, 1] = 2 --source include/assert.inc # Drop table --echo DROP DATABASE db; --remove_file $server2_datadir/$server2_backup_file --source ../inc/group_replication_end.inc