Analyze MySQL replication and tuning principles and methods

Analyze MySQL replication and tuning principles and methods

The default value of mysql is full, it is best to change it to minimal.

binlog_row_image=minimal

4. Master-slave replication delay

Since the master and slave databases are not on the same host, there is inevitably a delay in data synchronization. The solution is to add cache and wait for the business layer to jump. If you must reduce the delay problem from the database level, you can start with the three major steps of replication (master database generates logs, master-slave transmission logs, and slave database restores log contents):

1. The speed at which the master database writes to the log

Control the transaction size of the main database and split large transactions into multiple small transactions.

For example, if you want to insert 200,000 rows of data, you can insert 5,000 rows at a time (you can use the idea of ​​paging).

2. Binary log transmission time between master and slave

The master and slave servers should be in the same computer room or region as much as possible.

The log format is changed to MIXED, and the log format of the setting line is not minimal. For details on the principle, see the log format introduction above.

3. Reduce the time to restore logs from the library

In MySQL version 5.7 and later, you can use the logical clock method to allocate SQL multi-threads.

Set the logical clock: slave_parallel_type = 'logical_clock';

Set the number of replication threads: slave_parallel_workers=4;

5. Points to note

When restarting MySQL, it is best to switch to the MySQL user and then perform the operation, otherwise there will be permission problems after the file is started. After setting up the MySQL environment, set the log-bin option in the configuration. This way, if the database needs to be copied from the database in the future, there is no need to restart the database and interrupt the business. You need to open the corresponding mysql port of the firewall of the main database. Since the slave database synchronizes with the master database by listening to the information sent by the master database instead of polling, if there is a communication failure, the slave database will not synchronize the data if the master database does not make any data changes after reconnection. Therefore, the data can be synchronized by inserting an empty transaction.

The above is all the content compiled by the editor this time. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Master-slave synchronous replication configuration of MySQL database under Linux
  • Detailed explanation of Docker method to implement MySql master-slave replication (practical part)
  • Detailed analysis of replication in Mysql
  • MySQL high availability solution MMM (MySQL multi-master replication manager)
  • MySQL 5.7.18 master-slave replication setup (one master and one slave) tutorial detailed explanation
  • Detailed graphic explanation of Mysql5.7.18 installation and master-slave replication
  • Detailed explanation of MySQL master-slave replication process
  • Detailed explanation of using pt-heartbeat to monitor MySQL replication delay
  • Detailed explanation of MySQL master-slave replication read-write separation construction
  • Detailed explanation of how to use docker to quickly build a MySQL master-slave replication environment
  • A brief talk about MySQL semi-synchronous replication
  • MySQL replication advantages and principles explained in detail

1. Introduction

MySQL comes with a replication solution, which brings the following benefits:

Data backup.

Load balancing.

Distributed data.

Concept introduction:

Master: The database being replicated.

Slave: A database that replicates the master's data.

Steps to reproduce:
(1) The master records the details of the changes and stores them in the binary log.
(2). The master sends a synchronization message to the slave.
(3) After receiving the message, the slave copies the master's binary log to the local relay log.
(4). The slave reproduces the messages in the relay log, thereby changing the database data.

Here is a classic picture to illustrate this process:

2. Implementing replication

The following steps are required to implement replication:

1. Set up the binary log and server-id of the MySQL master library

MySQL configuration files are usually stored in /etc/my.cnf

# Add configuration options [mysqld] under [mysqld]
server-id=1
log-bin=mysql-bin.log

The server-id is the unique identifier of the database in the entire database cluster and must remain unique.
Restart MySQL.

Note: If this file has already been configured in the MySQL configuration file, you can skip this step.

2. Create a new copy account

Create a new account in the master database for copying master database data from the database, and grant copy permissions.

mysql> GRANT REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO user_name@'host' IDENTIFIED BY 'password';

3. Set the MySQL master database server-id

As with the second step configuration, there are two points to note:

If you do not need the slave library to serve as the master library for other slave libraries, you do not need to configure binary logging. Many times replication does not require replication of all databases in the master database (especially the MySQL information configuration database). Therefore, you can configure replicate_do_db to specify the replicated database. 4. Initialize the data of the master database from the database

