What is MVCC MVCC stands for multi-version concurrency control. MySQL's transactional storage engine improves concurrency performance through multi-version concurrency control (MVCC). MVCC can be considered a variant of row-level locking, but it avoids locking operations in most cases and implements non-blocking read operations, so the overhead is lower. MVCC is implemented by saving a snapshot of data at a certain point in time. The core idea is to save historical versions of data and implement database concurrency control by managing multiple versions of data rows. In this way, we can decide whether to display the data by comparing the version number, and we can ensure the isolation effect of the transaction without locking when reading the data. MVCC ImplementationIn fact, InnoDB adds three hidden fields after each row of records:
Take RR level as an example: Each time a transaction is opened, the system assigns a transaction ID to the transaction. When the first select statement is executed in the transaction, a transaction snapshot ReadView at the current time point is generated, which mainly includes the following properties:
With this ReadView, when accessing a record, you only need to follow the steps below to determine whether a version of the record is visible:
When making a judgment, the latest version of the record is first compared. If the version cannot be seen by the current transaction, the previous version is found through the ROLL_PTR of the record and compared again until a version that can be seen by the current transaction is found. The above content is for the RR level. For the RC level, the whole process is almost the same. The only difference is the timing of generating ReadView. The RR level only generates it once at the beginning of the transaction, and then the ReadView is used all the time. At the RC level, a ReadView is generated every time a selection is made. Does MVCC solve phantom reads? Phantom read: The same SQL is used to read twice in a transaction, and the second read contains rows newly inserted by other transactions. 1) Transaction 1: First query: 2) Transaction 2 inserts data with id = 2 3) When transaction 1 uses the same statement to query for the second time, data with id = 1 and id = 2 are found, and phantom read occurs. When talking about phantom reads, we first need to introduce the concepts of "current reads" and "snapshot reads".
For snapshot reads, MVCC will not see newly inserted rows because it reads from ReadView, so the problem of phantom reads is naturally solved. However, MVCC cannot solve the phantom read of the current read. You need to use Gap Lock or Next-Key Lock (Gap Lock + Record Lock) to solve this problem. In fact, the principle is very simple. Use the above example to modify it slightly to trigger the current read: select * from user where id < 10 for update When Gap Lock is used, the Gap lock locks the entire range of id < 10, so other transactions cannot insert data with id < 10, thus preventing phantom reads. This is the end of this article about the implementation of MySQL multi-version concurrency control MVCC. For more relevant MySQL multi-version concurrency control MVCC content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: An article tells you how to implement Vue front-end paging and back-end paging
>>: Example of adding music video to HTML page
Part 1 Overview of SSH Port Forwarding When you a...
The first step is to add the corresponding databa...
Preface In project development, there are many wa...
Html code: Copy code The code is as follows: <t...
I was woken up by a phone call early in the morni...
Table of contents Overview What is lazy loading? ...
This article mainly introduces the implementation...
Table of contents 1. CentOS7+MySQL8.0, yum source...
There are three types of virtual hosts supported ...
This article shares with you a practical web navi...
I have been taking a lot of MySQL notes recently,...
mysql-5.7.19-winx64 installation-free version con...
Effect: <!doctype html> <html> <he...
Step 1: Get the MySQL YUM source Go to the MySQL ...
A few days ago, when I was working on a requireme...