MySQL死鎖案例二(自增列導致死鎖)

StevenBeijing發表於2020-08-21

測試環境:MySQL 5.7.26

建立測試表:

create table t2(id int auto_increment,status int default null,primary key(id),unique key(status));
Query OK, 0 rows affected (0.01 sec)

死鎖模擬過程如下:

會話2申請s鎖,等待會話1,會話1申請意向插入鎖,等待會話2。innodb選擇kill掉會話2,並丟擲

ERROR 1213 (40001): Deadlock found when trying to get lock; try restarting transaction

過程說明:

檢視死鎖日誌:

LATEST DETECTED DEADLOCK
------------------------
2020-08-21 17:28:12 0x7f38f84d3700
*** (1) TRANSACTION:
TRANSACTION 26167492, ACTIVE 17 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 2 lock struct(s), heap size 1136, 1 row lock(s), undo log entries 1
MySQL thread id 208, OS thread handle 139883056465664, query id 3844857 localhost root update
insert into t2 values(null,10)
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 832 page no 4 n bits 72 index status of table `test`.`t2` trx id 26167492 lock mode S waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 8000000a; asc     ;;
 1: len 4; hex 80000001; asc     ;;
*** (2) TRANSACTION:
TRANSACTION 26167469, ACTIVE 28 sec inserting, thread declared inside InnoDB 5000
mysql tables in use 1, locked 1
3 lock struct(s), heap size 1136, 2 row lock(s), undo log entries 2
MySQL thread id 209, OS thread handle 139882660706048, query id 3844926 localhost root update
insert into t2 values(null,9)
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 832 page no 4 n bits 72 index status of table `test`.`t2` trx id 26167469 lock_mode X locks rec but not gap
Record lock, heap no 2 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 8000000a; asc     ;;
 1: len 4; hex 80000001; asc     ;;
*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 832 page no 4 n bits 72 index status of table `test`.`t2` trx id 26167469 lock_mode X locks gap before rec insert intention waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 8000000a; asc     ;;
 1: len 4; hex 80000001; asc     ;;
*** WE ROLL BACK TRANSACTION (1)





















來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30135314/viewspace-2713757/,如需轉載,請註明出處,否則將追究法律責任。

相關文章