If the amount of data is not large, you can use the mysqldump tool to export the master database data and then import it into the slave database.

mysqldump --single-transaction --triggers --master-data databasename > data.sql

If the amount of data is large, you should use Xtrabackup to export the database, which is not introduced here.
Some students may ask, why not use binary logs directly for initialization?

If our master database has been running for a long time, it is not suitable to use the slave database to copy data according to the binary log. It will be time-consuming and performance-intensive to directly use the binary log to initialize the slave database. In most cases, the binary log configuration item of the master database is not turned on, so there is no binary log of previous operations. 5. Enable replication

Execute the following command from the library

mysql> CHANGE MASTER TO MASTER_HOST='host',
-> MASTER_USER='user',
-> MASTER_PASSWORD='password',
-> MASTER_LOG_FILE='mysql-bin.000001',
-> MASTER_LOG_POS=0;

Note the last two commands: MASTER_LOG_FILE and MASTER_LOG_POS, which indicate which binary file to start reading from the library and where the offset starts. These two parameters can be found in the SQL we imported.

Enable replication

start slave;

At this point, the replication is completed. When data is updated in the master database or new data is added, the results can be queried in the slave database.


The status of the replication thread can also be queried on the master database.

3. Replication log format

There are three log formats for MySQL replication, depending on how the master database stores data:

Copy method Features advantage shortcoming
row Based on the row format copy, record the data information of each row that needs to be modified. If a SQL statement modifies 2w rows of data, then the log format of 2w rows will be recorded. The strong consistency of data is guaranteed, and because the results after execution are recorded, the restoration on the slave database will be faster. The number of log records is large, and the transmission between the master and the slave takes more time.
statement Segment-based log format replication, that is, recording the changed SQL records instead of the changed row records. Logging is minimal. For some functions with uncertain output results, problems may occur when they are executed on the slave database. For example, when the slave database restores the master database data based on the log, it needs to execute SQL again, which takes a relatively long time.
mixed Mix the above two log formats to record logs. MySQL itself determines when to use which log format. The advantages and disadvantages of the above two log formats can be balanced.

Before MySQL 5.7, the statement format was used by default.

The setting method can be set in the configuration file (preferred):

binlog_format=ROW

Or temporarily set global variables (current MySQL connection is valid):

View the log formatmysql > show variables like 'binlog_format';
Set log formatmysql> set binlog_format='row';

Since the two master and slave servers are usually placed in the same computer room, the synchronization speed between the two will be faster. To ensure strong consistency, the row log format should be preferred (row). To ensure the transmission speed, the mixed mode (mixed) can be selected.
The log format of the line has the following three recording modes:

Recording method Features
minimal Only record the data of the modified columns
full Record the data of all columns of the modified row
noblob The features are the same as above, except that if the columns of blob and text types are not modified, the data of these columns (that is, large data columns) will not be recorded.

<<:  JS Canvas interface and animation effects

>>:  How to pull the docker image to view the version

Recommend

Use CSS to set the width of INPUT in TD

Recently, when I was using C# to make a Web progra...

Implementation of webpack code fragmentation

Table of contents background CommonsChunkPlugin s...

Complete steps for vue dynamic binding icons

0 Differences between icons and images Icons are ...

JavaScript to achieve the effect of clicking on the self-made menu

This article shares the specific code of JavaScri...

MySQL8.0.18 configuration of multiple masters and one slave

Table of contents 1. Realistic Background 2. Agre...

A brief discussion on the execution details of Mysql multi-table join query

First, build the case demonstration table for thi...

Detailed explanation of CSS image splicing technology (sprite image)

CSS image splicing technology 1. Image stitching ...

js to achieve the pop-up effect

This article example shares the specific code of ...

Practice of using SuperMap in Vue

Table of contents Preface Related Materials Vue p...

How to clear floating example code in css

Overview The framework diagram of this article is...

Solution to the problem that Centos8 cannot install docker

Problem [root@zh ~]# [root@zh ~]# [root@zh ~]# yu...

Detailed example code of mysql batch insert loop

background A few days ago, when I was doing pagin...

Several ways to encapsulate axios in Vue

Table of contents Basic Edition Step 1: Configure...