- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在处理某个特定实现时遇到了问题。
我有一个基本的方法来创建一个新的上下文,查询一个表并从表中获取“LastNumberUsed”,在最终增加和写回之前对这个数字执行一些基本检查——所有这些都在一个事务中。
我已经编写了一个基本的测试应用程序,它使用 Parallel.For 来执行这个方法 5 次。
使用 Isolation.Serialization 我发现在运行此代码时出现了很多死锁错误。
我已经阅读了一些关于这个主题的内容,并尝试将隔离级别更改为快照。我不再遇到死锁,而是发现我遇到了隔离更新冲突错误。
我真的不知道该怎么办。每个事务大约需要 0.009 秒才能完成,所以我一直在考虑将代码包装在 try..catch 中,检查死锁错误并再次运行,但这感觉像是一个困惑的解决方案。
有没有人对如何处理这个问题有任何想法(或最好的经验)?
我创建了一个控制台应用程序来演示这一点。
在程序 main 中,我运行以下代码:
Parallel.For(0, totalRequests,
x => TestContract(x, contractId, incrementBy, maxRetries));
//Define the context
using (var context = new Entities())
{
//Define a new transaction
var options = new TransactionOptions {IsolationLevel = IsolationLevel.Serializable};
using (var scope = new TransactionScope(TransactionScopeOption.Required, options))
{
//Get the contract details
var contract = (
from c in context.ContractRanges
where c.ContractId == contractId
select c).FirstOrDefault();
//Simulate activity
Threading.Thread.sleep(50);
//Increment the contract number
contract.Number++;
//Save the changes made to the context
context.SaveChanges();
//Complete the scope
scope.Complete();
}
}
}
最佳答案
暂时将隔离级别放在一边,让我们专注于您的代码正在做什么:
您正在并行运行 5 个调用 TestContract
的任务。路过一样contractId
对于他们所有人,对吧?
在 TestContract
您获取 contract
由其 id
,用它做一些工作,然后增加 Number
契约(Contract)的属性(property)。
所有这一切都在交易边界内。
为什么会出现死锁?
为了理解为什么会陷入僵局,了解 Serializable
是什么很重要。隔离级别是指。
documentation of SQL Server Isolation Levels以下是关于 Serializable
的内容(强调我的):
- Statements cannot read data that has been modified but not yet committed by other transactions.
- No other transactions can modify data that has been read by the current transaction until the current transaction completes.
- Other transactions cannot insert new rows with key values that would fall in the range of keys read by any statements in the current transaction until the current transaction completes.
Range locks are placed in the range of key values that match the search conditions of each statement executed in a transaction. This blocks other transactions from updating or inserting any rows that would qualify for any of the statements executed by the current transaction. This means that if any of the statements in a transaction are executed a second time, they will read the same set of rows. The range locks are held until the transaction completes. This is the most restrictive of the isolation levels because it locks entire ranges of keys and holds the locks until the transaction completes. Because concurrency is lower, use this option only when necessary. This option has the same effect as setting HOLDLOCK on all tables in all SELECT statements in a transaction.
TaskA
和
TaskB
与
contractId=123
, 全部在与
Serializable
的交易下隔离级别。
Transaction 1234
具有可序列化隔离级别 Transaction 5678
具有可序列化隔离级别 SELECT * FROM ContractRanges WHERE ContractId = 123
.ContractRanges
中放置了一个锁表,在 ContractId = 123
所在的行中以防止其他事务改变该数据。 SELECT
声明并放了一个 lock
在 ContractId = 123
排的ContractRanges
table 。 Number
契约(Contract)Number
契约(Contract)属性(property)SaveChanges
反过来,它会尝试提交事务。 1234
,我们正在尝试修改
Number
具有事务创建的锁的行中的值
5678
所以,SQL Servers 开始等待
lock
被释放以便按照您的要求提交事务。
TaskB
,然后,也调用 SaveChanges
,就像发生在 TaskA
上一样,它试图增加 Number
契约(Contract)123
.在这种情况下,它会找到一个 lock
在事务创建的那一行 1234
来自 TaskA
. 1234
来自
TaskA
等待来自事务的锁
5678
待发布
和 交易
5678
等待来自事务的锁
1234
即将面世。这意味着我们处于死锁状态,因为两个事务都无法完成,因为它们相互阻塞。
victim
,杀死它并允许另一个继续。
Serializable
,但很有可能您不需要它。
Serializable
是最安全和最严格的隔离级别,它通过牺牲并发性来实现,就像我们看到的那样。
Serializable
保证您真的不应该尝试更新
Number
同时签同一份契约(Contract)。
Snapshot Isolation
选择
I have read a bit on this subject and tried changing the isolation level to snapshot. I no longer get deadlocks but instead find I get isolation update conflict errors.
Snapshot
使用乐观并发模型。
Specifies that data read by any statement in a transaction will be the transactionally consistent version of the data that existed at the start of the transaction. The transaction can only recognize data modifications that were committed before the start of the transaction. Data modifications made by other transactions after the start of the current transaction are not visible to statements executing in the current transaction. The effect is as if the statements in a transaction get a snapshot of the committed data as it existed at the start of the transaction.
Except when a database is being recovered, SNAPSHOT transactions do not request locks when reading data. SNAPSHOT transactions reading data do not block other transactions from writing data. Transactions writing data do not block SNAPSHOT transactions from reading data.
During the roll-back phase of a database recovery, SNAPSHOT transactions will request a lock if an attempt is made to read data that is locked by another transaction that is being rolled back. The SNAPSHOT transaction is blocked until that transaction has been rolled back. The lock is released immediately after it has been granted.
The ALLOW_SNAPSHOT_ISOLATION database option must be set to ON before you can start a transaction that uses the SNAPSHOT isolation level. If a transaction using the SNAPSHOT isolation level accesses data in multiple databases, ALLOW_SNAPSHOT_ISOLATION must be set to ON in each database.
A transaction cannot be set to SNAPSHOT isolation level that started with another isolation level; doing so will cause the transaction to abort. If a transaction starts in the SNAPSHOT isolation level, you can change it to another isolation level and then back to SNAPSHOT. A transaction starts the first time it accesses data.
A transaction running under SNAPSHOT isolation level can view changes made by that transaction. For example, if the transaction performs an UPDATE on a table and then issues a SELECT statement against the same table, the modified data will be included in the result set.
Number
的初始值是 2
契约(Contract)123
Transaction 1234
具有快照隔离级别 Transaction 5678
具有快照隔离级别 Number = 2
契约(Contract)
123
.
SELECT * FROM ContractRanges WHERE ContractId = 123
.因为我们在 Snapshot
下运行隔离,没有locks
. SELECT
声明,也做 不是 放任何 locks
. Number
契约(Contract)到3
Number
契约(Contract)属性(property)到3
SaveChanges
反过来,这会导致 SQL Server 将创建事务时创建的快照与数据库的当前状态以及在此事务下所做的未提交更改进行比较。由于没有发现任何冲突,它提交了事务,现在 Number
值为 3
在数据库中。 TaskB
,然后,也调用 SaveChanges
,并尝试提交其事务。当 SQL Server 将事务快照值与数据库中当前的值进行比较时,它会发现冲突。在快照中,Number
有一个值 2
现在它的值为 3
.然后,它抛出 Update Exception
. TaskB
这次失败了,因为
TaskA
变异了也在
TaskB
中使用的数据.
Serializable
下运行代码时发生的情况。和
Snapshot
隔离级别,您可以对
fix
做些什么它。
Contract
真的有意义吗?记录。这是我在您的代码中看到的第一个大气味,我会先尝试理解这一点。您可能需要与您的企业讨论这个问题,以了解他们是否真的需要契约(Contract)中的这种并发性。
Serializable
因为这会导致
deadlocks
就像你看到的那样。所以,我们只剩下
Snapshot
隔离。
OptmisticConcurrencyException
这真的由你来处理取决于你和你的企业来决定。
OptmitisticConcurrencyException
出现时重试执行操作。被抛出。这是基于这样的假设:在第二次时,不会有并发事务改变相同的数据并且操作现在将成功。
关于c# - Entity Framework 死锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26102309/
我有这些实体(这只是我为这篇文章创建的抽象): 语言 区 说明 这些是它们之间的引用: 区 * - 1 语言 说明 * - 1 语言 区 1 - 1 说明 如果我这样取: var myFetch =
经过大量谷歌搜索后,除了降级 hibernate 版本之外,我没有找到问题的答案。但我在 2003 年类似的帖子中遇到了这种情况。 问题是什么: //in the first session I d
我听说过 linq to entities 。 Entity Framework 是利用linq to entities吗? 最佳答案 LINQ to Entities 是 Entity Framew
我是 Entity Framework 和 ASP.Net MVC 的新手,主要从教程中学习,对任何一个都没有深入了解。 (我确实有 .Net 2.0、ADO.Net 和 WebForms 方面的经验
如果我编写 LINQ to Entities 查询,该查询是否会转换为提供程序理解的 native 查询(即 SqlClient)? 或者 它是否会转换为实体 SQL,然后 Entity Framew
这个问题已经有答案了: EF: Include with where clause [duplicate] (5 个回答) 已关闭 2 年前。 看来我无法从数据库中获取父级及其子级的子集。 例如...
我开始在一家新公司工作,我必须在一个旧项目上使用 C++ 工作。所以,我忘记了一些 C++ 本身的代码结构。在一个函数中,我在一个函数中有双冒号::,但我不知道如何理解它。 例如,我知道如果我有 EN
我写了一个方法来允许为 orderby 子句传递一个表达式,但我遇到了这个问题。 Unable to cast the type 'System.DateTime' to type 'System.I
简单的问题:LINQ to Entities 和 Entity Framework 有什么区别?到目前为止,我认为这两个名称是用来描述同一个查询的,但我开始觉得事实并非如此。 最佳答案 Entity
我想使用 Entity Framework 。但是,我还要求允许我的用户在我们的系统中定义自定义字段。我想仍然使用 Entity Framework ,而不是使用具有哈希表属性的分部类。 下面是我想到
我正在阅读这个 E.F. 团队博客的这个系列 http://blogs.msdn.com/b/adonet/archive/2011/01/27/using-dbcontext-in-ef-featu
我正在使用 EF6 开发插件应用程序,代码优先。 我有一个名为 User 的实体的主要上下文。 : public class MainDataContext : DbContext { pub
当我得到最后的 .edmx 时,我遇到了问题。 我收到一条消息说 错误 11007:未映射实体类型“pl_Micro”。 查看设计器 View ,我确实看到该表确实存在。 我怎样才能克服这个消息? 最
我已阅读与使用 Entity Framework 时在 Linq to Entities (.NET 3.5) 中实现等效的 LEFT OUTER JOIN 相关的所有帖子,但尚未找到解决以下问题的方
使用 WCF RIA 服务和 Entity Framework 4. 我有 3 个 DTO:学校、州、区。 州 DTO 有一个地区属性(property),其构成。学校 DTO 有一个国家属性(pro
我有一个 Employee 实体,它继承自一个继承自 Resource 实体(Employee -> Person -> Resource)的 Person 实体。是否可以通过编程方式获取 Emplo
我有一个使用 JPA 的 java 应用程序。 假设我有一个名为 Product 的实体与 name和 price属性(所有实体都有一个 id 属性)。 自然我可以得到一个List相当容易(来自查询或
我有一个 Entity Framework 类,其中有两个指向另一个对象的引用 public class Review { [Key] public int Id {get;s
我是 Symfony 2 的新手,我想知道一些事情: 假设我的项目中有 2 个 bundle 。我想在两个包中使用从我的数据库生成的实体。 我应该在哪里生成实体? (对我来说,最好的方法是在 bund
我想在具有方法和属性的部分类中扩展 EF 实体。我经常这样做。 但是现在我需要将来自该实体的数据与来自其他实体的数据结合起来。因此,我需要能够访问实体 objectcontext(如果附加)来进行这些
我是一名优秀的程序员,十分优秀!