Detailed explanation of MySQL master-slave replication practice - GTID-based replication

Detailed explanation of MySQL master-slave replication practice - GTID-based replication

GTID-based replication

Introduction

GTID-based replication is a new replication method added after MySQL 5.6.

GTID (global transaction identifier) ​​is a global transaction ID, which ensures that each transaction submitted on the master database has a unique ID in the cluster.

In the original log-based replication, the slave needs to tell the master which offset to use for incremental synchronization. If the specification is wrong, data will be missed, resulting in data inconsistency.

In GTID-based replication, the slave database will inform the master database of the GTID value of the executed transaction, and then the master database will return a list of GTIDs of all unexecuted transactions to the slave database. And it can be guaranteed that the same transaction is executed only once in the specified slave database.

Actual Combat

1. Create a replication account on the master database and grant permissions

GTID-based replication will automatically replay transactions that have not been executed on the slave, so do not create the same account on other slaves. If the same account is created, it may cause errors in the replication link.

mysql> create user 'repl'@'172.%' identified by '123456';

Note that the password in production must meet the relevant specifications to achieve a certain password strength, and it is required that the master database can only be accessed on a specific network segment on the slave database.

mysql> grant replication slave on *.* to 'repl'@'172.%';

View Users

mysql> select user, host from mysql.user;
+-----------+-----------+
| user | host |
+-----------+-----------+
| prontera | % |
| root | % |
| mysql.sys | localhost |
| root | localhost |
+-----------+-----------+
4 rows in set (0.00 sec)

View authorization

mysql> show grants for repl@'172.%';
+--------------------------------------------------+
| Grants for repl@172.% |
+--------------------------------------------------+
| GRANT REPLICATION SLAVE ON *.* TO 'repl'@'172.%' |
+--------------------------------------------------+
1 row in set (0.00 sec)

2. Configure the master database server

[mysqld]
log_bin = /var/log/mysql/mysql-bin
log_bin_index = /var/log/mysql/mysql-bin.index
binlog_format = row
server_id = 101
gtid_mode = ON
enforce_gtid_consistency = ON
#log_slave_updates = ON

NOTE: It is a good habit to separate logs from data, preferably in different data partitions.

enforce_gtid_consistency enforces GTID consistency. After enabling, the following commands cannot be used

create table ... select ...

mysql> create table dept select * from departments;
ERROR 1786 (HY000): Statement violates GTID consistency: CREATE TABLE ... SELECT.

Because they are actually two independent events, we can only split them up to create a table first, and then insert the data into the table

create temporary table

Temporary tables cannot be created within a transaction

mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> create temporary table dept(id int);
ERROR 1787 (HY000): Statement violates GTID consistency: CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE can only be executed outside transactional context. These statements are also not allowed in a function or trigger because functions and triggers are also considered to be multi-statement transactions.

Update transactional and non-transactional tables in the same transaction (MyISAM)

mysql> CREATE TABLE `dept_innodb` (id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT);
Query OK, 0 rows affected (0.04 sec)

mysql> CREATE TABLE `dept_myisam` (id INT(11) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT) ENGINE = `MyISAM`;
Query OK, 0 rows affected (0.03 sec)

mysql> begin;
Query OK, 0 rows affected (0.00 sec)

mysql> insert into dept_innodb(id) value(1);
Query OK, 1 row affected (0.00 sec)

mysql> insert into dept_myisam(id) value(1);
ERROR 1785 (HY000): Statement violates GTID consistency: Updates to non-transactional tables can only be done in either autocommitted statements or single-statement transactions, and never in the same statement as updates to transactional tables.

Therefore, it is recommended to choose Innodb as the default database engine.

log_slave_updates This option is required for GTID-based replication in MySQL 5.6, but it increases the IO load of the slave server. In MySQL 5.7, this option is no longer required.

3. Configure the slave server

master_info_repository and relay_log_info_repository

Before MySQL 5.6.2, the master information recorded by the slave and the information of the slave application binlog are stored in files, namely master.info and relay-log.info. After version 5.6.2, it is allowed to record in tables. The corresponding tables are mysql.slave_master_info and mysql.slave_relay_log_info, and both tables are innodb engine tables.

[mysqld]
log_bin = /var/log/mysql/mysql-bin
log_bin_index = /var/log/mysql/mysql-bin.index
server_id = 102
# slaves
relay_log = /var/log/mysql/relay-bin
relay_log_index = /var/log/mysql/relay-bin.index
relay_log_info_file = /var/log/mysql/relay-bin.info
enforce_gtid_consistency = ON
log_slave_updates = ON
read_only = ON
master_info_repository = TABLE
relay_log_info_repository = TABLE

4. Initialize from library data - [optional]

Back up data on the primary database first

Copy the code as follows:

mysqldump --single-transaction --master-data=2 --triggers --routines --all-databases --events -u root -p > backup.sql

--master-data=2 This option appends the position and file name of the current server's binlog to the output file (show master status). If 1, the offset is spliced ​​into the CHANGE MASTER command. If 2, the output offset information will be annotated.

--all-databases Because GTID-based replication records all transactions, this option is recommended to build a complete dump.

Common Mistakes

Appears when importing SQL from the library

Copy the code as follows:

