As a relational database, MySQL provides a built-in data replication mechanism, which allows advanced features such as high-availability architecture to be implemented based on its replication mechanism, making MySQL suitable for production environments without the need for additional plug-ins or other tools. This is one of the conditions for MySQL to be widely used in practice. The replication mechanism based on MySQL can not only achieve high availability of the database, but also realize advanced features such as performance expansion, off-site disaster recovery, and hot and cold separation.
To obtain the above capabilities, you need to understand the basic MySQL replication mechanism and select the appropriate configuration based on the actual application scenario. Master-slave replication mechanismMySQL implements master-slave replication based on binlog. The slave node tracks and obtains the latest updates in the master node binlog and replays them in itself, thereby replicating the master node data. The following figure is a schematic diagram of the MySQL master-slave replication process. There are three threads involved in the whole process, and their responsibilities are:
Asynchronous replicationBy default, MySQL's master-slave replication is asynchronous replication. Under this mechanism, the master node will respond to the client's request immediately after completing the local log writing, and the data replication process of the slave node is executed asynchronously. Obviously, under this mechanism, since the replication process does not affect the primary node's response to client requests, there is no significant loss in overall performance compared to a single node. However, under this mechanism, if the master node crashes when the data is committed but not synchronized to the slave node, if a master-slave switch occurs and new data is written, data loss or inconsistency may occur. Semisynchronous replicationStarting from version 5.6, MySQL supports semisynchronous replication, which has the following differences compared to asynchronous replication:
It can be seen that compared with asynchronous replication, semi-synchronous replication improves data availability to a certain extent. When it has not degenerated to asynchronous replication, if the master node goes down, the data has been copied to at least one slave node. At the same time, since the slave node needs to complete the response to the client, compared with asynchronous replication, this time requires more time for network interaction between the master and slave nodes and the time it takes for the slave node to write files and flush them to the disk. Therefore, the overall cluster's response performance to the client is bound to be reduced. Master-slave replication formatSince MySQL's replication mechanism is based on binlog, the format of binlog determines the format of master-slave replication. There are two types of binlog: row-based and statement-based, so replication also has two corresponding formats. Statement-Based Replication (SBR)For statement-based replication, the binlog records only the executed statements. This method has the following advantages:
There are the following disadvantages:
Row-Based Replication (RBR)In the row-based replication mechanism, the corresponding binlog is also row-based. In this case, each time data is updated and written to the binlog, changes in all affected rows are converted. This replication method has the following advantages:
There are the following disadvantages:
In actual architecture applications, it is necessary to reasonably use the master-slave replication mechanism according to the business characteristics of the system and select the appropriate master-slave replication format. The above is the detailed content of the comprehensive analysis of the MySql master-slave replication mechanism. For more information about the MySql master-slave replication mechanism, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: A brief summary of basic web page performance optimization rules
>>: Example of using CSS3 to customize the style of input multiple-select box
Table of contents Preface 1. Preparation - Server...
background As the number of application systems c...
Analyze the execution process. Move the mouse int...
There is a requirement for a list containing mult...
1. Ubuntu Server 18.04.5 LTS system installation ...
Download CentOS7 The image I downloaded is CentOS...
Apollo open source address: https://github.com/ct...
Table of contents Kill instruction execution prin...
Table of contents 1 What is container cloud? 2 In...
Good HTML code is the foundation of a beautiful w...
Preface Nginx 's built-in module supports lim...
Learned ConcurrentHashMap but don’t know how to a...
Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...
In the migration of Oracle database to MySQL data...
Mysql limit paging statement usage Compared with ...