What is MVCC
We know that in general, when we use the MySQL database, we use the Innodb storage engine. The Innodb storage engine supports transactions. So when multiple threads execute transactions at the same time, concurrency problems may occur. At this time, a method that can control concurrency is needed, and MVCC plays this role. Mysql lock and transaction isolation levelBefore understanding the principles of the MVCC mechanism, you need to first understand the MySQL lock mechanism and transaction isolation level. Leaving aside the MyISAM storage engine, for the Innodb storage engine, there are two types of locks: row locks and table locks. Table locks lock the entire table in one operation, which has the largest lock granularity but the lowest performance and will not cause deadlocks. Row lock locks a row at a time, which has a small lock granularity and high concurrency, but may cause deadlock. Innodb row locks are divided into shared locks (read locks) and exclusive locks (write locks). When a transaction adds a read lock to a row, other transactions are allowed to read the row, but write operations are not allowed. Other transactions are also not allowed to add a write lock to the row, but a read lock can be added. When a transaction adds a write lock to a row, other transactions are not allowed to write to this row, but they can read it. At the same time, other transactions are not allowed to add a read-write lock to this row. Let's take a look at the transaction isolation levels of MySQL, which are divided into the following four levels:
MySQL undo logMVCC relies on Mysql's undo log at the bottom layer. The undo log records the operations of the database. Because the undo log is a logical log, it can be understood that when a record is deleted, the undo log will record a corresponding insert record. When a record is updated, the undo log will record an opposite update record. When the transaction fails and needs to be rolled back, it can be rolled back by reading the corresponding content in the undo log. MVCC makes use of the undo log. Implementation principle of MVCCThe implementation of MVCC utilizes the implicit fields, undo log and ReadView of the database. First, let's look at the implicit fields. In fact, MySQL implicitly records the following hidden fields behind each row in the table: DB_TRX_ID (the ID of the most recently modified (modify/insert) transaction), DB_ROLL_PTR (rollback pointer, pointing to the previous version of this record), and DB_ROW_ID (auto-increment ID. If the data table does not have a primary key, the clustered index is created with this ID by default). There are two types of undo logs: insert undo log, which is an undo log generated when a new record is inserted. It is only needed when a transaction is rolled back and can be discarded immediately after the transaction is committed. Update undo log, which is an undo log generated when a transaction is updated or deleted. It is not only needed when the transaction is rolled back, but also when snapshots are read. Therefore, it cannot be deleted casually. The corresponding log will be cleared uniformly by the purge thread only when the fast read or transaction rollback does not involve the log. MVCC uses update undo log. In fact, the undo log records a version chain. Suppose there is a record in the database as follows: Now there is a transaction A that modifies this record and changes the name to tom. The operation flow at this time is:
The situation at this point is as follows: At this time, another transaction B modifies this record and changes age to 28. The operation flow at this time is:
The situation at this point is as follows: From the above, we can see that modifications made to the same row of records by different transactions or the same transaction will cause the undo log of the row of records to form a version chain. The head of the undo log chain is the most recent old record, and the tail of the chain is the earliest old record. Now let's assume a situation. Let's assume that neither transaction A nor transaction B has been committed. At this time, there is a transaction C that modifies the record named tom and changes age to 30. Then the transaction is committed. The id of transaction C is 3. Similarly, a record will be inserted into the undo log. At this time, the DB_TRX_ID of the first record in the undo log version chain is 3. Now there is a transaction D, which queries the record with name tom. At this time, snapshot read will be enabled. The snapshot is a data snapshot triggered by the query operation at the beginning of the transaction. Unlocked read is snapshot read by default under the repeatable read isolation level. In contrast to snapshot read, there is also a current read. All update operations are current reads. A read view is generated during snapshot read. At the moment when the transaction executes snapshot read, a current snapshot of the database is generated to record and maintain the ID of the currently active transaction. Because the transaction ID is auto-incremental, the newer the transaction, the larger the ID. The read view follows the visibility algorithm, and whether it is visible requires some judgment. In addition to recording the currently active transaction ID, the read view also records the currently created maximum transaction ID. When reading a snapshot, it needs to be compared with the read view to obtain the visibility result. Read view mainly compares the ID of the current transaction with the ID of the active transaction in the system. The comparison rules are as follows:
If the visibility result is invisible, you need to use DB_ROLL_PTR to get the DB_TRX_ID of the record from the undo log for comparison. By traversing the version chain until a DB_TRX_ID that meets specific conditions is found, the old record with this DB_TRX_ID is the latest old version that the current transaction can see. The above is the detailed content of the detailed explanation of the MySQL MVCC mechanism principle. For more information about the MySQL MVCC mechanism principle, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to set up cross-domain access in IIS web.config
>>: How to keep the content within the container when the flex layout is stretched by child elements
Table of contents What happened? When to use Cont...
Table of contents Preface vue-cli 2.0 version vue...
Table of contents Preface Conversion relationship...
Table of contents 1. Analysis of key source code ...
1. Inline style, placed in <body></body&g...
MySQL password modification example detailed expl...
Effect Preview Ideas Scroll the current list to t...
The default database of CentOS7 is mariadb, but m...
Multiple values combined display Now we have th...
Phenomenon: Change the div into a circle, ellipse...
Introduction: This article mainly introduces how ...
When doing web development, you may encounter the...
Today I will share with you how to write a player...
The notepad program is implemented using the thre...
Method 1: Use script method: Create a common head...