0

我创建了一个连续的 WebJob,它应该每 5 分钟执行一次我的公共函数。

它已经工作了好几天,但最近注意到它在较短的时间内被调用了两次。在开发 AppService 中,我可以看到它在 1 分 20 秒后第一次被调用,两次被调用。在生产中,差异甚至更短(20 秒)。

程序.cs:

public static void Main()
{
    var config = new JobHostConfiguration();

    if (config.IsDevelopment)
    {
        config.UseDevelopmentSettings();
    }
    config.UseTimers();

    var host = new JobHost(config);
    // The following code ensures that the WebJob will be running continuously
    host.RunAndBlock();
}

函数.cs:

public static async Task ProcessDocumentsRoundAboutAsync([TimerTrigger("00:05:00", RunOnStartup = false, UseMonitor = true)] TimerInfo timer)
{
    var handler = new ProcessCandidatesHandler();
    await handler.ExecuteAsync();
}

WebJob 输出详细信息表明它应该每 5 分钟调用一次:

[09/09/2020 07:16:54 > fc5cb9: INFO] 执行“Functions.ProcessDocumentsRou​​ndAboutAsync”(原因='计时器在 2020-09-09T 09:16:54 .5243173+02:00' 触发,ID=9c64dfc4 -e7b3-4857-a9bc-df40cc7d58c9)

[09/09/2020 07:16:56 > fc5cb9: INFO] 执行“Functions.ProcessDocumentsRou​​ndAboutAsync”(成功,Id=9c64dfc4-e7b3-4857-a9bc-df40cc7d58c9)

[09/09/2020 07:22:06 > fc5cb9: INFO] 执行“Functions.ProcessDocumentsRou​​ndAboutAsync”(原因='计时器在 2020-09-09T09:21:54.5364353+02:00' 触发,ID=e06eb211-2a6c- 49a0-a9ce-1aee003dc545)

[09/09/2020 07:22:07 > fc5cb9: INFO] 执行“Functions.ProcessDocumentsRou​​ndAboutAsync”(成功,Id=e06eb211-2a6c-49a0-a9ce-1aee003dc545)

函数调用日志:

Functions.ProcessDocumentsRou​​ndAboutAsync (09/09/2020 09:21:5 ...) Functions.ProcessDocumentsRou​​ndAboutAsync (09/09/2020 09:20:3 ...) Functions.ProcessDocumentsRou​​ndAboutAsync (09/09/2020 09:16:5 ) ...)

我找到了这个解决方案,但它不符合我的需求,因为我想连续运行它(允许我调试它,它不需要“热身”)当然我想知道这个的真正原因应该正在发生。

我不明白为什么直到现在它一直运行良好,以及为什么会发生这种情况。有任何想法吗?谢谢。

4

1 回答 1

0

当您将 Web 作业配置为连续运行时,它会毫无延迟地连续运行。要每五分钟运行一次,请配置触发的计划作业。

在此处输入图像描述

于 2020-09-09T07:53:12.090 回答