MySQL deadlock routine: inconsistent batch insertion order under unique index

MySQL deadlock routine: inconsistent batch insertion order under unique index

Preface

The essence of deadlock is resource competition. If the order of batch insertion is inconsistent, it can easily lead to deadlock. Let's analyze this situation. For the convenience of demonstration, batch insert is rewritten as multiple inserts.

Let's do a few small experiments first. The simplified table structure is as follows

CREATE TABLE `t1` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `a` varchar(5),
 `b` varchar(5),
 PRIMARY KEY (`id`),
 UNIQUE KEY `uk_name` (`a`,`b`)
);

Experiment 1:

If two batch inserts of the same order are executed simultaneously when the record does not exist, the second one will enter the lock waiting state.

t1 t2
begin; begin;
insert ignore into t1(a, b)values("1", "1"); success
insert ignore into t1(a, b)values("1", "1"); Lock wait state

You can see the current lock status

mysql> select * from information_schema.innodb_locks;
+-------------+-------------+-----------+-----------+------------+------------+------------+-----------+----------+-----------+
| lock_id | lock_trx_id | lock_mode | lock_type | lock_table | lock_index | lock_space | lock_page | lock_rec | lock_data |
+-------------+-------------+-----------+-----------+------------+------------+------------+-----------+----------+-----------+
| 31AE:54:4:2 | 31AE | S | RECORD | `d1`.`t1` | `uk_name` | 54 | 4 | 2 | '1', '1' |
| 31AD:54:4:2 | 31AD | X | RECORD | `d1`.`t1` | `uk_name` | 54 | 4 | 2 | '1', '1' |
+-------------+-------------+-----------+-----------+------------+------------+------------+-----------+----------+-----------+

When we execute the insert of transaction t1, no lock breakpoints appear. This is related to the principle of MySQL insertion.

Insert adds an implicit lock. What is an implicit lock? Implicit lock means no lock

When inserting records at t1, no locks are applied. At this time, transaction t1 has not been committed yet. When transaction t2 tries to insert, it finds this record. t2 tries to obtain the S lock and determines whether the transaction ID on the record is active. If it is active, it means that the transaction has not ended. It will help t1 upgrade its implicit lock to an explicit lock (X lock).

The source code is as follows

t2 Result of acquiring S lock: DB_LOCK_WAIT

Experiment 2:

Deadlock caused by inconsistent batch insertion order

t1 t2
begin
insert into t1(a, b)values("1", "1"); success
insert into t1(a, b)values("2", "2"); success
insert into t1(a, b)values("2", "2"); t1 tries to acquire an S lock, upgrades t2's implicit lock to an explicit X lock, and enters DB_LOCK_WAIT
insert into t1(a, b)values("1", "1"); t2 attempts to acquire an S lock, which upgrades t1's implicit lock to an explicit X lock, resulting in a deadlock.
------------------------
LATEST DETECTED DEADLOCK
------------------------
181101 9:48:36
*** (1) TRANSACTION:
TRANSACTION 3309, ACTIVE 215 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s), undo log entries 2
MySQL thread id 2, OS thread handle 0x70000a845000, query id 58 localhost root update
insert into t1(a, b)values("2", "2")
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 55 page no 4 n bits 72 index `uk_name` of table `d1`.`t1` trx id 3309 lock mode S waiting
Record lock, heap no 3 PHYSICAL RECORD: n_fields 3; compact format; info bits 0
 0: len 1; hex 32; asc 2;;
 1: len 1; hex 32; asc 2;;
 2: len 4; hex 80000002; asc ;;

*** (2) TRANSACTION:
TRANSACTION 330A, ACTIVE 163 sec inserting
mysql tables in use 1, locked 1
3 lock struct(s), heap size 376, 2 row lock(s), undo log entries 2
MySQL thread id 3, OS thread handle 0x70000a888000, query id 59 localhost root update
insert into t1(a, b)values("1", "1")
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 55 page no 4 n bits 72 index `uk_name` of table `d1`.`t1` trx id 330A lock_mode X locks rec but not gap
Record lock, heap no 3 PHYSICAL RECORD: n_fields 3; compact format; info bits 0
 0: len 1; hex 32; asc 2;;
 1: len 1; hex 32; asc 2;;
 2: len 4; hex 80000002; asc ;;

*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 55 page no 4 n bits 72 index `uk_name` of table `d1`.`t1` trx id 330A lock mode S waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 3; compact format; info bits 0
 0: len 1; hex 31; asc 1;;
 1: len 1; hex 31; asc 1;;
 2: len 4; hex 80000001; asc ;;

*** WE ROLL BACK TRANSACTION (2)

How to solve such a problem?

One possible solution is to insert the data after sorting at the application layer.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • In-depth explanation of Mysql deadlock viewing and deadlock removal
  • The normal method of MySQL deadlock check processing
  • Causes and solutions for MySQL deadlock
  • In-depth analysis of MySQL deadlock issues
  • Analysis of a MySQL deadlock scenario example
  • A magical MySQL deadlock troubleshooting record
  • Analysis of Purge deadlock problem in MySQL database
  • Detailed explanation of distributed deadlock detection and elimination through SQL

<<:  The complete code of the uniapp packaged applet radar chart component

>>:  Detailed explanation of the construction and interface management of Docker private warehouse

Recommend

Introducing icons by implementing custom components based on Vue

Preface In project development, there are many wa...

Example code for using @media in CSS3 to achieve web page adaptation

Nowadays, the screen resolution of computer monit...

Play with the connect function with timeout in Linux

In the previous article, we played with timeouts ...

Win10 + Ubuntu20.04 LTS dual system boot interface beautification

Effect display The built-in boot interface is too...

Detailed explanation of overlay network in Docker

Translated from Docker official documentation, or...

Detailed explanation of Docker daemon security configuration items

Table of contents 1. Test environment 1.1 Install...

Vue uses v-model to encapsulate the entire process of el-pagination components

Use v-model to bind the paging information object...

How to deploy DoNetCore to Alibaba Cloud with Nginx

Basic environment configuration Please purchase t...

js to achieve a simple carousel effect

This article shares the specific code of js to ac...

Solution to Vue's inability to watch array changes

Table of contents 1. Vue listener array 2. Situat...

5 ways to quickly remove the blank space of Inline-Block in HTML

The inline-block property value becomes very usef...

Understand CSS3 Grid layout in 10 minutes

Basic Introduction In the previous article, we in...

Detailed explanation of MySQL index principles and optimization

Preface This article was written by a big shot fr...

Implement group by based on MySQL to get the latest data of each group

Preface: The group by function retrieves the firs...