作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
谁能向我解释为什么我的服务器无缘无故停止?在我的 IHostedService 实现下面:
public class HostServiceBox : IHostedService
{
public Task StartAsync(CancellationToken cancellationToken)
{
return Task.Run(() =>
{
DomonutyBoxBusiness.StartBoxListening(); //STARTUP Box listening
while (true)
{
Logging.Info(DateTime.Now + " HostServiceBox Running");
Thread.Sleep(10000);
}
}, cancellationToken);
}
public Task StopAsync(CancellationToken cancellationToken)
{
Logging.Info(DateTime.Now + " StopAsync");
//TODO impplement a Stop litening all boxes
throw new NotImplementedException();
}
}
这是我的日志?
.....
2/24/2018 8:31:27 PM HostServiceBox Running
2/24/2018 8:32:27 PM HostServiceBox Running
2/24/2018 8:33:27 PM HostServiceBox Running
2/24/2018 8:34:27 PM HostServiceBox Running <------
2/25/2018 11:22:07 AM HostServiceBox Running <-----
2/25/2018 11:23:07 AM HostServiceBox Running
2/25/2018 11:24:07 AM HostServiceBox Running
2/25/2018 11:25:07 AM HostServiceBox Running
......
我的方法是否在带有 kestrel (.Net Core) 的 IIS 上运行?为什么?
通常我的 while(true) 重启是因为我调用了 API。但是 IHostedService 是一个后台任务,它不应该停止吗?
github 上的相关帖子
最佳答案
用户tym32167 走在了正确的轨道上。在 deployment 部分的 IHostedService
文档中提到了这一点:
on IIS or a regular Azure App Service, your host can be shut down because of app pool recycles
IIS 应用程序池的默认空闲超时为 20 分钟,它们的默认应用程序池回收时间为 29 小时。通常,您希望将空闲超时设置为零(禁用),并将回收设置为危害最小的固定时间。
关于他们为什么选择 29 小时的博客文章很有趣 here它还涵盖空闲超时。
此外,如果您碰巧要部署到 Azure,前面链接的那篇文章建议了其他真正全时运行的部署方式(容器、WebJobs 等)。
关于c# - IHostedService 无故停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49006658/
我有一个小型 Java 11 示例,其中包含 JUnit 5 测试,结果如下: changed conditional boundary → SURVIVED 主类: public final cla
我是一名优秀的程序员,十分优秀!