HttpClient throws TaskCanceledException on timeout
error msg:
HttpClient throws TaskCanceledException on timeout
HttpClient is throwing a TaskCanceledException on timeout in some circumstances. This is happening for us when the server is under heavy load. We were able to work around by increasing the default timeout. The following MSDN forum thread captures the essence of the experienced issue:
error code:
var c = new HttpClient();
try
{
c.Timeout = TimeSpan.FromMilliseconds(10);
var x = await c.GetAsync("http://linqpad.net");
}
catch(TaskCanceledException ex)
{
Console.WriteLine("should not see this type of exception!");
Console.WriteLine(ex.Message);
}
Surely this should be throwing a WebException? This behaviour makes it difficult to tell the difference between timeout exceptions & legit cancellations!
1.
Did you ever thik about doing what I did below?
var c = new HttpClient();
try
{
c.Timeout = TimeSpan.FromMilliseconds(10);
}
catch(TaskCanceledException ex)
{
Console.WriteLine("should not see this type of exception!");
Console.WriteLine(ex.Message);
}
try
{
var x = await c.GetAsync("http://linqpad.net");
}
catch(TaskCanceledException ex)
{
Console.WriteLine("should not see this type of exception!");
Console.WriteLine(ex.Message);
}
2.
Hmm. I'm not sure if you understand the problem (or I don't understand your answer!)
I've moved the code where I set the timeout. The TaskCanceledException is thrown from the call to GetAsync.
var c = new HttpClient();
c.Timeout = TimeSpan.FromMilliseconds(10);
try
{
var x = await c.GetAsync("http://linqpad.net");
}
catch(TaskCanceledException ex)
{
Console.WriteLine("should not see this type of exception!?");
Console.WriteLine(ex.Message);
}
I don't think this is a very good API. It shouldn't throw a TaskCanceledException unless the caller supplies a CancelationToken and calls Cancel! It should be a WebException.
3.
You code has four diffent Network layers where an error can occur
1) You first have to interface with a socket on the local computer.
2) A TCP connection has to complete from a socket with an IP address on your computer to an IP address on the server
3) On top of TCP and HTTP negotiation has to occur. You may need credentials (cookies, certifications, login) for this to complete.
4) Then the webpage has to run which sends data back to your computer.
Some of the above errors will actually return error strings, other errors may cause the application to hang causing a time out. Some errors will occur in less than 10msec. 10msec is one timer tick and the timer ticks on a computer don't run exactly at 10msec. If you are having an error that is occuring that quickly it is probably on yhour local host.
Try putting the URL into a webbrowser to see what errors you get with a webbrower. If the webbrowser works then you are mising an instruction in your code to use credentials. See this webpage
I'm not sure if you should be using the default credentials or using a specific proxy setting
4.
Hi Joel,
I'm sorry but I don't think you've understood the post. I know why the code throws an exception, it is because the HTTP request can't be serviced within the specified timeout period (if you increase the timeout the request is serviced). The post is about the type of exception that is being raised.
I'm suggesting that it shouldn't be a TaskCanceledException but a WebException!
Does that make sense?
5.
For me the point is that as good developers we check the msdn documentation for possible exceptions and catch only those. In this case we should actually be catching a WebException (http://msdn.microsoft.com/en-us/library/system.net.http.httpclient.timeout.aspx).
I guess what James is saying is that either the documentation is wrong or there is a bug. Unless, that is, theres some other documentation/rule/recommendation somewhere that recommends we warp all async calls in a try/catch(TaskCancelledException) and I doubt there is.
7.
Exactly! (Thanks Stelrad)
The caller should be provided with a detailed WebException.
*update* I've update the question replaced TimeoutException -> WebException
8.
Just to ram the point home... if you wanted to support cancellation and implement an interesting WebException handling routine (for example a retry policy), you might end up with the following abomination.
var c = new HttpClient();
c.Timeout = TimeSpan.FromMilliseconds(10);
var cts = new CancellationTokenSource();
try
{
var x = await c.GetAsync("http://linqpad.net", cts.Token);
}
catch(WebException ex)
{
// handle web exception
}
catch(TaskCanceledException ex)
{
if(ex.CancellationToken == cts.Token)
{
// a real cancellation, triggered by the caller
}
else
{
// a web request timeout (possibly other things!?)
}
}
I find it hard to believe that this is by design.
9.
Whether the right design or not, by design OperationCanceledExceptions are thrown for timeouts (and TaskCanceledException is an OperationCanceledException).
10.
Our team found this unintuitive, but it does seem to be working as designed. Unfortunately, when we hit this, we wasted a bit of time trying to find a source of cancelation. Having to handle this scenario differently from task cancelation is pretty ugly (we created custom handler to manage this). This also seems to be an overuse of cancelation as a concept.
Thanks again for thee quick response.
11.
This is a bad design IMO. There's no way to tell if the request was actually canceled (i.e. the cancellation token passed to SendAsync was canceled) or if the timeout was elapsed. In the latter case, it would make sense to retry, whereas in the former case it wouldn't. There's a TimeoutException that would be perfect for this case, why not use it?
12.
We have several options what to do when timeout happens:
- Throw
TimeoutExceptioninstead ofTaskCanceledException.- Pro: Easy to distinguish timeout from explicit cancellation action at runtime
- Con: Technical breaking change - new type of exception is thrown.
- Throw
TaskCanceledExceptionwith inner exception asTimeoutException- Pro: Possible to distinguish timeout from explicit cancellation action at runtime. Compatible exception type.
- Open question: Is it ok to throw away original
TaskCanceledExceptionstack and throw a new one, while preservingInnerException(asTimeoutException.InnerException)? Or should we preserve and just wrap the originalTaskCanceledException?- Either: new TaskCanceledException -> new TimeoutException -> original TaskCanceledException (with original InnerException which may be null)
- Or: new TaskCanceledException -> new TimeoutException -> original TaskCanceledException.InnerException (may be null)
- Throw
TaskCanceledExceptionwith message mentioning timeout as the reason- Pro: Possible to distinguish timeout from explicit cancellation action from the message / logs
- Con: Cannot be distinguished at runtime, it is "debug only".
- Open question: Same as in [2] - should we wrap or replace the original TaskCanceledException (and it stack)
I am leaning towards option [2], with discarding original stack of original TaskCanceledException.
@stephentoub @davidsh any thoughts?
BTW: The change should be fairly straightforward in HttpClient.SendAsync where we set up the timeout:
CancellationTokenSource cts;
bool disposeCts;
bool hasTimeout = _timeout != s_infiniteTimeout;
if (hasTimeout || cancellationToken.CanBeCanceled)
{
disposeCts = true;
cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, _pendingRequestsCts.Token);
if (hasTimeout)
{
cts.CancelAfter(_timeout);
}
}
else
{
disposeCts = false;
cts = _pendingRequestsCts;
} // Initiate the send.
Task<HttpResponseMessage> sendTask;
try
{
sendTask = base.SendAsync(request, cts.Token);
}
catch
{
HandleFinishSendAsyncCleanup(cts, disposeCts);
throw;
}
.NET Framework also throws TaskCanceledException when you set HttpClient.Timeout.
HttpClient throws TaskCanceledException on timeout的更多相关文章
- HttpClient Timeout waiting for connection from pool 问题解决方案
错误:org.apache.http.conn.ConnectionPoolTimeoutException: Timeout waiting for connection from pool 前言 ...
- HttpClient Timeout
1. Overview This tutorial will show how to configure a timeout with the Apache HttpClient 4. If you ...
- 1、揭秘通用平台的 HttpClient (译)
原文链接:Demystifying HttpClient APIs in the Universal Windows Platform 正打算翻译这篇文章时,发现园子里已经有朋友翻译过了,既然已经开始 ...
- HttpComponents组件探究 - HttpClient篇
在Java领域,谈到网络编程,可能大家脑海里第一反应就是MINA,NETTY,GRIZZLY等优秀的开源框架.没错,不过在深入探究这些框架之前,我们需要先从最original的技术探究开始(当然,需要 ...
- 基于HttpClient实现网络爬虫~以百度新闻为例
转载请注明出处:http://blog.csdn.net/xiaojimanman/article/details/40891791 基于HttpClient4.5实现网络爬虫请訪问这里:http:/ ...
- 转:轻松把玩HttpClient之封装HttpClient工具类(一)(现有网上分享中的最强大的工具类)
搜了一下网络上别人封装的HttpClient,大部分特别简单,有一些看起来比较高级,但是用起来都不怎么好用.调用关系不清楚,结构有点混乱.所以也就萌生了自己封装HttpClient工具类的想法.要做就 ...
- Atitit.http httpclient实践java c# .net php attilax总结
Atitit.http httpclient实践java c# .net php attilax总结 1. Navtree>> net .http1 2. Httpclient理论1 2. ...
- HttpClient, HttpClientHandler, and WebRequestHandler Explained
原文地址 https://blogs.msdn.microsoft.com/henrikn/2012/08/07/httpclient-httpclienthandler-and-webrequest ...
- HttpClient I/O exception (java.net.SocketException) caught when processing request: Connect
转自:http://luan.iteye.com/blog/1820054 I/O exception (java.net.SocketException) caught when processin ...
随机推荐
- VUE-010-通过声明式导航 router-link 传递 params 参数(路由 name 识别,请求链接不显示参数传递)
在前端页面表单列表修改时,经常需要在页面切换的时候,传递需要修改的表单内容,除了通过路由进行表单参数的传递,也可通过声明式导航 router-link 进行页面跳转和参数传递. 首先,配置页面跳转路由 ...
- mysql-5.7 通过apt或者yum安装方式
此文章仅记录使用apt-get安装mysql. 通过以下命令安装MySQL: shell> sudo apt-get install mysql-server 这将安装MySQL服务器的包,以及 ...
- 使用pushstate,指定回退地址
history.pushState(null,"testname", window.location.href); window.addEventListener('popstat ...
- 2019春第五周作业Compile Summarize
这个作业属于哪个课程 C语言程序设计II 这个作业要求在哪里 在这里 我在这个课程的目标是 能够精通关于数组内部运作原理 这个作业在哪个具体方面帮助我实现目标 如何输出一行的连续字符 参考文献与网址 ...
- zipkin链路追踪
zipkin架构说明 zipkin api 我想自己搞一些满足zipkin格式的日志,入库es,然后让zipkin仅做展示 1.需要了解zipkin组件 2,学习zipkin设计原理,何时何地产生日志 ...
- ceph的正常卸载与非正常卸载
一.ceph的正常卸载与非正常卸载 一.正常卸载(通过ceph-deploy卸载) 环境已安装ceph-deploy 1.查看ceph-deploy的帮助信息 [cephde@controller03 ...
- Promise (2) 原型上的方法
"I'm Captain Jack Sparrow" 加勒比海盗5上映,为了表示对杰克船长的喜爱,昨天闪现了几次模仿船长的走路姿势(哈哈哈,简直妖娆). 为了周天能去看电影,要赶紧 ...
- PHP字符串格式化特点和漏洞利用点
转载至: https://www.anquanke.com/post/id/170850 PHP中的格式化字符串函数 在PHP中存在多个字符串格式化函数,分别是printf().sprintf().v ...
- HDU 1556 BIT区间修改+单点查询(fread读入优化)
BIT区间修改+单点查询 [题目链接]BIT区间修改+单点查询 &题解: BIT区间修改+单点查询和求和的bit是一模一样的(包括add,sum) 只不过是你使用函数的方式不一样: 使用区间的 ...
- php----------linux下安装php的swoole扩展
1.首先你已经安装好了php环境,这里就不介绍php环境的安装了.如果你是编译安装记得将php加入环境变量,以便于方便查看扩展是否安装成功. 2.我安装的php环境缺少了要给东西,详细看下图 如果你没 ...