1. ACID Characteristics Transaction processing is a management mechanism for MySQL operations that must be executed in batches. During a transaction, unless the entire batch of operations is executed correctly, if any operation in the middle fails, it will be After MySQL 5.5, the default storage engine was replaced from MyLSAM to InnoDB. One of the important reasons for this is that InnoDB supports transactions. Let's use The four most important properties of transactions are often referred to as Transaction Control SyntaxMySQL transaction control has several important nodes, namely transaction start, commit, rollback and save point. Starting a transaction means that the transaction begins execution, and the statement is For example, A transfers 100 yuan to B: // Execute normally and submit BEGIN; # Start transaction UPDATE account_balance SET balance = balance - 100.00 WHERE account_name = 'A'; UPDATE account_balance SET balance = balance + 100.00 WHERE account_name = 'B'; COMMIT; # Commit transaction // Exception occurred, rollback BEGIN; # Start transaction UPDATE account_balance SET balance = balance - 100.00 WHERE account_name = 'A'; UPDATE account_balance SET balance = balance + 100.00 WHERE account_name = 'B'; ROLLBACK; # Transaction rollback In complex scenarios, sometimes we do not need to roll back the entire operation, but execute it in batches and roll it back to a certain node. This is equivalent to nesting several sub-transactions under a large transaction. In MySQL, BEGIN; insert into user_tbl (id) values (1); insert into user_tbl (id) values (2); ROLLBACK; # 1,2 do not write BEGIN; insert into user_tbl (id) values (1); SAVEPOINT s1; insert into user_tbl (id) values (2); ROLLBACK TO s1; # Roll back to the retention point s1, so 1 is successfully written, 2 is rolled back, and the final result is 1 RELEASE SAVEPOINT s1; # Release the save point By the way, there are two types of transactions: implicit transactions (automatically committed) and explicit transactions (must be committed manually). MySQL defaults to implicit transactions, which will be automatically committed and controlled by the # View variables SHOW VARIABLES LIKE 'autocommit'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | autocommit | ON | +---------------+-------+ # Enable auto-commit (default) SET autocommit = 1; # Turn off autocommit SET autocommit = 0; In the automatic commit state, if no transaction is explicitly opened, each DML statement is a transaction, and the system automatically executes a commit operation on each SQL statement. After you start a transaction using BEGIN or START TRANSACTION, autocommit remains disabled until you end the transaction using COMMIT or ROLLBACK, at which point the autocommit mode is restored to its previous state. There is another parameter # View variables SHOW VARIABLES LIKE 'completion_type'; +-----------------+----------+ | Variable_name | Value | +-----------------+----------+ | completion_type | NO_CHAIN | +-----------------+----------+ completion_type = 0: The default value. A new transaction will not be automatically started after commit is executed. 3. Transaction Concurrency Exception In an actual production line environment, there may be large-scale concurrent requests. If the transaction isolation level is not properly set, some abnormal situations may occur. The most common abnormalities are 1. Dirty readDirty read means that a transaction accesses uncommitted data of another transaction, as follows:
2. Non-repeatable readNon-repeatable read refers to the situation where the data value content changes during a transaction reading the same data multiple times, resulting in the inability to read the same value. It describes the phenomenon of update/deletion of the same data , as shown in the following process:
3. Phantom readingPhantom read refers to the situation where the number of data items changes during a transaction reading the same data multiple times, as if an illusion has occurred. It describes the phenomenon of insert/delete for the entire table, as shown in the following process:
4. Transaction Isolation LevelSerialized transaction processing is of course the safest method, but serialization cannot meet the needs of high-concurrency access to the database. As a compromise, sometimes we have to lower the isolation standard of the database in exchange for the concurrency of transactions, sacrificing correctness within a controllable range in exchange for improved efficiency. This trade-off is achieved through the isolation level of the transaction. The database has four transaction isolation levels, from low to high: (1) Read Uncommitted The tolerance of the above three abnormal situations in the four isolation levels is as follows ( The command to view the isolation level is: SHOW VARIABLES LIKE 'transaction_isolation'; # or SELECT @@global.tx_isolation, @@tx_isolation; The second way is to view the global and current session isolation levels. The command to set the isolation level is : # Set the isolation level of the current session to read uncommitted SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; # Set the global isolation level to read uncommitted SET GLOBAL TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; This is the end of this article about the detailed explanation of MySQL transactions. For more relevant MySQL 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:
|
>>: Talk about the 8 user instincts behind user experience in design
Table of contents Preface Modifiers of v-model: l...
When using Navicat to connect to a remote Linux M...
Table of contents Preface 1. Install Docker 2. In...
View the installation information of mysql: #ps -...
Table of contents What is MVCC MVCC Implementatio...
In the previous article, we used Docker to build ...
Tables once played a very important role in web p...
introduction If you are familiar with using JDBC ...
Introduction to the usage of MySQL keyword Distin...
In the previous article, we talked about MySQL tr...
What is a web page? The page displayed after the ...
This article shares the Vue calculation property ...
The root account of mysql, I usually use localhos...
This article example shares the specific code of ...
background Ever wondered how to create a shadow e...