introductionLet's start with our content. I believe everyone must have encountered the following interview scenario. Interviewer: "How many transaction isolation levels does MySQL have?" To avoid the embarrassing situation mentioned above, please continue reading! The default transaction isolation level of Mysql is Repeatable Read. Does Mysql also use the default isolation level in Internet projects without making any changes? what! It is actually Read Committed. Doesn't the Internet say that this isolation level has problems text Let's think about a question first. In Oracle and SqlServer, Read Commited is selected as the default isolation level. Why doesn't MySQL select Read Commited as the default isolation level, but Repeatable Read as the default isolation level? Why?Why?Why? This has historical reasons, and of course we have to start with our master-slave replication! It is based on binlog replication! I don't want to move the concept of binlog here, just simply understand that binlog is a file that records database changes~ OK, there are three types, namely
Before MySQL 5.0, binlog only supports the At this time, execute the following statement on the master select * from test; The output is as follows
However, if you execute this statement on the slave at this time, the output is as follows
In this way, you have the problem of master-slave inconsistency! The reason is actually very simple, that is, the order of execution on the master is to delete first and then insert! At this time, binlog is in STATEMENT format, and the order of records is insert first and then delete! The slave is synchronizing with binglog, so the order of execution of the slave is inconsistent with that of the master! Master-Slave Inconsistent! How to solve it? There are two solutions! So, after we understand why MySQL chooses Repeatable Read as the default isolation level, let's compare it with Read Commited to explain why the isolation level is set to Read Commited in Internet projects! contrast Ok, let’s understand one thing first! The two isolation levels of Read UnCommitted and Serializable are not used in the project for two reasons.
In other words, there is only one question we should worry about: should the isolation level be read committed or repeatable read? CREATE TABLE `test` ( `id` int(11) NOT NULL, `color` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB The data is as follows +----+-------+ | id | color | +----+-------+ | 1 | red | | 2 | white | | 5 | red | | 7 | white | +----+-------+ For ease of description, the following
Reason 1: At the RR isolation level, there is a gap lock, which makes the probability of deadlock much greater than that of RC! select * from test where id <3 for update; At the RR isolation level, there is a gap lock that can lock the gap (2,5) to prevent other transactions from inserting data! Reason 2: Under the RR isolation level, if the condition column does not hit the index, the table will be locked! In the RC isolation level, only rows are locked <br /> At this time, the statement is executed update test set color = 'blue' where color = 'white'; At the RC isolation level, it first goes through the clustered index and performs a full scan. The lock is as follows: But in practice, MySQL has been optimized. When MySQL Server filters the conditions and finds that they are not met, it will call the unlock_row method to lock the records that do not meet the conditions. The actual locking is as follows However, at the RR isolation level, the clustered index is scanned completely, and the entire table is locked, as shown below: Reason three: At the RC isolation level, the semi-consistent read feature increases the concurrency of update operations! In 5.1.15, InnoDB introduced a concept called "semi-consistent", which reduces conflicts when updating the same row of records and reduces lock waits. update test set color = 'blue' where color = 'red'; Don't Commit the transaction yet! update test set color = 'blue' where color = 'white'; When session 2 tries to lock the row, it finds that a lock already exists on the row. InnoDB will enable semi-consistent read and return the latest committed versions (1, red), (2, white), (5, red), and (7, white). MySQL will re-initiate the read operation, this time reading the latest version of the row (and locking it)! Two questions At the RC level, does the non-repeatable read problem need to be solved? At the RC level, what binlog format is used for master-slave replication? SummarizeThis article is just to explain one thing. For Internet projects, please use the isolation level of Read Commited! This is the end of this article about how to choose the transaction isolation level in MySQL projects. For more information about MySQL transaction isolation levels, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Three ways of html+css layout (natural layout/flow layout/positioning layout)
>>: Process analysis of deploying ASP.NET Core applications on Linux system Docker
Some properties in CSS are preceded by "*&qu...
Table of contents Cross-domain reasons JSONP Ngin...
How does "adaptive web design" work? It’...
Primary Key: Keyword: primary key Features: canno...
Table of contents Preface 1. Rendering 2. Code 3....
Table of contents Understand the core concept of ...
MQTT Protocol MQTT (Message Queuing Telemetry Tra...
The browser is probably the most familiar tool fo...
Whether MySQL needs to commit when performing ope...
1. For comparison of date size, the date format p...
*** Example of setting the style of a hyperlink a...
In the previous article [Detailed explanation of ...
IP masquerading and port forwarding Firewalld sup...
SVN service backup steps 1. Prepare the source se...
MySQL is an open source small relational database...