MYSQL RC模式insert update 可能死锁的情况

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介: 涉及的语句为 RC模式下 update根据主键更新和insert 其实这样的问题在RC模式下,要么是简单update问题,要么是insert造成的主键和唯一键检查唯一性时出现问题。
涉及的语句为
RC模式下
update根据主键更新和insert
其实这样的问题在RC模式下,要么是简单update问题,要么是insert造成的主键和唯一键检查唯一性时出现问题。
下面以主键问题为列子进行分析一下可能出现的情况。

update  where条件更新为主键,锁结构出现在单行主键上,辅助索引包含隐含锁结构,当前读RC非唯一索引模式没有GAP锁,
insert  插入印象锁,主键和辅助索引上会出现隐含锁结构,

但是在RC模式下没有GAP所以插入印象锁一般不会成为问题


表结构:
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table   | Create Table                                                                                                                                                                      |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| testlll | CREATE TABLE `testlll` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=latin1 |
+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+


情况1
insert
update


TX1:                                                                  TX2:
insert into testlll(name) values('gaopeng');
                                                                          insert into testlll(name) values('gaopeng');
update testlll set name='gaopeng1' where id=25;(堵塞)
                                                                           update testlll set name='gaopeng1' where id=24;(堵塞)
                                               
死锁

锁结构:

点击(此处)折叠或打开

  1. ---TRANSACTION 322809, ACTIVE 30 sec starting index read
  2. mysql tables in use 1, locked 1
  3. 3 lock struct(s), heap size 1160, 2 row lock(s), undo log entries 1
  4. MySQL thread id 3, OS thread handle 140734663714560, query id 409 localhost root updating
  5. update testlll set name='gaopeng1' where id=24
  6. ---lock strcut(1):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  7. TABLE LOCK table `test`.`testlll` trx id 322809 lock mode IX
  8. ---lock strcut(2):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  9. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 322809 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP)
  10. Record lock, heap no 25 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  11.  0: len 4; hex 80000019; asc ;;
  12.  1: len 6; hex 00000004ecf9; asc ;;
  13.  2: len 7; hex f0000001f90110; asc ;;
  14.  3: len 7; hex 67616f70656e67; asc gaopeng;;

  15. ---lock strcut(3):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  16. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 322809 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  17. Record lock, heap no 20 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  18.  0: len 4; hex 80000018; asc ;;
  19.  1: len 6; hex 00000004ecf8; asc ;;
  20.  2: len 7; hex ef000001f80110; asc ;;
  21.  3: len 7; hex 67616f70656e67; asc gaopeng;;

  22. ---TRANSACTION 322808, ACTIVE 43 sec starting index read
  23. mysql tables in use 1, locked 1
  24. LOCK WAIT 3 lock struct(s), heap size 1160, 2 row lock(s), undo log entries 1
  25. MySQL thread id 2, OS thread handle 140734663980800, query id 408 localhost root updating
  26. update testlll set name='gaopeng1' where id=25
  27. ------- TRX HAS BEEN WAITING 5 SEC FOR THIS LOCK TO BE GRANTED:
  28. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 322808 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  29. Record lock, heap no 25 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  30.  0: len 4; hex 80000019; asc ;;
  31.  1: len 6; hex 00000004ecf9; asc ;;
  32.  2: len 7; hex f0000001f90110; asc ;;
  33.  3: len 7; hex 67616f70656e67; asc gaopeng;;

  34. ------------------
  35. ---lock strcut(1):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  36. TABLE LOCK table `test`.`testlll` trx id 322808 lock mode IX
  37. ---lock strcut(2):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  38. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 322808 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  39. Record lock, heap no 25 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  40.  0: len 4; hex 80000019; asc ;;
  41.  1: len 6; hex 00000004ecf9; asc ;;
  42.  2: len 7; hex f0000001f90110; asc ;;
  43.  3: len 7; hex 67616f70656e67; asc gaopeng;;

  44. ---lock strcut(3):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  45. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 322808 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP)
  46. Record lock, heap no 20 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  47.  0: len 4; hex 80000018; asc ;;
  48.  1: len 6; hex 00000004ecf8; asc ;;
  49.  2: len 7; hex ef000001f80110; asc ;;
  50.  3: len 7; hex 67616f70656e67; asc gaopeng;;
