多线程linq2sql应用程序的TransactionScope困难
本文关键字:TransactionScope 困难 应用程序 linq2sql 多线程 | 更新日期: 2023-09-27 17:51:23
我创建了一个文件处理服务,它从一个特定的目录读取和导入xml文件。
服务启动几个worker,这些worker将轮询文件队列以获取新文件,并使用linq2sql进行数据访问。每个工作线程都有自己的数据上下文。
正在处理的文件包含多个订单,每个订单包含多个地址(客户/承包商/分包商)
我已经围绕每个文件的处理定义了一个transactionscope。通过这种方式,我希望确保正确处理整个文件,或者在发生异常时回滚整个文件:
try
{
using (var tx = new TransactionScope(TransactionScopeOption.RequiresNew))
{
foreach (var order in orders)
{
HandleType1Order(order);
}
tx.Complete();
}
}
catch (SqlException ex)
{
if (ex.Number == SqlErrorNumbers.Deadlock)
{
throw new FileHandlerException("File Caused a Deadlock, retrying later", ex, true);
}
else
throw;
}
服务的要求之一是创建或更新xml文件中找到的地址。我创建了一个地址服务它负责地址管理。对于xml importfile ()中的每个订单(在方法HandleType1Order()
中)执行以下代码,因此是整个文件的TransactionScope的一部分。
using (var tx = new TransactionScope())
{
address = GetAddressByReference(number);
if (address != null) //address is already known
{
Log.Debug("Found address {0} - {1}. Updating...", address.Code, address.Name);
UpdateAddress(address, name, number, isContractor, isSubContractor, isCustomer);
}
else
{
//address not known, so create it
Log.Debug("Address {0} not known, creating address", number);
address = CreateAddress(name, number, sourceSystemId, isContractor, isSubContractor,
isCustomer);
_addressRepository.Save(address);
}
_addressRepository.Flush();
tx.Complete();
}
我在这里要做的是创建或更新一个地址,其编号是唯一的。
方法GetAddressByReference(string number)
返回已知地址,如果没有找到地址则返回null。
public virtual Address GetAddressByReference(string reference)
{
return _addressRepository.GetAll().SingleOrDefault(a=>a.Code==reference);
}
当我运行该服务时,它会创建多个具有相同编号的地址。方法GetAddressByReference()
得到并发调用,并应返回一个已知的地址,当第二个线程执行相同的地址号码的方法,但它返回null。我的事务边界或隔离级别可能有问题,但我似乎无法使其工作。
注。我对事务被死锁并导致回滚没有问题,当发生死锁时,文件将被重试。
编辑1线程代码:
public void Work()
{
_isRunning = true;
while (true)
{
ImportFileTask task = _queue.Dequeue(); //dequeue blocks on empty queue
if (task == null)
break; //Shutdown worker when a null task is read from the queue
IFileImporter importer = null;
try
{
using (new LockFile(task.FilePath).Acquire()) //create a filelock to sync access accross all processes to the file
{
importer = _kernel.Resolve<IFileImporter>();
Log.DebugFormat("Processing file {0}", task.FilePath);
importer.Import(task.FilePath);
Log.DebugFormat("Done Processing file {0}", task.FilePath);
}
}
catch(Exception ex)
{
Log.Fatal(
"A Fatal exception occured while handling {0} --> {1}".FormatWith(task.FilePath, ex.Message), ex);
}
finally
{
if (importer != null)
_kernel.ReleaseComponent(importer);
}
}
_isRunning = false;
}
上面的方法在我们所有的工作线程中运行。它使用Castle Windsor来解析FileImporter, FileImporter具有一种暂态方式(因此不能跨线程共享)。
你没有发布你的线程代码,所以很难说问题是什么。我假设您已经启动了DTC(分布式事务协调器)?
你正在使用ThreadPool吗?你是否使用了"锁"关键字?
http://msdn.microsoft.com/en-us/library/c5kehkcz.aspx