Quantcast
Viewing all articles
Browse latest Browse all 3160

Capturing SQL Server Deadlocks using Extended Events

By: Eduardo Pivaral || Related Tips:More >Monitoring

Problem

In large environments, where you have large OLTP databases,deadlocks are a common issue. It is imperative to identify and resolve the SQL Server Deadlocks to guarantee business continuity with no user interruptions. Even when you can identify deadlocks using trace flags or Profiler , Extended Events provide us the ability to monitor and capture deadlock events and related information in a lightweight and customizable way. Also, Extended Events are meant to replace SQL Server Profiler as it is deprecated.

If you use trace flags, you can easily forget you have them configured on the server and if a migration/server rebuild occurs you can forget to configure them, especially for server handed over to your team.

Solution

Extended Events were introduced in SQL Server 2008, so you will not have any issue implementing them in your environment. In this tip, we will learn how to capture deadlock information using Extended Events and review the captured data.

Creating SQL Server Extended Events to Capture Deadlocks using Management Studio

First open SQL Server Management Studio (SSMS) and navigate to Management > Extended Events > Sessions.


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

Right click on Sessions and select New Session.


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

In the new window, enter a name for your event, we will use Deadlock_Capture for this example. Select the event to start at server startup and after session creation, you can change these options if you want.


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

Then go to the Events tab and in the event library textbox type “deadlock” to filter deadlock events:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

For this tip, we will select 2 events: Lock_Deadlock (Occurs when an attempt to acquire a lock is canceled for the victim of a deadlock) and Lock_deadlock_chain (Occurs when an attempt to acquire a lock generates a deadlock. This event is raised for each participant in the deadlock ).


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

With both events selected, click on the configure button, and a new window will appear, in this window we will capture the sql_text field to be able to see the query that caused the deadlock:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

In the Data Storage tab, select where you want to store the Extended Event data, I prefer to use a file:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

I leave the defaults and it should look something like this:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

After that, click on OK to save the Event configuration, we can see that the event is created and is already running:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

Create SQL Server Extended Events to Capture Deadlocks using T-SQL

You can achieve the same results as we demonstrated in SQL Server Management Studio by executing the following T-SQL code. In the comments of the code I briefly explain the purpose of each section.

--Event Session
CREATE EVENT SESSION [deadlock_capture] ON SERVER
--Events to track Lock_deadlock and Lock_deadlock_chain
ADD EVENT sqlserver.lock_deadlock(
ACTION(sqlserver.sql_text)),
ADD EVENT sqlserver.lock_deadlock_chain(
ACTION(sqlserver.sql_text))
-- TARGET to use, for this case, a file
ADD TARGET package0.event_file(SET filename=N'deadlock_capture')
--The event session advanced parameters, you can see that the event starts automatically
WITH (MAX_MEMORY=4096 KB,EVENT_RETENTION_MODE=ALLOW_SINGLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=30
SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=OFF,STARTUP_STATE=ON)
GO

Now our event to capture deadlocks is created, it is just a matter of testing it.

Testing SQL Server Extended Events with a Deadlock

Creating a deadlock for testing purposes is very simple, all you need is 2 tables and 2 sessions. In this example, we are updating the same record on each table for each session with open transactions.

In session 1 run this query (use any test table you want):

BEGIN TRAN
UPDATE tableA
set [value] = 'C1'
WHERE id = 1
WAITFOR DELAY '00:00:05'
UPDATE tableB
set [value] = 'C2'
WHERE id = 1

Then after a few seconds run the below code in session 2 (we just changed the update order):

BEGIN TRAN
UPDATE tableB
set [value] = 'C2'
WHERE id = 1
WAITFOR DELAY '00:00:05'
UPDATE tableA
set [value] = 'C1'
WHERE id = 1

One of the sessions will throw a message like this:

Msg 1205, Level 13, State 51, Line 9

After that, you can just commit or rollback the transaction that did not fail.

Of course, in a real-world scenario you will not be monitoring each user session in real time, that is why we created the Extended Event to capture this information for later analysis.

Now let's check how this deadlock was captured.

Reviewing Data Captured by SQL Server Extended Events

Using SSMS, navigate to Management > Extended Events > Sessions , and expand the event you want to check the data ( deadlock_capture for our example), then double click on the target you want to check:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

You can see the captured data so far, I filtered the data by date so you just see the test we did earlier:


Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

What the captured data tells us? The lock_deadlock_chain events tell us both sessions involved in the deadlock, as you can see clicking on any of them to see the details, for our example were sessions 53 and 56:
Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

The lock_deadlock event provides us the information about the deadlock victim, with the T-SQL code involved as well, we can correlate it to the session_id using the transaction_id field:
Image may be NSFW.
Clik here to view.
Capturing SQL Server Deadlocks using Extended Events

With this info you can create and analyze deadlocks in your database server.

Next Steps SQL Server introduced Extended Events in SQL Server 2008, they were meant to replace SQL Server Profiler traces and they provide a lightweight, customizable event collection platform. You can use the example I provided as a base and customize it adding other fields you might need (for example: capturing the user, hostname, etc.) Check out the

Viewing all articles
Browse latest Browse all 3160

Trending Articles