ERROR 1840 (HY000) at line 24: @@GLOBAL.GTID_PURGED can only be set when @@GLOBAL.GTID_EXECUTED is empty.

At this time, enter the MySQL Command Line of the slave database and use reset master

5. Start GTID-based replication

There are [email protected] and [email protected], and the data has been synchronized to the slave through mysqldump. Now configure the replication link on the slave server

mysql> change master to master_host='master', master_user='repl', master_password='123456', master_auto_position=1;
Query OK, 0 rows affected, 2 warnings (0.06 sec)

Start Replication

mysql> start slave;

After successful startup, check the status of the slave

mysql> show slave status\G
*************************** 1. row ***************************
    Slave_IO_State: Queueing master event to the relay log
     Master_Host: master
     Master_User: repl
     Master_Port: 3306
    Connect_Retry: 60
    Master_Log_File:mysql-bin.000002
   Read_Master_Log_Pos: 12793692
    Relay_Log_File: relay-bin.000002
    Relay_Log_Pos: 1027
  Relay_Master_Log_File: mysql-bin.000002
    Slave_IO_Running: Yes
   Slave_SQL_Running: Yes
    Replicate_Do_DB:
   Replicate_Ignore_DB:
   Replicate_Do_Table:
  Replicate_Ignore_Table:
  Replicate_Wild_Do_Table:
 Replicate_Wild_Ignore_Table:
     Last_Errno: 0
     Last_Error:
     Skip_Counter: 0
   Exec_Master_Log_Pos: 814
    Relay_Log_Space: 12794106
    Until_Condition: None
    Until_Log_File:
    Until_Log_Pos: 0
   Master_SSL_Allowed: No
   Master_SSL_CA_File:
   Master_SSL_CA_Path:
    Master_SSL_Cert:
   Master_SSL_Cipher:
    Master_SSL_Key:
  Seconds_Behind_Master: 5096
Master_SSL_Verify_Server_Cert: No
    Last_IO_Errno: 0
    Last_IO_Error:
    Last_SQL_Errno: 0
    Last_SQL_Error:
 Replicate_Ignore_Server_Ids:
    Master_Server_Id: 101
     Master_UUID: a9fd4765-ec70-11e6-b543-0242ac140002
    Master_Info_File: mysql.slave_master_info
     SQL_Delay: 0
   SQL_Remaining_Delay: NULL
  Slave_SQL_Running_State: Reading event from the relay log
   Master_Retry_Count: 86400
     Master_Bind:
  Last_IO_Error_Timestamp:
  Last_SQL_Error_Timestamp:
    Master_SSL_Crl:
   Master_SSL_Crlpath:
   Retrieved_Gtid_Set: a9fd4765-ec70-11e6-b543-0242ac140002:1-39
   Executed_Gtid_Set: a9fd4765-ec70-11e6-b543-0242ac140002:1-4
    Auto_Position: 1
   Replicate_Rewrite_DB:
     Channel_Name:
   Master_TLS_Version:
1 row in set (0.00 sec)

When Slave_IO_Running, Slave_SQL_Running is YES,

If Slave_SQL_Running_State is Slave has read all relay log; waiting for more updates, the replication link is successfully established.

6. Summary

advantage

  1. Because there is no need to manually set the log offset, failover can be easily performed
  2. If log_slave_updates is enabled, the slave will not lose any changes made on the master

shortcoming

  1. There are certain restrictions on the SQL executed
  2. Only MySQL versions after 5.6 are supported, and earlier versions than 5.6 are not recommended

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed introduction to GTID mode of MySQL master-slave replication
  • MYSQL database GTID realizes master-slave replication (super convenient)
  • Solution to the problem that synchronous replication errors cannot be skipped in MySQL5.6 GTID mode
  • An example of changing traditional replication to GTID replication without stopping business in MySQL 5.7
  • MySQL 5.6 master-slave replication based on GTID
  • Tutorial on using GTIDs replication protocol and outage protocol in MySQL
  • Specific use of GTID replication in MySQL replication

<<:  Layim in javascript to find friends and groups

>>:  Detailed explanation of how to install centos7 using win10's built-in virtual machine hyper-v

Recommend

A brief discussion on how Tomcat breaks the parent delegation mechanism

Table of contents JVM Class Loader Tomcat class l...

Example of implementing QR code scanning effects with CSS3

Online Preview https://jsrun.pro/AafKp/ First loo...

How to clear floating example code in css

Overview The framework diagram of this article is...

How to quickly log in to MySQL database without password under Shell

background When we want to log in to the MySQL da...

How to import Tomcat source code into idea

Table of contents 1. Download the tomcat code 2. ...

Detailed explanation of the lock structure in MySQL

Mysql supports 3 types of lock structures Table-l...

How to track users with JS

Table of contents 1. Synchronous AJAX 2. Asynchro...

Analysis of the reasons why MySQL's index system uses B+ tree

Table of contents 1. What is an index? 2. Why do ...

OpenSSL implements two-way authentication tutorial (with server and client code)

1. Background 1.1 Problems A recent product testi...

A quick solution to the first login failure in mysql5.7.20

First, we will introduce how (1) MySQL 5.7 has a ...

HTML table markup tutorial (18): table header

<br />The header refers to the first row of ...

How to run .sh files in Linux system

There are two ways to run .sh files in Linux syst...