The pitfalls of MySQL read-write separation The main goal of read-write separation is to share the pressure of the main database, and the client selects the backend database for query. Another architecture is that there is an intermediate proxy layer between MYSQL and the client. The client connects to the proxy, and the proxy determines the distribution route of the request based on the request type and context.
Regardless of the architecture used, due to possible delays between the master and slave, if the client initiates a query immediately after executing an update transaction, and if the query selects the slave, it is possible to read the status before the transaction update. We will call this phenomenon of "reading an expired state of the system on the slave library" "expired read" for the time being. Solution 1: Force the main database solution Query requests are divided into two categories:
Solution 2: Sleep Solution After the master database is updated, sleep is performed before reading the slave database, similar to executing the select sleep (1) command. The assumption of this solution is that in most cases the master-slave delay is within 1 second, and a sleep can highly likely obtain the latest data. Taking the example of a seller publishing a product, after the product is published, Ajax is used to directly display the content entered by the client as a "new product" on the page instead of actually querying the database. In this way, the seller can use this display to confirm that the product has been successfully released. By the time the seller refreshes the page and checks the product, some time has actually passed, thus achieving the purpose of sleep and solving the problem of expired reading. Solution 3: Determine whether the master and backup have no delay: The first method: First use the value of the seconds_behind_master parameter in the show slave status result to measure the length of the master-slave delay. First determine whether the parameter value is 0. If it is not 0, you must wait until the parameter becomes 0 before executing the request. The second method: comparison sites ensure that there is no delay in the primary and backup.
If the values of Master_Log_File, Relay_Master_Log_File, Read_Master_Log_Pos, and Exec_Master_Log_Pos are exactly the same, it means that the received logs have been synchronized. The third method: Compare GTID (Global Transaction ID) to ensure no delay between master and slave
If the two sets are the same, it means that the logs received by the standby database have been synchronized. Scheme 4: Equal master library site scheme This command is executed on the slave database. The parameters file and pos refer to the file name and position on the master database. Timeout means that this function waits for a maximum of N seconds.
As shown in the figure: first execute trx1, then execute the logic of a query request. To ensure that the correct data can be found, we can use This logic 1. After the trx1 transaction is updated, immediately execute show master status to obtain the File and Position currently executed by the master database; 2. Select a slave database to execute the query statement; 3. Execute select master_pos_wait(File, Position, 1) on the slave database; 4. If the return value is a positive integer >= 0, execute the query statement in this slave database; 5. Otherwise, go to the main database to execute the query statement. Here we assume that this select query will wait for a maximum of 1 second on the slave database. Then, if master_pos_wait returns an integer greater than or equal to 0 within 1 second, it is ensured that the query result executed on the slave database must contain the data of trx1. 5 Executing query statements on the main database is a common degradation mechanism for this type of solution. Because the delay time of the slave database is uncontrollable and cannot be waited indefinitely, if the wait times out, you should give up and check the master database. According to our requirement of not allowing expired reads, there are only two options: one is to give up after timeout, and the other is to switch to the main database for query. Concurrent connections and concurrent queries The innodb_thread_concurrency parameter controls the upper limit of concurrent threads of Innodb. Once this value is exceeded, new requests will be put on hold.
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:
|
<<: In-depth discussion of memory principles: Are variables stored in the heap or stack in JS?
<br /> CSS syntax for table borders The spec...
It took me more than an hour to open ssh in Ubunt...
1. Cause The requirement is to display two lines,...
difficulty Two mask creation of svg graphics Firs...
HTML5 and jQuery implement the preview of local i...
Preface After a failover occurs, a common problem...
disabled definition and usage The disabled attrib...
Glass Windows What we are going to achieve today ...
Preface Recently, a Java EE web project that has ...
Table of contents 1 What is container cloud? 2 In...
This article uses examples to describe the add, d...
Table of contents 1. Demand 2. Database Design 3....
Table of contents 1. Supplementary knowledge poin...
When I was at work today, the business side asked...
Table of contents 1. Environmental Preparation 2....