Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could anyone guide me how to implement a retry policy with EF to SQL Azure, please.

Thanks.

share|improve this question

3 Answers

I am using the Transiet Fault Handling Framework, provided in lue of a better solution by EF team.

  • Add the binary, or the project in the link above to your solution, and add the reference to your project.
  • Instantiate a retry policy with suitable parameters:

    var retryPolicy = new RetryPolicy (10, TimeSpan.FromSeconds(0.5), TimeSpan.FromSeconds(2)) { FastFirstRetry = true };

  • Use your retry policy object for any atomic work on the context.

    using(var context = new ... ){ { ...//Maybe you do something to the database... retryPolicy.ExecuteAction(() => context.SaveChanges()); }

share|improve this answer
+1 I know this question is quite old now but good work on mentioning the Transient Fault Handling Framework. I have been using it in production for some time now and it works fantastically well for me. – David Steele Aug 9 '11 at 12:15

This Azure Forum thread has some links to good resources that cover this topic. There doesn't seem to be anything 'official' quite yet. But there are some open source projects that give you a pretty good start.

http://social.msdn.microsoft.com/Forums/en-US/ssdsgetstarted/thread/3a9ed384-5374-438e-a8a4-ff4bd8000738/#27b5251a-bff5-4282-980c-ad43fdd85591

From the answer:

http://blogs.msdn.com/b/appfabriccat/archive/2010/10/28/best-practices-for-handling-transient-conditions-in-sql-azure-client-applications.aspx

I personally didn't use the library the blog mentions. Instead I was able to get away with a simple WHILE LOOP with a TRY/CATCH that watched for the specific SQL EXCEPTION Error Numbers which were safe to retry. There is also a counter which basically prevents it from 'retrying' forever.

share|improve this answer
Thanks Vyrotek,would you be able to share your while loop try/catch please? – Myagdi Apr 20 '11 at 2:31

The Windows Server AppFabric Customer Advisory Team have provided some fairly detailed guidance around retries in this blog post.

Basically, they've got a number of different ways of using the Transient Fault Handling Framework (which has been since superseded by the Transient Fault Handling Application Block, which is similar) in order to provide retries.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.