主頁 > 知識庫 > 由不同的索引更新解決MySQL死鎖套路

由不同的索引更新解決MySQL死鎖套路

熱門標(biāo)簽:電話機(jī)器人的價(jià)格多少錢一個(gè)月 天津公司外呼系統(tǒng)軟件 昌德訊外呼系統(tǒng) 徐涇鎮(zhèn)騰訊地圖標(biāo)注 中國地圖標(biāo)注公司 福建外呼電銷機(jī)器人加盟 百度地圖標(biāo)注要什么軟件 自己做地圖標(biāo)注需要些什么 400電話申請廠家現(xiàn)貨

前幾篇文章介紹了用源碼的方式來調(diào)試鎖相關(guān)的信息,這里同樣用這個(gè)工具來解決一個(gè)線上實(shí)際的死鎖案例,也是我們介紹的第一個(gè)兩條 SQL 就造成死鎖的情況。因?yàn)榫€上的表結(jié)構(gòu)比較復(fù)雜,做了一些簡化以后如下

CREATE TABLE `t3` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `a` varchar(5),
 `b` varchar(5),
 PRIMARY KEY (`id`),
 UNIQUE KEY `uk_a` (`a`),
 KEY `idx_b` (`b`) 
)
INSERT INTO `t3` (`id`, `a`, `b`) VALUES 
 (1,'1','2');
# sql語句如下

# 事務(wù)1:t1
update t3 set b = '' where a = "1";

# 事務(wù)2:t2
update t3 set b = '' where b = "2";


兩條語句造成死鎖的情況用手動(dòng)的方式比較難復(fù)現(xiàn),我們先來分析一下加鎖的過程

第一條語句(通過唯一索引去更新記錄)

update t3 set b = '' where a = "1";

 

整理一下,加了3個(gè)X鎖,順序分別是

序號 索引 鎖類型
1 uk_a X
2 PRIMARY X
3 idx_b X

第二條語句

update t3 set b = '' where b = "2";

整理一下,加了 3 個(gè) X 鎖,順序分別是

序號 索引 鎖類型
1 idx_b X
2 PRIMARY X
3 idx_b X

兩條語句從加鎖順序看起來就已經(jīng)有構(gòu)成死鎖的條件了

手動(dòng)是比較難模擬的,寫個(gè)代碼并發(fā)的去同時(shí)執(zhí)行那兩條 SQL 語句,馬上就出現(xiàn)死鎖了

------------------------
LATEST DETECTED DEADLOCK
------------------------
181102 12:45:05
*** (1) TRANSACTION:
TRANSACTION 50AF, ACTIVE 0 sec starting index read
mysql tables in use 1, locked 1
LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s)
MySQL thread id 34, OS thread handle 0x70000d842000, query id 549 localhost 127.0.0.1 root Searching rows for update
update t3 set b = '' where b = "2"
*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 67 page no 3 n bits 72 index `PRIMARY` of table `d1`.`t3` trx id 50AF lock_mode X locks rec but not gap waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 4; hex 80000001; asc ;;
 1: len 6; hex 0000000050ae; asc P ;;
 2: len 7; hex 03000001341003; asc 4 ;;
 3: len 1; hex 31; asc 1;;
 4: len 0; hex ; asc ;;

*** (2) TRANSACTION:
TRANSACTION 50AE, ACTIVE 0 sec updating or deleting
mysql tables in use 1, locked 1
4 lock struct(s), heap size 1248, 3 row lock(s), undo log entries 1
MySQL thread id 35, OS thread handle 0x70000d885000, query id 548 localhost 127.0.0.1 root Updating
update t3 set b = '' where a = "1"
*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 67 page no 3 n bits 72 index `PRIMARY` of table `d1`.`t3` trx id 50AE lock_mode X locks rec but not gap
Record lock, heap no 2 PHYSICAL RECORD: n_fields 5; compact format; info bits 0
 0: len 4; hex 80000001; asc ;;
 1: len 6; hex 0000000050ae; asc P ;;
 2: len 7; hex 03000001341003; asc 4 ;;
 3: len 1; hex 31; asc 1;;
 4: len 0; hex ; asc ;;

*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 67 page no 5 n bits 72 index `idx_b` of table `d1`.`t3` trx id 50AE lock_mode X locks rec but not gap waiting
Record lock, heap no 2 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 1; hex 32; asc 2;;
 1: len 4; hex 80000001; asc ;;

*** WE ROLL BACK TRANSACTION (1)

分析一下死鎖日志

*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 67 page no 3 n bits 72 index PRIMARY of table d1.t3 trx id 50AF lock_mode X locks rec but not gap waiting

事務(wù)2:想獲取主鍵索引的 X 鎖

*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 67 page no 3 n bits 72 index PRIMARY of table d1.t3 trx id 50AE lock_mode X locks rec but not gap

事務(wù)1:持有主鍵索引的 X 鎖

*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 67 page no 5 n bits 72 index idx_b of table d1.t3 trx id 50AE lock_mode X locks rec but not gap waiting

事務(wù)1:想獲取普通索引 idx_b 的 X 鎖

與我們分析的完全一致,也與線上的死鎖日志一模一樣

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • 通過唯一索引S鎖與X鎖來了解MySQL死鎖套路
  • 一個(gè)mysql死鎖場景實(shí)例分析
  • 詳解MySQL(InnoDB)是如何處理死鎖的
  • 實(shí)例講解MySQL中樂觀鎖和悲觀鎖
  • Mysql查詢正在執(zhí)行的事務(wù)以及等待鎖的操作方式
  • 簡單了解 MySQL 中相關(guān)的鎖

標(biāo)簽:昌都 黔西 荊門 陜西 鄂爾多斯 梅河口 北京 駐馬店

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《由不同的索引更新解決MySQL死鎖套路》,本文關(guān)鍵詞  由,不同,的,索引,更新,解決,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《由不同的索引更新解決MySQL死鎖套路》相關(guān)的同類信息!
  • 本頁收集關(guān)于由不同的索引更新解決MySQL死鎖套路的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章