tedwhy 发表于 2018-10-5 14:27:23

MySQL5.6 GTID新特性实践

master {msandbox} (test) > show global variables like '%gtid%';  
+---------------------------------+----------------------------------------+
  
| Variable_name                   | Value                                  |
  
+---------------------------------+----------------------------------------+
  
| binlog_gtid_simple_recovery   | OFF                                    |
  
| enforce_gtid_consistency      | ON                                     |
  
| gtid_executed                   | 24024e52-bd95-11e4-9c6d-926853670d0b:1 |
  
| gtid_mode                     | ON                                     |
  
| gtid_owned                      |                                        |
  
| gtid_purged                     |                                        |
  
| simplified_binlog_gtid_recovery | OFF                                    |
  
+---------------------------------+----------------------------------------+7 rows in set (0.01 sec)
  

  
master {msandbox} (test) > flush logs;create table gtid_test2 (ID int) engine=innodb;Query OK, 0 rows affected (0.04 sec)Query OK, 0 rows affected (0.02 sec)
  

  
master {msandbox} (test) > flush logs;create table gtid_test3 (ID int) engine=innodb;Query OK, 0 rows affected (0.04 sec)Query OK, 0 rows affected (0.04 sec)
  

  
master {msandbox} (test) > show master status;
  
+------------------+----------+--------------+------------------+------------------------------------------+
  
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set                        |
  
+------------------+----------+--------------+------------------+------------------------------------------+
  
| mysql-bin.000005 |      359 |            |                  | 24024e52-bd95-11e4-9c6d-926853670d0b:1-3 |
  
+------------------+----------+--------------+------------------+------------------------------------------+1 row in set (0.00 sec)
  

  
master {msandbox} (test) > purge binary logs to 'mysql-bin.000004';Query OK, 0 rows affected (0.03 sec)
  

  
master {msandbox} (test) > show global variables like '%gtid%';
  
+---------------------------------+------------------------------------------+
  
| Variable_name                   | Value                                    |
  
+---------------------------------+------------------------------------------+
  
| binlog_gtid_simple_recovery   | OFF                                    |
  
| enforce_gtid_consistency      | ON                                       |
  
| gtid_executed                   | 24024e52-bd95-11e4-9c6d-926853670d0b:1-3 |
  
| gtid_mode                     | ON                                       |
  
| gtid_owned                      |                                          |
  
| gtid_purged                     | 24024e52-bd95-11e4-9c6d-926853670d0b:1   |
  
| simplified_binlog_gtid_recovery | OFF                                    |
  
+---------------------------------+------------------------------------------+7 rows in set (0.00 sec)


页: [1]
查看完整版本: MySQL5.6 GTID新特性实践