gpt4 book ai didi

c# - HttpClient.PostAsync ThreadPool 中没有足够的空闲线程来完成操作

转载 作者:可可西里 更新时间:2023-11-01 17:35:46 25 4
gpt4 key购买 nike

我每秒调用一次下面的代码来轮询摄像头,但运行一两天后,它就停止工作了。

public List<CameraEvent> GetEventsSince(CaptureTime afterDateTime)
{
string uri = string.Format(
"http://{0}/ISAPI/channels/1/events/detect", _ipAddress);
using (var client = new HttpClient())
{
client.Timeout = TimeSpan.FromSeconds(5);
AddBasicAuth(client);

try
{
HttpResponseMessage response =
client.PostAsync(
uri, new StringContent(GetPicTimeXml(afterDateTime))).Result;

logger.Debug(
string.Format("Status code response={0}", response.StatusCode));

if (response.StatusCode == HttpStatusCode.Unauthorized ||
response.StatusCode == HttpStatusCode.Forbidden)
{
// 401
currentState = 2;
return new List<CameraEvent>();
}

if (response.StatusCode == HttpStatusCode.OK)
{
// OK
currentState = 0;
}
List<CameraEvent> events = new CameraHttpResponseHandler()
.HandleHttpResponse(response);
AppendPlateImages(events);
return events;
}
catch (AggregateException ex)
{
//if (ex.InnerException is TaskCanceledException)
//{
// // Timeout
// currentState = 1;
//}
logger.Error("AggregateException", ex);
}
catch (Exception ex)
{
logger.Error("Generic exception", ex);
}

return new List<CameraEvent>();
}
}

我得到的错误是:

2015-08-17 07:59:57,310 [16] ERROR CameraHttpClient AggregateException System.AggregateException: One or more errors occurred. ---> System.InvalidOperationException: There were not enough free threads in the ThreadPool to complete the operation.

调用 GetEventsSince 的父线程是一个 background worker 线程,如果这有任何区别的话,它会在一个循环中运行。

有没有人见过这个问题或对可能导致线程用完的原因有任何建议?

最佳答案

很难确定,但如果线程池饥饿的根本原因是这种方法,那么它就是为什么异步代码对服务器有益的一个很好的例子。

HttpClient 是一个异步 API,这意味着如果您正确 await调用,您释放一个线程并将其发送回线程池,直到调用返回。调用.Result ,您将在整个调用期间阻塞线程。假设此方法从开始到结束需要几秒钟,并且 99.9% 的时间都在等待 I/O(不是不合理的猜测)。事实上,您 100% 的时间都在使用一个线程。如果将其重构为异步运行,您的线程消耗会下降到 0.1% 的时间,并且线程池平均突然变得更满。

所以我首先要标记方法 async (使用 Task<List<CameraEvent>> 作为返回类型)并使用 await而不是 .Result使用异步 API 的地方。我不知道是什么CameraHttpResponseHandler.HandleHttpResponse确实如此,但我猜那里也有 I/O 阻塞,它也应该被转换并使用 await 调用.

这对根应用程序调用此方法的方式有影响。我需要查看该代码以建议最佳方法。 TPL Dataflow可能很适合这里 - 它不仅有助于定期调用异步方法,而且还支持限制并发性,作为防止此类问题的一种保护措施。

关于c# - HttpClient.PostAsync ThreadPool 中没有足够的空闲线程来完成操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32046657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com