情况2
update
update

TX1:                                                                    TX2:
update testlll set name='gaopeng1' where id=22;
                                                                            update testlll set name='gaopeng1' where id=25;
update testlll set name='gaopeng1' where id=25;(堵塞)
                                                                             update testlll set name='gaopeng1' where id=22;(堵塞)
死锁


这种情况比较简单不打印出锁结构


情况3
insert
insert


TX1:                                                      TX2:
insert into testlll values(26,'gaopeng');
                                                             insert into testlll values(27,'gaopeng');
nsert into testlll values(27,'gaopeng');(堵塞)
                                                             insert into testlll values(26,'gaopeng');(堵塞)


死锁

锁结构:

点击(此处)折叠或打开

  1. ---TRANSACTION 422212176315800, not started
  2. 0 lock struct(s), heap size 1160, 0 row lock(s)
  3. ---TRANSACTION 323284, ACTIVE 10 sec inserting
  4. mysql tables in use 1, locked 1
  5. 3 lock struct(s), heap size 1160, 2 row lock(s), undo log entries 1
  6. MySQL thread id 2, OS thread handle 140734663980800, query id 369 localhost root update
  7. insert into testlll values(26,'gaopeng')
  8. ---lock strcut(1):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  9. TABLE LOCK table `test`.`testlll` trx id 323284 lock mode IX
  10. ---lock strcut(2):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  11. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 323284 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP)
  12. Record lock, heap no 27 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  13.  0: len 4; hex 8000001b; asc ;;
  14.  1: len 6; hex 00000004eed4; asc ;;
  15.  2: len 7; hex d3000002a10110; asc ;;
  16.  3: len 7; hex 67616f70656e67; asc gaopeng;;


  17. ---lock strcut(3):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  18. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 323284 lock mode S(LOCK_S) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  19. Record lock, heap no 26 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  20.  0: len 4; hex 8000001a; asc ;;
  21.  1: len 6; hex 00000004eed3; asc ;;
  22.  2: len 7; hex d2000002330110; asc 3 ;;
  23.  3: len 7; hex 67616f70656e67; asc gaopeng;;


  24. ---TRANSACTION 323283, ACTIVE 14 sec inserting
  25. mysql tables in use 1, locked 1
  26. LOCK WAIT 3 lock struct(s), heap size 1160, 2 row lock(s), undo log entries 1
  27. MySQL thread id 3, OS thread handle 140734663714560, query id 368 localhost root update
  28. insert into testlll values(27,'gaopeng')
  29. ------- TRX HAS BEEN WAITING 5 SEC FOR THIS LOCK TO BE GRANTED:
  30. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 323283 lock mode S(LOCK_S) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  31. Record lock, heap no 27 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  32.  0: len 4; hex 8000001b; asc ;;
  33.  1: len 6; hex 00000004eed4; asc ;;
  34.  2: len 7; hex d3000002a10110; asc ;;
  35.  3: len 7; hex 67616f70656e67; asc gaopeng;;


  36. ------------------
  37. ---lock strcut(1):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  38. TABLE LOCK table `test`.`testlll` trx id 323283 lock mode IX
  39. ---lock strcut(2):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  40. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 323283 lock mode S(LOCK_S) locks rec but not gap(LOCK_REC_NOT_GAP) waiting(LOCK_WAIT)
  41. Record lock, heap no 27 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  42.  0: len 4; hex 8000001b; asc ;;
  43.  1: len 6; hex 00000004eed4; asc ;;
  44.  2: len 7; hex d3000002a10110; asc ;;
  45.  3: len 7; hex 67616f70656e67; asc gaopeng;;


  46. ---lock strcut(3):(Add by gaopeng) In modify Version I force check all REC_LOCK/TAB_LOCK for this Trx
  47. RECORD LOCKS space id 434 page no 3 n bits 96 index PRIMARY of table `test`.`testlll` trx id 323283 lock_mode X(LOCK_X) locks rec but not gap(LOCK_REC_NOT_GAP)
  48. Record lock, heap no 26 PHYSICAL RECORD: n_fields 4; compact format; info bits 0
  49.  0: len 4; hex 8000001a; asc ;;
  50.  1: len 6; hex 00000004eed3; asc ;;
  51.  2: len 7; hex d2000002330110; asc 3 ;;
  52.  3: len 7; hex 67616f70656e67; asc gaopeng;;


