This is a popular science article about database isolation levels. It aims to understand the famous phantom read phenomenon in databases. In order to focus on the topic, dirty reads and non-repeatable reads are not discussed. Transaction Isolation LevelMySQL has four transaction isolation levels:
What is phantom reading?Wrong understanding of phantom read: phantom read means that transaction A executes two select operations to obtain different data sets, that is, select 1 obtains 10 records and select 2 obtains 11 records. This is not actually a phantom read, but a type of non-repeatable read, which only occurs at the RU RC level and does not occur at the MySQL default RR isolation level. Here is my understanding of phantom reading: Phantom reads do not mean that the result sets obtained from multiple reads in a transaction are different. What is more important about phantom reads is that the data state represented by the result set obtained from a certain select operation cannot support subsequent business operations. To be more specific: the select record does not exist, and you are going to insert this record, but when you execute insert, you find that this record already exists and cannot be inserted, just like an illusion An example may make it easier to understand: mysql> show create table user\G *************************** 1. row *************************** Table: user Create Table: CREATE TABLE `user` ( `id` int(11) NOT NULL, `name` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 Start two transactions T1 & T2 respectively, and set their isolation levels to Reaptable-Read: T1: mysql> set global transaction isolation level repeatable read; mysql> begin; mysql> select * from user; mysql> insert into user values (1, 'jeff'); ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY' mysql> select * from user; T2: mysql> set global transaction isolation level repeatable read; mysql> begin; mysql> insert into user values (1, 'jeff'); mysql> commit; T1 transaction checks whether there is a record with id 1 in the table, and inserts it if not. T2 inserts interference records, causing phantom reads in T1. In the above example, it is necessary to ensure that transaction T1 executes begin before executing transaction T2. In the above example, a phantom read occurs at T1 because the data state read by T1 has a semantic conflict with the subsequent actions: when querying, it is clearly prompted that the record does not exist, but when inserting, it is prompted that the primary key is repeated, which is similar to the appearance of a phantom, so it is called a phantom read. How to eliminate phantom readsMySQL currently has two ways to eliminate phantom reads: 1. Manually add a row X lock to the select operation (SELECT ... FOR UPDATE). The reason is that the row lock in InnoDB locks the index. Even if the current record does not exist, the current transaction will obtain a record lock (if the record exists, a row X lock is added, if it does not exist, a next-key lock gap X lock is added). In this way, other transactions cannot insert records of this index, eliminating phantom reads. mysql> begin; mysql> select * from user where id = 2 for update; mysql> insert into user values (2, 'tony'); mysql> commit; T2: mysql> begin; mysql> insert into user values (2, 'jimmy'); ERROR 1062 (23000): Duplicate entry '2' for key 'PRIMARY' Now when T1 is queried with for update, the index will be locked in Innodb (even if it does not exist currently), so the insert of transaction T2 will be blocked until T1 is committed. In this way, T1 succeeds. For T1, the phantom read is indeed eliminated, but the insert of T2 will report a duplicate primary key, which is also in line with expectations. As for another way to improve the isolation level and eliminate phantom reads, those who are interested can try it themselves. I will not repeat it here. Its essence is similar, except that the system replaces manual locking. SummarizeRR is the default isolation level of MySQL transactions. It is a compromise between transaction security and performance. After correctly understanding phantom reads, developers can decide whether to prevent phantom reads according to their needs. SERIALIZABLE is pessimistic and believes that phantom reads will always occur, so it will automatically and implicitly add exclusive locks to the resources required by the transaction. Other transactions accessing this resource will be blocked and waiting. The transaction is safe, but performance needs to be carefully considered. InnoDB locks are for indexes, which requires attention. Lock the row record. If it exists, add an X lock. Otherwise, add a next-key lock / gap lock / gap lock. Therefore, InnoDB can realize the pre-occupancy of a certain record by a transaction. As long as the transaction is still there, other transactions will not be able to occupy it. There will be a special article discussing locks later. The above is a detailed explanation of MySQL phantom reads and how to eliminate them. For more information about MySQL phantom reads and how to eliminate them, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed explanation of the TARGET attribute of the HTML hyperlink tag A
>>: How to set the memory size of Docker tomcat
/etc/fstab Automatically mount partitions/disks, ...
Table of contents 1. for loop 2. Double for loop ...
Mysql5.5 dual machine hot standby Implementation ...
Must read before operation: Note: If you want to ...
As shown below: LOCATE(substr,str) Returns the fi...
RocketMQ is a distributed, queue-based messaging ...
1. Write a simple Java program public class tests...
Table of contents 1. Props parent component ---&g...
Table of contents 1. Overview 1. Explain statemen...
The experimental environment is as follows Here y...
(I) Installation of mysql5.7: ❀ Details: The inst...
The MySQL slow query log is very useful for track...
Due to company requirements, two nginx servers in...
To export MySQL query results to csv , you usuall...
Absolute, relative and fixed in position position...