In this post I am presenting a couple of things I’ve learned from the analysis of a problem, that manifested itself in an occasional HTTP 500 errors in production instance of an ASP.NET application. This time I don’t aim at exhaustively explaining every single point, because each of them could be a subject of a dedicated blog post.
The story begins with SQL error: SQLEXCEPTION: Transaction was deadlocked on lock resources with another process and has been chosen as the deadlock victim.
-
In any reasonably modern version of SQL Server Management Studio there is an
XEvent
sessionsystem_health
under Management → Extended Events. It allows for viewing some important server logs, among whichxml_deadlock_report
in particularly interesting. It is very important to have an access to the production instance of database server in order to be able to watch the logs. -
In this particular case, these
xml_deadlock_reports
contained one suspicious attribute: isolationlevel = Serializable (4) and the SQL code was aSELECT
. I would not expect mySELECT
s running with Serializable isolation level. -
The isolation level is an attribute of a connection between a client and the database server. A connection is called session in SQL Server terminology. An explicit
BEGIN TRAN
is not necessary for the isolation level to be applied. Every SQL statement runs in its own statement-wide transaction. However, for such narrow-scoped transactions, in practice it may not make any difference whether you raise the isolation level or not. The difference can be observed when a transaction is explicit and spans multiple SQL statements. -
The cause of setting the serialization level to Serializable was the behaviour of the
TransactionScope
[1]. If you use it, it raises the isolation level. It is just a peculiarity of this very API of the .NET framework. It is good to know this. - SQL Server, at last in 2012 and some (I am not sure exactly which ones) later versions, does not reset the isolation level when ADO.NET disposes of a connection. A connection returns back to the connection pool [2] and is reused by subsequent
SqlConnection
objects unless they have different connection string. - The connection pool size, if the connection pooling is active, poses the limit of how many concurrent connections to a database server a .NET application can make. If there are no free connections in the pool, an exception is thrown [3].
-
Eliminating the usage of
TransactionScope
did not solve the issue. Even if you runSELECT
s under the default Read Committed isolation level, these still issues Shared locks which may deadlock with Exclusive locks ofUPDATE
s. In any reasonably high production data traffic, whereSELECT
s span multiple tables, which are also very frequently updated, it is highly probable, that a deadlock will occur. -
The difference between running
SELECT
under Serializable isolation level and Read Committed level is that in the former, the locks are kept from the moment of executing theSELECT
until the transaction ends. You can observe it by manually beginning a Serializable transaction, running anySELECT
and observingdm_tran_locks
DMV and only then committing (or rolling back, whatever) the transaction. With Read Committed level locks are not kept until an explicit transaction ends, they are released immediately after execution of aSELECT
finishes. These are the same kind of locks, Shared locks. This implies one cannot observe the difference between executing aSELECT
under Serializable and Read Committed, when there is no explicit transaction and thus, there is only a statement-wide transaction which releases locks immediately after the results are returned. - Setting isolation level of Read Uncommitted is practically equivalent to running a
SELECT WITH(NOLOCK)
hint, even if you don’t explicitly open a transaction. -
In Entity Framework a
SqlConnection
is opened for every materialization of the query, the results are returned, and the connection is immediately closed and returned back to the pool [5]. The connection lifetime is by no means related to the scope ofDbContext
object. I can see a kind of similarity between how Entity Framework usesSqlConnection
s and how ASP.NET makes use of threads when executingasync
methods. A thread is released on everyawait
and can be used for doing something more valuable than waiting. Similarly, aSqlConnection
is released right after materialization and can be used for executing different command, in different request (in case of ASP.NET) even beforeDbContext
is disposed of. - It is not that obvious how to reset the isolation level of the connection. You see, every time your C# code using Entity Framework results in sending a SQL to the SQL Server, it can take different connection from the pool (if anyone knows if there is any ordering applied when retrieving connections from the pool, please feel free to comment). It may or may not be the same connection you used previously. Consequently, it is not easy to ‘catch’ the underlying connection using Entity Framework. You can call
BeginTransaction
every time you useDbContext
, and then you are guaranteed to own the connection for all your SQL commands. But that way you are forcing opening transaction when you don’t really need one. What I recommend is to handleStateChange
event ofDbConnection
object as described in [4]. You can do it either on opening the connection or on closing it. - In SQL Server you can monitor open sessions with the following query:
References:
[1] https://stackoverflow.com/questions/11292763/why-is-system-transactions-transactionscope-default-isolationlevel-serializable
[2] https://stackoverflow.com/questions/9851415/sql-server-isolation-level-leaks-across-pooled-connections
[3] https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql-server-connection-pooling
[4] https://stackoverflow.com/questions/28442558/entity-framework-and-transactionscope-doesnt-revert-the-isolation-level-after-d
[5] https://docs.microsoft.com/en-us/previous-versions/dotnet/netframework-4.0/bb896325(v=vs.100)#connections-and-the-entity-framework
This is very great post. Thanks a lot. Information straight from battlefield are the best posts ever. Keep posting. 🙂