我正在运行一个.Net MVC Azure网站,其中包含使用Entity Framework 6访问的sql Azure数据库.间歇性地(大约一千个请求中的一个),我收到错误“System.ComponentModel.Win32Exception:信号量超时期限已过期”
System.Data.sqlClient.sqlException: A transport-level error has
occurred when receiving results from the server. (provider: TCP
Provider,error: 0 – The semaphore timeout period has expired.) —>
System.ComponentModel.Win32Exception: The semaphore timeout period has
expired
解决方法
Azure sql与内部sql非常不同.当Azure sql Server过载或关闭时,它将断开许多连接,当您重新连接时,您将被发送到另一个sql Server.
但是,对于TCP连接,您不知道另一端是否已终止连接,除非您实际向下发送信息,这就是发生此错误的原因.
一旦你的代码知道连接被终止,它就会在下一个查询上建立一个新的连接,这将很好地工作.
使用Entity Framework 6,您现在可以处理Transient Fault Handling with SQL Azure using Entity Framework
在DBConfiguration类中,您需要设置SetExecutionStrategy并对其进行配置.只需在项目中创建一个新类,并从DbConfiguration继承.
public class MyConfiguration : DbConfiguration { public MyConfiguration() { SetExecutionStrategy( "System.Data.sqlClient",() => new sqlAzureExecutionStrategy(1,TimeSpan.FromSeconds(30))); } }