当前位置:网站首页>Deadlock caused by non clustered index in SQL Server
Deadlock caused by non clustered index in SQL Server
2022-07-07 10:05:00 【knight_ hf】
Recently, a message sending function encountered a deadlock problem caused by non clustered indexes during the test , The following is what my partner summarized afterwards , Now share it .
( Because some content involves company information , So I only shared some of them , But it should not affect the overall reading )
Situation introduction
Table name is Receiver, Field has id( Primary key , Clustered index ),msgId( Nonclustered indexes ),receiver( Nonclustered indexes ),createTime,updateTime
The statements executed concurrently are
1、insert into Receiver select msgId,receiver,createTime,updateTime from tempTable 2、update Receiver set updateTime=#{} where msgId=#{} and receiver in (#{})
Occurrence scenario
1、 Multithreading (100 individual ) perform Receiver Insert statement of
2、 Multithreading (8 Threads ) perform Receiver UPDATE statement of
Lock analysis
1、insert Statement execution time , First apply for the line where the record is inserted ( Or page 、 surface ) Of X lock ( Exclusive lock ), After record insertion , Applying for non clustered indexes X lock , Finish updating the index , When it's all done , Release what is held X lock
2、update Statement execution time , apply msgId In a nonclustered index U lock , adopt msgId The non clustered index gets the location of the record that needs to be updated , Then apply for the clustered index of the corresponding record U lock ( Update lock ), Because it does not involve the update of nonclustered indexes , So after the data update , all U The lock is released
Deadlock analysis
Let's first assume insert priority ,insert Successfully apply to the row with inserted data X lock , Because multiple records are inserted at one time , So the actual application is to aggregate index pages pagelock. After record insertion ,insert The process will apply msgId、updateTime Nonclustered index X lock . Suppose this time insert The process is suspended , The right of execution is given to update process .update Priority application msgId Nonclustered index U Lock to query the set of records that need to be updated , After finding the corresponding record , I will apply for these records U lock ( The same is pagelock). But because this data page has been insert The process adds X lock , So we can't add U lock , therefore update The process enters a waiting state . meanwhile ,insert The process also needs to apply for indexing X lock , But it has been update The process holds U lock . Last , The two processes enter the state of waiting for each other , A deadlock occurs .
What happened
1、 In the case of high concurrency update And insert
2、update Of where The non clustered index of the table is used in the condition
terms of settlement
modify update sentence
The original statement is
update Receiver set updateTime=#{
} where msgId=#{
} and receiver in (#{
})
1、 Add row level lock
update Receiver with(rowlock) set updateTime=#{
} where msgId=#{
} and receiver in (#{
})
After changing to row level lock , Can significantly reduce insert Requested lock and update The requested lock coincides
Inferiority : When updating multiple records, multiple row level locks will be held , Previously, it was possible to hold only one page lock
2、where Add with(nolock)
update Receiver set updateTime=#{} where id in (select r.id from Receiver r with(nolock) where r.msgId=#{} and r.receiver in (#{}))
边栏推荐
- Selenium+bs4 parsing +mysql capturing BiliBili Tarot data
- **Grafana installation**
- 20排位赛3
- 【学习笔记-李宏毅】GAN(生成对抗网络)全系列(一)
- MySQL can connect locally through localhost or 127, but cannot connect through intranet IP (for example, Navicat connection reports an error of 1045 access denied for use...)
- Writing file types generated by C language
- Scratch crawler mysql, Django, etc
- 小程序实现页面多级来回切换支持滑动和点击操作
- Web3.0 series distributed storage IPFs
- The applet realizes multi-level page switching back and forth, and supports sliding and clicking operations
猜你喜欢
反卷积通俗详细解析与nn.ConvTranspose2d重要参数解释
Win10 installation vs2015
中国首款电音音频类“山野电音”数藏发售来了!
Qualifying 3
EXT2 file system
Delete a record in the table in pl/sql by mistake, and the recovery method
Garbage disposal method based on the separation of smart city and storage and living digital home mode
AI从感知走向智能认知
基础篇:带你从头到尾玩转注解
Internship log - day04
随机推荐
Bean operation domain and life cycle
Sword finger offer II 107 Distance in matrix
Basic use of JMeter to proficiency (I) creation and testing of the first task thread from installation
14th test
How to use Mongo shake to realize bidirectional synchronization of mongodb in shake database?
phpcms实现PC网站接入微信Native支付
20排位赛3
Pytest learning - dayone
高斯消元
【原创】程序员团队管理的核心是什么?
Guys, have you ever encountered the case of losing data when Flink CDC reads mysqlbinlog? Every time the task restarts, there is a probability of losing data
[Frida practice] "one line" code teaches you to obtain all Lua scripts in wegame platform
Diffusion模型详解
【学习笔记-李宏毅】GAN(生成对抗网络)全系列(一)
Natapp intranet penetration
基础篇:带你从头到尾玩转注解
Scratch crawler mysql, Django, etc
Database multi table Association query problem
Gauss elimination
Deep understanding of UDP, TCP