Oracle 并发 锁

问题:为什么我们会收到错误"TT6002:锁请求被拒绝,因死锁而被拒绝",而我们的SQL主要是对唯一行进行插入和更新?

解决方案

回答:

  1. 当未提交的值被更新时,优化器会在执行阶段移除该旧值,而不是等待提交时。在这种情况下,用户先插入后再更新。如果更新涉及在并发事务中将索引列更新为相同值,情况也会更糟。

  2. 执行时从索引中删除需要某种下一锁来保护已删除位置,以备需要回滚时使用。

  3. 我们有两种机制可以防止随机行的下一轮锁定,具体如下:

a.对于非唯一索引,我们使用通用锁来阻止所有可序列化的扫描

b。对于唯一索引,我们插入一个带有锁

4的假行。在这种情况下,它是非唯一索引,但由于某些并发FK验证需要可序列化扫描,无法放置3.a。结果,我们被迫用下一个锁配合X锁,而X锁是死锁的根源。

以下应用端的变更有助于处理或避免死锁:

  1. 应用程序在发现死锁时应重试事务,这实际上是 Timesten 的标准和推荐做法。

  2. 通过将插入+更新合并为一个事务,避免更新未提交的值。

  3. 避免同时更新索引列到与其已存在的值相同。

这在11.2.2中被注意到,但在11.2.1和7.0中也可能出现。这种死锁在某些情况下是由于上述3级内部导致的死锁情况,因此我们正在修复该漏洞,因为遇到该问题的用户不会做出应用端的修改。这个问题在11.2.2.4.6版本中修复了159413091673896016739014的漏洞。在11.2.2.6.0版本中修复了,作为16805039的bug。这个问题在11.2.2.5.x版本中没有修复,因为11.2.2.6.0会和11.2.2.5.1差不多同时发布。

Summary

Question: Why do we get error "TT6002: Lock Request Denied Because Of Deadlock" when our SQL is mostly inserts and updates on unique rows?

Solution

Answer:

  1. When an uncommitted value is updated, optimizer will remove the old value from the index during execution phase instead of waiting until commit time. In this case, user did an insert followed by an update. Situation can also be worse if the update involves updating the indexed column to the same value in concurrent transactions.

  2. Delete from the index at execution will require some kind of next lock to protect the deleted position in case a rollback is needed.

  3. We have two mechanisms to prevent next locks on random row as follows:

a. For non-unique index, we use a general lock to prevent all serializable scan

b. For unique index, we insert a dummy row with a lock

  1. In this case, it was a non-unique index but 3.a could not be placed because some concurrent FK verification need serializable scan. As a result, we were forced to use next lock with X lock and X lock is a source of deadlock.

The following application side changes could help handle or avoid the deadlock:

  1. Application should retry the transaction when it catches that a deadlock occurs, this is actually standard and recommended practice for Timesten.

  2. Avoid updating of uncommitted value by combining insert+update into one transaction.

  3. Avoid doing concurrent updates of indexed column to the same value as it already is.

This was noticed in 11.2.2, but can occur in 11.2.1 and 7.0. This deadlock in some cases is the result of internally caused deadlock situation described above as 3, so for that reason we are fixing the bug since the particular users that encountered it would not make application side changes. This was fixed in 11.2.2.4.6 in bugs 15941309, 16738960, and 16739014. It is fixed in 11.2.2.6.0 as bug 16805039. This was not fixed in the 11.2.2.5.x release since 11.2.2.6.0 will come out around the same time as 11.2.2.5.1.

相关推荐
这个DBA有点耶14 小时前
2026年分布式数据库有哪些主流选择?先评估这5个维度再决定
数据库·分布式·dba
这个DBA有点耶17 小时前
从MySQL 5.7到8.0:JSON查询性能差在哪?虚拟列索引vs多值索引怎么选
数据库·mysql·架构
胡写代码17 小时前
数据库审计字段,别再每张表各写一套了——我统一成这 6 个字段
数据库
SelectDB21 小时前
为什么 JSON 正在成为分析数据库新的竞争点?
数据库·json·agent
ClouGence1 天前
开源数据库管理工具 CloudDM 4.2.0 发布,新增 GoldenDB、KingbaseES 等数据源
数据库·dba·devops
发霉的馒头1 天前
ORA-00845: MEMORY_TARGET not supported on this system的解决方法
数据库
草莓熊Lotso1 天前
【Redis 初阶】Set 类型深度解析:去重集合的运算能力与实战场景
linux·网络·数据库·windows·redis·tcp/ip·缓存
煎饼皮皮侠1 天前
【设计】设计一个web版的数据库管理平台后端(之五) --借鉴mybatis
数据库·mybatis
东风破_1 天前
danci 2:创建的单词书到底存在哪里?从 Supabase 一路理解 ORM、Drizzle 和 RLS
数据库·后端·node.js
橙子家1 天前
OSS 文件上传的几个风险点和解决方案
数据库