MySQL 死锁日志分析
- ------------------------
- LATEST DETECTED DEADLOCK
- ------------------------
- 140824 1:01:24
- *** (1) TRANSACTION:
- TRANSACTION 110E, ACTIVE 73 sec starting index read ## 事务ID=110E,活跃了73s
- mysql tables in use 1, locked 1
- LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) ## 有2个行锁
- MySQL thread id 1, OS thread handle 0x7f55ea639700, query id 81 localhost root updating ## 该事务的线程ID=1
- delete from t1 where a=1 ## 这是当前事务执行的SQL
- *** (1) WAITING FOR THIS LOCK TO BE GRANTED: ## 上面SQL等待的锁信息
- RECORD LOCKS space id 12 page no 3 n bits 80 index `PRIMARY` of table `test`.`t1` trx id 110E lock_mode X locks rec but not gap waiting
- Record lock, heap no 2 PHYSICAL RECORD: n_fields 4; compact format; info bits 32 ## 等待在主键上的page num=3上有加一个X锁(not gap waiting),锁80 bits
- 0: len 4; hex 80000001; asc ;;
- 1: len 6; hex 00000000110c; asc ;;
- 2: len 7; hex 0d000002350084; asc 5 ;;
- 3: len 4; hex 80000001; asc ;;
- *** (2) TRANSACTION:
- TRANSACTION 110C, ACTIVE 1716 sec starting index read, thread declared inside InnoDB 500 ## 事务ID=110C,活跃了1716s
- mysql tables in use 1, locked 1
- 3 lock struct(s), heap size 376, 2 row lock(s), undo log entries 1 ## 3个锁,2个行锁,1个undo log
- MySQL thread id 2, OS thread handle 0x7f563c05e700, query id 82 localhost root updating ## 该事务的线程ID=2
- delete from t1 where a=3 ## 这是当前事务执行的SQL
- *** (2) HOLDS THE LOCK(S): ## 这个事务持有的锁信息
- RECORD LOCKS space id 12 page no 3 n bits 80 index `PRIMARY` of table `test`.`t1` trx id 110C lock_mode X locks rec but not gap
- Record lock, heap no 2 PHYSICAL RECORD: n_fields 4; compact format; info bits 32 ## 在主键上的page num=3上已持有一个X锁(not gap),锁80 bits
- 0: len 4; hex 80000001; asc ;;
- 1: len 6; hex 00000000110c; asc ;;
- 2: len 7; hex 0d000002350084; asc 5 ;;
- 3: len 4; hex 80000001; asc ;;
- *** (2) WAITING FOR THIS LOCK TO BE GRANTED: ## 同时这个事务还等待的锁信息
- RECORD LOCKS space id 12 page no 3 n bits 80 index `PRIMARY` of table `test`.`t1` trx id 110C lock_mode X locks rec but not gap waiting
- Record lock, heap no 3 PHYSICAL RECORD: n_fields 4; compact format; info bits 0 ## 同样等待在主键上的page num=3上有加一个X锁(not gap waiting),锁80 bits
- 0: len 4; hex 80000003; asc ;;
- 1: len 6; hex 000000000f71; asc q;;
- 2: len 7; hex ed0000022f0090; asc / ;;
- 3: len 4; hex 80000003; asc ;;
- *** WE ROLL BACK TRANSACTION (1) ## 这里选择回滚了事务110E。
- 也就是说,这个死锁使用事务110E中的SQL没有执行,回滚了:
- delete from t1 where a=1
- 而事务110C中的SQL是正常被执行的:
- delete from t1 where a=3
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 上周热点回顾(3.3-3.9)
· AI 智能体引爆开源社区「GitHub 热点速览」