Hangfire后台工作神秘地停止运行

时间:2017-05-17 13:59:49

标签: c# asp.net-web-api background-process jobs hangfire

我对Hangfire 1.4.3.0(WebAPI,SQL服务器存储)有一个奇怪的问题 - 在工作开始后30分钟后,hangfire重新启动它并分配一个新工作人员。跟踪级别的默认hangfire日志记录不会显示任何有用的内容。在我的Web应用程序日志中,我只能看到该作业已启动,并且hangfire数据库中的状态表显示已分配新工作人员:

Id  JobId   Name    Reason  CreatedAt   Data
27  8   Processing  NULL    2017-05-17 10:34:51.640 {"StartedAt":"2017-05-17T10:34:51.6389278Z","ServerId":"mypc:3332","WorkerNumber":"22"}
28  8   Processing  NULL    2017-05-17 11:04:51.683 {"StartedAt":"2017-05-17T11:04:51.6819303Z","ServerId":"mypc:3332","WorkerNumber":"14"}

但前任工人发生了什么事?我怎么能找出它停止的原因?

2 个答案:

答案 0 :(得分:3)

显然这是已知错误:https://github.com/HangfireIO/Hangfire/issues/514

Hangfire目前的版本为1.6.12 - 您是否尝试过更新到最新版本并检查是否仍然出现此问题?

答案 1 :(得分:2)

在Google搜索了同样的问题后,我从下面的链接中找到了解决方案,其中提到了一些配置部分,这对于连续运行工作非常重要。

http://docs.hangfire.io/en/latest/deployment-to-production/making-aspnet-app-always-running.html

-----以下是您必须在全局applicationHost.config文件(%WINDIR%\ System32 \ inetsrv \ config \ applicationHost.config)中执行的配置。

<applicationPools>
    <add name="MyAppWorkerProcess" managedRuntimeVersion="v4.0" startMode="AlwaysRunning" />
</applicationPools>

<!-- ... -->

<sites>
    <site name="MySite" id="1">
        <application path="/" serviceAutoStartEnabled="true"
                              serviceAutoStartProvider="ApplicationPreload" />
    </site>
</sites>

<!-- Just AFTER closing the `sites` element AND AFTER `webLimits` tag -->
<serviceAutoStartProviders>
    <add name="ApplicationPreload" type="WebApplication1.ApplicationPreload, WebApplication1" />
</serviceAutoStartProviders>