mysql之死锁_MySQL
其实,看到“死锁”二字,不需要王二,就是我,来再废口舌,这两个字名如其意,已经可以透过现象看本质了。不过呢,我虽然长着一副程序猿的样子,但一直没有理解好mysql的死锁概念,为此还曾苦恼过,觉得自己有愧于程序猿的脸面。有幸第N次拜读《高性能mysql》,恍惚间觉得自己明白了一些,也就是有点对得起程序猿这三个字了。
死锁是指两个或者多个事务在同一资源上相互占用,并请求锁定对方占用的资源,从而导致恶性循环的现象。
看看人家说得多好,可我王二愣是不能够发自于肺腑的理解,在这条路上走了很多弯路。
列个场景
回到洛阳后,我一直做的是大宗期货交易项目,既然是交易,肯定涉及到数据的多并发,大宗期货交易的模式很复杂,说实话,我维护了整个项目的正常运作,但对于“买涨”、“买跌”都有可能赚钱的路数,还是不清楚,只能怪自己太迟钝。所以只好举个简单的例子了。
我有两个好朋友,一个叫王一,一个叫王三,一个芳龄十八(本来想年方二八呢,一想这年龄好像未成年,觉得不合适),一个芳龄29,一个如花似玉,一个风韵犹存。王二,也就是我,作为一个屌丝男,能够交到这两个异性朋友,真是托了程序员的福。
那天王一很苦恼,她不知道怎么把win7操作系统升级到win10,小青年都挺喜欢接受新东西,于是找到了我,丢给我一句:“猿兄,帮我忙呗,升级个操作系统!”“当然好啊,大哥我巴不得啊”,我心里这样想,但是强装淡定,于是回了句“恩,稍等,哥忙着呢。”不过最终我成功帮她升级了操作系统,这妹的,崇拜我得不行,于是就成为了朋友。 关于王三,算了,我再这么无耻的yy下去,你肯定要来打醒我了,就这样吧。
场景就是,算了,还是上sql吧,我y不下去了。
<code class="language-sql hljs ">START TRANSACTION; update girl SET age=18 where id=2; update girl set age=29 where id=1; COMMIT;</code>
<code class="language-sql hljs "><code class="language-sql hljs ">START TRANSACTION; UPDATE girl set age=19 where id=1; update girl set age=30 where id=2; commit;</code></code>
<code class="language-sql hljs ">如果凑巧,两个事务都执行了第一条update语句,分别修改了王一和王三的年纪,同时也锁定了改行语句,接着,每个事务都尝试执行第二条语句时,却发现该行已被对方锁定,然后两个事务都在等待对方释放锁,同时又持有对方需要的锁,则陷入死循环。
<code class="language-sql hljs ">也就是说,逝水流年,王一和王三也逃不过时光的蹉跎,然而,在我心中,也就是王二的心中,却永远都不想他们老去,于是我和时光老人就干上了架,这会发生什么呢?
<code class="language-sql hljs ">等待结局
<code class="language-sql hljs ">时光老人 |
<code class="language-sql hljs ">王二 |
---|---|
<code class="language-sql hljs ">[SQL]START TRANSACTION;<br />
受影响的行: 0<br />
时间: 0.000s<br />
[SQL]UPDATE girl set age=19 where id=1;<br />
受影响的行: 0<br />
时间: 0.001s |
<code class="language-sql hljs ">[SQL]START TRANSACTION;<br />
受影响的行: 0<br />
时间: 0.000s<br />
[SQL]update girl SET age=18 where id=2;<br />
受影响的行: 1<br />
时间: 0.001s |
<code class="language-sql hljs ">[SQL]update girl set age=30 where id=2; |
<code class="language-sql hljs ">[SQL]update girl set age=29 where id=1;<br />
[Err] 1213 - Deadlock found when trying to get lock; try restarting transaction |
<code class="language-sql hljs ">innodb存储引擎,能检测到死锁的循环依赖,并立即返回一个错误。
<code class="language-sql hljs ">好吧,我还是干不过时光老人!
<code class="language-sql hljs ">假如这样呢
<code class="language-sql hljs ">故事到这里肯定是没有结束啊,我得想想办法,避免和时光老人发生冲突,于是就这样吧!
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">START TRANSACTION; UPDATE girl set age=19 where id=1; update girl set age=30 where id=2; commit;</code></code></code>
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">START TRANSACTION; update girl SET age=18 where id=1; update girl set age=29 where id=2; COMMIT;</code></code></code></code>
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">也就是说,在实战当中,假如我们遇到类似的问题,虽然innodb为我们做了错误的检测,但是我们还是要避免死锁的。
|
|
---|---|
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">[SQL]START TRANSACTION;<br>
受影响的行: 0<br>
时间: 0.037s<br>
<br>
[SQL]<br>
UPDATE girl set age=19 where id=1;<br>
受影响的行: 0<br>
时间: 0.001s |
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">[SQL]START TRANSACTION;<br>
受影响的行: 0<br>
时间: 0.001s<br>
<br>
[SQL]<br>
update girl SET age=18 where id=1; |
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">也就是说,在有这样的update时,尽量按照顺序来执行,避免冲突。当然了,情况不同,你如果不想这样,那就请不要相信我的鬼话,哈哈哈!
<code class="language-sql hljs "><code class="language-sql hljs "><code class="language-sql hljs ">好了,好了,mysql之死锁就这样结束吧!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Deadlock and starvation in Go: Preventing and solving deadlock: Coroutines are waiting for each other and cannot perform operations. Use the runtime.SetBlockProfileRate function to detect. Prevent deadlocks: Use fine-grained locking, timeouts, and lock-free data structures to prevent deadlocks. Starvation: The coroutine continues to be unable to obtain resources, and fair locks are used to prevent starvation. Fair lock practice: Create a fair lock and wait for the coroutine to try to acquire the lock for the longest time to acquire the lock first.