相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
2月前
|
SQL 关系型数据库 MySQL
MySQL死锁及源码分析!
MySQL死锁及源码分析!
MySQL死锁及源码分析!
|
2月前
|
SQL 关系型数据库 MySQL
案例剖析,MySQL共享锁引发的死锁问题!
案例剖析,MySQL共享锁引发的死锁问题!
|
7天前
|
存储 关系型数据库 MySQL
从新手到高手:彻底掌握MySQL表死锁
通过本文的介绍,希望你能深入理解MySQL表死锁的概念、原因、检测方法及解决方案,并在实际开发中灵活应用这些知识,提升系统的稳定性和性能。
59 9
|
1月前
|
SQL 算法 关系型数据库
面试:什么是死锁,如何避免或解决死锁;MySQL中的死锁现象,MySQL死锁如何解决
面试:什么是死锁,死锁产生的四个必要条件,如何避免或解决死锁;数据库锁,锁分类,控制事务;MySQL中的死锁现象,MySQL死锁如何解决
|
2月前
|
关系型数据库 MySQL 数据库
一个 MySQL 数据库死锁的案例和解决方案
本文介绍了一个 MySQL 数据库死锁的案例和解决方案。
136 3
|
2月前
|
监控 关系型数据库 MySQL
一次彻底讲清如何处理mysql 的死锁问题
【10月更文挑战第16天】本文详细介绍了如何处理 MySQL 中的死锁问题,涵盖死锁的概念、原因、检测方法及解决策略,强调通过优化事务设计、调整数据库参数、手动处理和预防措施等手段,有效减少死锁,提升数据库性能与稳定性。
455 0
|
2月前
|
SQL 关系型数据库 MySQL
MySQL异常一之: You can‘t specify target table for update in FROM clause解决办法
这篇文章介绍了如何解决MySQL中“不能在FROM子句中指定更新的目标表”(You can't specify target table for update in FROM clause)的错误,提供了错误描述、需求说明、错误做法和正确的SQL写法。
654 0
|
8天前
|
关系型数据库 MySQL 数据库
Python处理数据库:MySQL与SQLite详解 | python小知识
本文详细介绍了如何使用Python操作MySQL和SQLite数据库,包括安装必要的库、连接数据库、执行增删改查等基本操作,适合初学者快速上手。
71 15
|
2天前
|
SQL 关系型数据库 MySQL
数据库数据恢复—Mysql数据库表记录丢失的数据恢复方案
Mysql数据库故障: Mysql数据库表记录丢失。 Mysql数据库故障表现: 1、Mysql数据库表中无任何数据或只有部分数据。 2、客户端无法查询到完整的信息。
|
9天前
|
关系型数据库 MySQL 数据库
数据库数据恢复—MYSQL数据库文件损坏的数据恢复案例
mysql数据库文件ibdata1、MYI、MYD损坏。 故障表现:1、数据库无法进行查询等操作;2、使用mysqlcheck和myisamchk无法修复数据库。