MySQL is one of the most commonly used databases in our daily production and learning. Today, let’s talk about the isolation levels in MySQL (or other similar databases) and the multi-version concurrency control (MVCC) used to improve efficiency. 1. Isolation Level First we need to mention a concept: transaction. What is a transaction? A transaction is a collection of a series of operation statements that complete a basic operation. For example, if I want to transfer 200 yuan from account A to account B, I might do the following: READ UNCOMMITEDIn this isolation level, data reading is not affected in any way. That is, you can even read data that is being modified by other transactions, and you can read and modify it whenever you want. This certainly has little overhead, but it can cause many problems, such as "dirty reads". That is, data that is being modified but not yet submitted is read, which will cause data reading errors. In terms of performance, READ UNCOMMITED is not much better than other levels, but it brings a lot of troublesome problems, so it is rarely used in practice. READ COMMITED (read committed/non-repeatable read) This level adds some provisions based on READ UNCOMMITED and is the default isolation level for some databases. The difference between it and READ UNCOMMITED is that it stipulates that the data read during reading can only be the committed data. For example, the value of data a after the last submission is 1. At this time, a thread comes in to modify a and changes a to 2, but the transaction (COMMIT) is not committed at this time. In this case, the value of a read at the READ UNCOMMITED level is the current value 2, but the value read at the READ COMMITED level is still the value after the last submission, that is, a is 1. The value of a must be read after the modification thread changes the value of a to 2 and the transaction is committed for it to be 2. The problem brought about by this level is non-repeatable reading. That is, the value of a read last time was 1, but as the modification thread committed the transaction, the value of a changed to 2, and the value read at this time was 2, that is, the values obtained by executing the same read operation twice are different. REPEATED READ REPEATED READ adds some restrictive rules based on READ COMMITED, and it is also the default isolation level of the MySQL database. Simply put, other transactions are prohibited from modifying the corresponding data during the execution of a transaction. This ensures that the data queried during the execution of a transaction is consistent, solving the problems of dirty reads and non-repeatable reads. However, it brings a new problem, namely "phantom reads". SERIALIZABLEThis is the most stringent isolation level. It avoids the problem of phantom reads by forcing transactions to be executed serially. However, this isolation level is very expensive and is not often used. The relationship between various isolation levels and possible problems is as follows:
MVCC Imagine that if each SQL operation needs to add a row-level lock to ensure data consistency and accuracy, it is very reliable, but the resulting system overhead and reduced search efficiency are also very obvious. Therefore, MVCC was created to resolve this contradiction.
a. The row version number is less than or equal to the transaction version number After saving these two version numbers, most operations can be performed correctly without locking, ensuring performance and efficiency. The above is a detailed explanation of MySQL database isolation level and MVCC. For more information about MySQL database isolation level and MVCC, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Implementation of Node connection to MySQL query transaction processing
>>: Turn off the AutoComplete function in the input box
Set a background image for the table. You can use...
Table of contents 1. Node.js and Vue 2. Run the f...
Initialize Dockerfile Assuming our project is nam...
Use indexes to speed up queries 1. Introduction I...
Operating system: Window10 MySQL version: 8.0.13-...
Less is More is a catchphrase for many designers....
Table of contents 1. Delete the old version 2. Ch...
Table of contents Overview Getting started with d...
First we need to install some dependencies npm i ...
This article example shares the specific code of ...
When the DataSource property of a DataGrid control...
CSS Position The position attribute specifies the...
Supervisor is a very good daemon management tool....
Table of contents Common compression formats: gz ...
HTTP Status Codes The status code is composed of ...