How to deal with deadlock problems in C++ development Deadlock is one of the common problems in multi-threaded programming, especially when developing in C++. Deadlock problems may occur when multiple threads wait for each other's resources. If not handled in time, deadlock will not only cause the program to freeze, but also affect the performance and stability of the system. Therefore, it is very important to learn how to deal with deadlock problems in C++ development. 1. Understand the causes of deadlocks. To solve the deadlock problem, you first need to understand the causes of deadlocks. Deadlock usually occurs when

Methods to solve the deadlock problem in Go language development Go language is an open source statically typed compiled language that is widely used in concurrent programming. However, due to the characteristics of the concurrency model of the Go language, developers often encounter deadlock problems when writing concurrent programs. This article will introduce some methods to solve the deadlock problem in Go language development. First, we need to understand what deadlock is. Deadlock refers to a situation where multiple concurrent tasks are unable to continue execution because they are waiting for each other to release resources. In Go language, deadlock problems are usually due to competition for resources or

Multi-thread deadlock prevention mechanism includes: 1. Lock sequence; 2. Test and set up. The detection mechanism includes: 1. Timeout; 2. Deadlock detector. The article takes an example of a shared bank account and avoids deadlock through lock sequence. The transfer function first requests the lock of the transfer out account and then the transfer in account.

Deadlock is a common error in concurrent programming that occurs when multiple threads wait for locks held by each other. Deadlocks can be resolved by detecting them using a debugger, analyzing thread activity, and identifying the threads and locks involved. Ways to resolve deadlocks include avoiding circular dependencies, using deadlock detectors, and using timeouts. In practice, deadlocks can be avoided by ensuring that threads acquire locks in the same order or by using recursive locks or condition variables.

How to solve the deadlock problem in Go language? Go language has the characteristics of concurrent programming, and concurrent operations can be achieved by using goroutine and channel. However, deadlock is a common problem in concurrent programming. When goroutines depend on each other's resources and create circular dependencies when accessing these resources, deadlocks may occur. This article will introduce how to solve the deadlock problem in the Go language and provide specific code examples. First, let’s understand what

The reasons for deadlock in the system include mutual exclusion conditions, request and hold conditions, inevitability conditions and circular waiting conditions. Detailed introduction: 1. Mutually exclusive conditions, multiple threads need to access certain shared resources at the same time, and these resources can only be occupied by one thread at a time. If one thread occupies a certain resource, other threads must wait for the resource to be released; 2 , Request and hold conditions. While a thread holds a certain resource, it also requests resources held by other threads. If these resources are occupied by other threads, it will cause the thread to wait; 3. Inevitability conditions, etc.

Deadlock Deadlock is when multiple threads wait for each other for resources, forming a loop that eventually causes all threads to block. In python, deadlock usually occurs when multiple locks or mutexes are locked in the wrong order. Example: importthreading#Two threads share two locks lock1=threading.Lock()lock2=threading.Lock()defthread1_func():lock1.acquire()lock2.acquire()#Do some operations lock2.release()lock1. release()defthread2_func():loc
