What is a transaction?
Isolation and Isolation Levels When it comes to transactions, you will definitely think of ACID (Atomicity, Consistency, Isolation, Durability). Today we will talk about the I, which is "isolation". When multiple transactions are executed simultaneously on a database, dirty reads, non-repeatable reads, and phantom reads may occur. To solve these problems, the concept of "isolation level" was introduced. The stronger the isolation level, the worse the performance, so a balance must be struck between performance and isolation level. The SQL standard transaction isolation levels include:
The main reason is that it is difficult to distinguish between read committed and repeatable read, so let's look at a small example. First create a table and insert data 1 create database test; use test; create table test(id int primary key); insert into test(id) values(1);
Let's take a look at the different return results of transaction A under different isolation levels, that is, the return values of V1, V2, and V3 in the figure.
A view will be created in the database, and the logical result of the view will be used when accessing it. Under the "repeatable read" isolation level, this view is created when the transaction starts and is used throughout the transaction. In the "Read Committed" isolation level, this view is created at the beginning of each SQL statement execution. It should be noted here that the "read uncommitted" isolation level directly returns the latest value on the record, without the concept of view; while the "serializable" isolation level directly uses locking to avoid parallel access.
Suppose you are managing a table of personal bank accounts. One table stores the balance at the end of each month, and the other table stores the bill details. At this time, you need to do data proofreading, that is, determine whether the difference between last month's balance and the current balance is consistent with this month's bill details. You must hope that during the proofreading process, even if a user has a new transaction, it will not affect your proofreading results. Implementation of transaction isolation In MySQL, in fact, a rollback operation is recorded for each record when it is updated. The latest value on the record can be used to get the value of the previous state through a rollback operation. Suppose a value is changed from 1 to 2, 3, and 4 in sequence, there will be a record similar to the following in the rollback log. The current value is 4, but when querying this record, transactions started at different times will have different read-views. As shown in the figure, in views A, B, and C, the values of this record are 1, 2, and 4 respectively. The same record can have multiple versions in the system, which is the multi-version concurrency control (MVCC) of the database. For read-view A, to get 1, you must execute all the rollback operations in the figure in sequence to get the current value. Even if there is another transaction that is changing 4 to 5, this transaction will not conflict with the transactions corresponding to read-views A, B, and C.
Delete it when it is not needed. In other words, the system will determine that when no transaction needs to use these rollback logs, the rollback logs will be deleted.
That is when there is no read-view in the system that is earlier than this rollback log.
Transactions mean that there will be very old transaction views in the system. Before the transaction is committed, the rollback records must be retained, which will cause a large amount of storage space to be occupied. In addition, transactions occupy lock resources and may bring down the database. The above is the details you need to know about msyql transaction isolation. For more information about mysql transaction isolation, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: A brief talk about JavaScript variable promotion
>>: Ubuntu 20.04 firewall settings simple tutorial (novice)
1. Node server setup + database connection The op...
Table of contents 1. Introduction 1. What is an i...
Vue3.0 has been out for a while, and it is necess...
1. Introduction ● Random writing will cause the h...
Preface The requirement implemented in this artic...
Data cleaning (ETL) Before running the core busin...
Deploy nginx with docker, it's so simple Just...
If someone asked you whether running EXPLAIN on a...
NULL and NOT NULL modifiers, DEFAULT modifier, AU...
Question: What is the difference between int(1) a...
Table of contents 1. Prototype Relationship 2. Pr...
Overview The cloud platform customer's server...
1. What is Parallax scrolling refers to the movem...
There are many versions of the Java language. In ...
The installation tutorial of mysql 5.7.19 winx64 ...