当前位置:网站首页>MySQL master-slave replication
MySQL master-slave replication
2022-07-06 03:51:00 【Li Jue】
Why copy ?
- Prevent accidental loss of data , Make users suffer losses .
- A machine is down , You can enable the backup of data on another machine .
- The probability of downtime is very small , Spare time can also allow the backup machine to share the flow pressure of the main machine .
- When upgrading the database version , The standby machine can be upgraded preferentially without stopping the user service , Upgrade the main database after observing its availability and stability .
Can't always let DBA Copy manually to complete the replication , So we still need to design a mechanism that can automatically copy .
Design replication mechanism
Our tentative replicated database is the main database , Pasted from the Library , To realize the replication from master library to slave Library , It looks very simple , Just one planning task , Regularly copy a copy of the main database data file , And transfer it to the server where the slave library is located .
But after all, scheduled tasks are not real-time , In case the main database fails ten minutes after the last replication , The activated slave library uses the last copied data , So ten minutes of data will be missing , The consequences are unimaginable .
Or do you want to copy in real time , That can be like this , The master library sends the executed statements to the slave Library in real time , Let the slave execute immediately , It can ensure the consistency of data on both sides .
The bad thing is , The master database sends data to the slave database in real time , You need to wait for the execution of the slave library to process the next statement , It seriously takes up the execution time of the main library , If there are too many libraries , The main warehouse is abandoned .
It has to be changed to asynchronous to save the time of the main database , You can save the executed statements of the main library into a file , Let's get it from the library , In this way, the master database does not have to wait for the slave database . Since it is written to the file , The speed is very fast , The main library can write statements to files before execution , Achieve higher synchronization efficiency .
Some of the above problems , It is impossible to run to the main database to get data from the database , Only one thread can be started to establish a connection with the main library , And ask for data from the main database , Then the main library also starts a thread to read the contents of the file , And push it to the slave thread , After receiving the statement from the library, it can be executed immediately .
Such efficiency is still very low , The thread of the main library cannot push another one until the statement is received and executed from the Library , If there are multiple slave Libraries , The master library needs to open multiple threads to keep communicating with each slave library for a long time , Occupy the main library server resources , It's better to create a file from the library to temporarily save the statements sent from the main library , Save it first and then execute it slowly , The pressure of the main reservoir is reduced , Rest assured from the Library .
Now I have my own file from the library as a relay , Don't worry , You can start another thread from the Library , Slowly execute the statements in the relay file , After the implementation, the original document has no value , You can clean it up , Avoid occupying server resources .
up to now , The most basic replication mechanism is designed , This way of copying from master database to slave database is a typical master-slave architecture , On this basis, evolution can be carried out , For example, there are many from the Library , The master database should push data for each slave database , The pressure of the main reservoir will increase , And because the main database is not only responsible for synchronizing data , Also busy reading and writing data , So people can replace the synchronization of data , For example, establish a master database between the master database and the slave database , The only responsibility of the newly established master database is to synchronize data to the slave database , In this way, the real master database only needs to push data to the new master database once , You can read and write data at ease in the rest of the time .
边栏推荐
- Ks003 mall system based on JSP and Servlet
- Recommended papers on remote sensing image super-resolution
- WPF effect Article 191 box selection listbox
- Alibaba testers use UI automated testing to achieve element positioning
- Overview of super-resolution reconstruction of remote sensing images
- Take you to wechat applet development in 3 minutes
- [practical exercise] face location model based on skin color
- 2.2 STM32 GPIO operation
- [Key shake elimination] development of key shake elimination module based on FPGA
- [FPGA tutorial case 12] design and implementation of complex multiplier based on vivado core
猜你喜欢

Factors affecting user perception

C#(二十九)之C#listBox checkedlistbox imagelist

C form application of C (27)

No qualifying bean of type ‘......‘ available

Remote Sensing Image Super-resolution and Object Detection: Benchmark and State of the Art

Plus d'un milliard d'utilisateurs de grandes entreprises comme Facebook ont été compromis, il est temps de se concentrer sur le did
![P7735-[noi2021] heavy and heavy edges [tree chain dissection, line segment tree]](/img/b1/dbfc42d66548476300501dd839abef.jpg)
P7735-[noi2021] heavy and heavy edges [tree chain dissection, line segment tree]

3.1 detailed explanation of rtthread serial port device (V1)

Facebook等大厂超十亿用户数据遭泄露,早该关注DID了

Brush questions in summer -day3
随机推荐
[slam] orb-slam3 parsing - track () (3)
LTE CSFB test analysis
Remote Sensing Image Super-resolution and Object Detection: Benchmark and State of the Art
Proof of Stirling formula
[optimization model] Monte Carlo method of optimization calculation
Ybtoj coloring plan [tree chain dissection, segment tree, tarjan]
Failure causes and optimization methods of LTE CSFB
[practical exercise] face location model based on skin color
Conditionally [jsonignore]
RT-Thread--Lwip之FTP(2)
1.16 - check code
[practice] mathematics in lottery
3分钟带你了解微信小程序开发
在字节做测试5年,7月无情被辞,想给划水的兄弟提个醒
Blue Bridge Cup - Castle formula
【按键消抖】基于FPGA的按键消抖模块开发
The solution of permission denied (750 permissions should be used with caution)
简易博客系统
Prime protocol announces cross chain interconnection applications on moonbeam
Overview of super-resolution reconstruction of remote sensing images