通常状况下死锁不是一步到位的,它必须知足特定的条件,而后造成资源的循环依赖才会产生死锁,死锁以前必定会出现阻塞,由阻塞升级才有可能出现死锁,因此咱们有必要了解系统中都有哪些已经被阻塞的锁。sql
我在解决共享锁产生的死锁时,我测试团队的一位同事的问题:既然全部的查询都已是read uncommitted模式了,为何还会有死锁呢?下面这篇会回答这个问题。数据库
We already know what are the most important lock types and how transaction isolation levels affect locking behavior. Enough theory – today I’d like to show you simple example why blocking typically occurs in the system.session
咱们已经知道了最重要的几种锁的类型以及事务隔离级别是如何影响锁行为的。今天我将给你们讲一个例子,展现阻塞是如何发生的。sqlserver
First, let’s create the table and populate it with the data.测试
首先,咱们建立一个表格以及往这个表格中插入必定的测试数据。优化
As you can see, this table has 50,000 rows now and 1 clustered index on ID column. Now let’s start another session and run update statement that acquires the lock (update row with ID = Value = 40000). I’m using read committed isolation level but that behavior occurs in any pessimistic isolation level (read uncommitted, read committed, repeatable read and serializable).ui
这个表格已经有50,000行数据,在Id列上有一个汇集索引。咱们另起一个会话用来更新数据。注意,这个更新的事务未提交。this
Next, let’s take a look at the list of the locks in the system with sys.dm_tran_locks DMV. I don’t have any other activity in the system but in your case, you can filter results by request_session_id if needed.spa
下一步,咱们从sys.dm_tran_locks中查询全部的锁信息。这个视图因为统计了全部会话的锁信息,若是你查询的一个正在使用中的数据库。,那么显示的信息可能会比较多,你须要根据本身的会话Id过滤下数据结果,我本地由于没有其它的会话,因此不须要过滤。server
So we can see 3 active locks: exclusive lock on key (row) level and 2 intent-exclusive locks on the page and table levels.
咱们看到了3个锁信息,一个排它锁在行记录上,两个意向排它锁在页级以及数据表对象上。
Now let’s open another session and run select with filter on ID column in the read committed isolation level (you’ll experience the same behavior in repeatable read and serializable isolation levels). This select executes just fine with clustered index seek in the plan.
如今咱们打开另一个会话,在Read comitted 模式下执行一条按Id过滤的查询语句。这条查询语句在汇集索引查找下很顺利的执行成功。
Now let’s change select and replace filter on ID column with filter on Value column. This select should return the same 1 row but it you run it, it would be blocked.
如今,咱们更换查询条件,从Id转换成非汇集索引列Value ,这条语句应该返回一行数据,但当你执行时,它将会被阻塞住。
If we query sys.dm_tran_locks again, we can see that the second session is waiting to acquire shared lock.
Let’s terminate the select and take a look at estimated execution plan.
让咱们来看一看实时的执行计划
As you can see, the plan changes to clustered index scan. We know that this select returns only 1 row from the table but in order to process the request, SQL Server has to read every row from the table. When it tries to read updated row that held exclusive lock, the process would be blocked (S lock is incompatible with X/IX locks). That’s it – blocking occurs not because multiple sessions are trying to update the same data, but because of non-optimized query that needs to process/acquire lock on the data it does not really need.
就像你看到的,执行计划已经变为汇集索引扫描了。咱们知道这个查询只应该返回一条数据,但SQL SERVER为了返回正确的行不得不读取全部行记录。当它尝试读取正在被更新的(已经被上了排它锁)数据行时就会出现阻塞。因此阻塞的发生并非由于同时有多个会议尝试去更新相同的数据,而是由于没有通过优化的查询申请了锁,但读取到的数据每每是没必要要的数据。
Now let’s try to run the same select in read uncommitted mode.
如今,咱们在read uncommitted模式下执行相同的语句
As you can see – select runs just fine even with scan. As I already mentioned, in read uncommitted mode, readers don’t acquire shared locks. But let’s run update statement.
如图显示,查询语句在uncommitted模式式正常返回。就像我已经提醒过的,在read uncommitted模式下,读取数据不须要申请共享锁,但咱们来试试数据更新
It would be blocked. If you take a look at the lock list, you’ll see that there is the wait on update lock (SQL Server acquires update locks when searches for the data for update)
阻塞出现,咱们再看一下锁列表,将会发现一个更新锁,当前的状态为等待。
And this is the typical source of confusions – read uncommitted mode does not eliminate blocking – shared locks are not acquired, but update and exclusive locks are still in the game. So if you downgraded transaction isolation level to read uncommitted, you would not completely solve the blocking issues. In addition to that, you would introduce the bunch of consistency issues. The right way to achieve the goal is to illuminate the source of the problem – non-optimized queries.
这是典型的容易引发混淆的缘由所在。read uncommitted模式并不会消除阻塞。共享锁虽然不须要申请了,但更新锁以及排它锁仍然存在。若是你将事务隔离级别下降到read uncommitted,你并不能彻底解决阻塞的问题。额外说一下,这样会产生数据不致的问题。正确解决阻塞的方法是说明问题的根源:未经优化的查询。
Next time we will talk how to detect such queries.
下一次咱们将讨论如何发现这些未经优化的查询。