当前位置:网站首页>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 (#{}))边栏推荐
猜你喜欢

The Himalaya web version will pop up after each pause. It is recommended to download the client solution

Natapp intranet penetration

Pit encountered by vs2015 under win7 (successful)

官媒关注!国内数字藏品平台百强榜发布,行业加速合规健康发展

Future development blueprint of agriculture and animal husbandry -- vertical agriculture + artificial meat

【无标题】
![[original] what is the core of programmer team management?](/img/11/d4b9929e8aadcaee019f656cb3b9fb.png)
[original] what is the core of programmer team management?

ORM--查询类型,关联查询

Arcgis操作: 批量修改属性表
![[untitled]](/img/5b/61efbaded29250bc8d921b0cf087c8.png)
[untitled]
随机推荐
官媒关注!国内数字藏品平台百强榜发布,行业加速合规健康发展
web3.0系列之分布式存储IPFS
Write VBA in Excel, connect to Oracle and query the contents in the database
Writing file types generated by C language
Qualifying 3
Natapp intranet penetration
14th test
根据热门面试题分析Android事件分发机制(二)---事件冲突分析处理
Applet popup half angle mask layer
PostgreSQL reports an error when creating a trigger,
The industrial chain of consumer Internet is actually very short. It only undertakes the role of docking and matchmaking between upstream and downstream platforms
CDZSC_ 2022 winter vacation personal training match level 21 (2)
小程序实现页面多级来回切换支持滑动和点击操作
Luogu p2482 [sdoi2010] zhuguosha
CDZSC_ 2022 winter vacation personal training match level 21 (1)
Codeforces - 1324d pair of topics
Arthas simple instructions
Diffusion模型详解
ORM--分组查询,聚合查询,查询集QuerySet对象特性
Bean 作⽤域和⽣命周期