-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeout not working as expected [EDIT: Async pessimistic timeout does not timeout synchronous delegates] #340
Comments
Hey @udlose. TL;DR You happen to have hit upon an Explanation: why does the posted test code not work?The Polly async By 'truly async' I mean: conform to the async method pattern of returning to the caller a Returning that
contains no Change the delegate to the following, and it will work:
In this version, as soon as |
Follow-up discussion: Should Polly handle the case [1]?Could Polly async It could: it could adopt exactly the same strategy as sync pessimistic timeout policy, of spinning off the executed delegate as a separate Should Polly do this? At design time, I elected not. For the vast majority of async cases, well-conforming to the async method pattern, that Could this burn Polly users in production scenarios? It could, but only if they are faced with executing these 'faux'-asynchronous (in fact purely-synchronous) delegates through async, pessimistic The main scenario I have envisaged where this might occur could be if some third-party component implements faux async-over-sync wrappers for long-running delegates, eg I've followed this up at blog-post length because I appreciate this behaviour (async pessimistic timeout not handling these) could cause confusion, given the stated 'walk away from anything' power of pessimistic timeout. I'd be interested if community members can think of any real-world async delegate cases, for which this design decision might cause difficulty. EDIT: Updated the TimeoutPolicy wiki to document this. |
Thank you for the thorough explanation! I assume in the |
When Does this cover the sense of 'catch' the timeout in your question? |
@udlose Let us know (after Thanksgiving!) if we can help any further on this. Re your question:
... there could be two senses. (1) Per previous comment, a |
await Policy.TimeoutAsync(TimeSpan.FromMilliseconds(500)).ExecuteAsync(async () =>
{
await Task.Delay(4000);
return await this.TryGetRedis<TResult>(cacheKey);
}); [16:22:07 INF] Executing action method X - Validation state: Valid I am just not able to hit the timeout. I've tried various methods. The snippet above is the gist of it. |
@mrmartan See the Polly Timeout documentation. TimeoutPolicy with
If you need to be able to walk-away from an execution that doesn't honour |
Sry, my bad. Missed the overload. Although my example code is arguably what you would expect to work just from looking at it. |
Np. Re:
Agreed. There was a trade-off at design time. That's just to explain the rationale of the decision (why your case doesn't work as the default), but I agree: it makes for this speedbump on learning how to use the policy. |
Please clarify if I am misunderstanding how the Timeout Policy works. I would expect this to cause a TimeoutRejectedException but it does not. I have a Task.Delay(4000).Wait() defined in the func that Polly executes. I would think that anything in that Func that takes longer than the specified Timeout would throw TimeoutRejectedException but this is not the behavior I'm seeing.
Taken from Polly samples
The text was updated successfully, but these errors were encountered: