1. Master-slave replicationMaster-slave replication: In actual production, in order to solve the single point failure of MySQL and improve the overall service performance of MySQL, master-slave replication is generally used. That is: back up the data and statements in the database. Master-slave replication three threadsThere are three main threads in MySQL's master-slave replication: master (binlog dump thread), slave (I/O thread, SQL thread), one thread in the Master and two threads in the Slave. Master-slave replication process The process of master-slave replication:The master is mainly responsible for writing the updated event type into the binlog file of the master library in the binlog format when there is data update in the master library. The Master will create a log dump thread to notify the Slave that there is data update in the main database. The I/O thread is created in the Slave and is used to request the Master. The Master returns the name of the binlog, the location of the current data update, and a copy of the binlog file location. Then, the binlog is saved in the relay log, which also records information about data updates. The SQL thread is also created in the Slave. When the Slave detects that the relay log is updated, it will synchronize the updated content to the Slave database, ensuring the synchronization of the master and slave data. Master-slave replication strategy Master-slave replication strategy:Synchronization strategy: The Master will wait for all Slaves to respond before committing, which will seriously affect the performance of master-slave synchronization. Semi-synchronous strategy: The Master will wait for at least one Slave to respond before committing. Asynchronous strategy: The Master can submit without waiting for the Slave's response. Delay strategy: The Slave must lag behind the time specified by the Master. High latency in master-slave replicationReasons for high latency in master-slave replication The master server has high concurrency, resulting in a large number of transactions Network latency Caused by master and slave hardware devices (CPU main frequency, memory io, hard disk io) It is not synchronous replication, but asynchronous replication. Solution to high latency of master-slave replication Optimize Mysql parameters from the database. For example, increase innodb_buffer_pool_size to allow more operations to be completed in mysql memory and reduce disk operations Use high-performance hosts (high-performance CPU, large memory) from the database, avoid using virtual cloud hosts, use physical hosts to improve I/O throughput Use SSD disks from the library Network optimization to avoid synchronization across computer rooms 2. Read-write separationRead-write separation conceptRead-write separation: Read-write separation allows the primary database to handle transactional addition, deletion, and modification operations (INSERT, UPDATE, DELETE), while the secondary database handles query (SELECT) operations. Database replication is used to synchronize changes caused by transactional operations to slave databases in the cluster. Reasons and scenarios for read-write separationReasons for read-write separation: The amount of reads and writes is large. In order to improve the database read-write performance, reads and writes are separated. If there are more reads than writes in multiple computer rooms, and based on data consistency considerations, only one master database stores all data writes, and the local slave database provides reads to reduce the latency caused by direct reads between multiple computer rooms. Read-write separation usage scenario: It is considered when the program uses the database more frequently, but updates are less and queries are more. By using database master-slave synchronization and read-write separation, database pressure can be shared and performance can be improved. SummarizeThis concludes this article about MySQL database master-slave replication and read-write separation. For more information about MySQL master-slave replication and read-write separation, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of JavaScript timer and button effect settings
>>: Use the njs module to introduce js scripts in nginx configuration
Win10 system locally installed MySQL8.0.20, perso...
Text hiding code, hide a certain text in HTML Copy...
mysql-5.7.17-winx64 is the latest version of MySQ...
Core code -- Below I will demonstrate the impleme...
Stored Functions What is a stored function: It en...
Result: html <nav id="nav-1"> <...
Table of contents I. Overview 2. Conventional mul...
One trick for dealing with this type of error is t...
MySQL escape Escape means the original semantics ...
Table of contents Component Communication Introdu...
1. nohup Run the program in a way that ignores th...
The Docker container provides services and listen...
RGB color table color English name RGB 16 colors ...
This article describes the MySQL slow query opera...
Recorded MySQL 5.7.9 installation tutorial, share...