编程语言
首页 > 编程语言> > c#-为什么TimerTrigger在基本的WebJobs SDK v3主机应用程序中不要求存储帐户?

c#-为什么TimerTrigger在基本的WebJobs SDK v3主机应用程序中不要求存储帐户?

作者:互联网

我正在使用WebJobs SDK v3.0.5,使用一个非常简单的.NET Core 2.2控制台项目,如下所示:

TimerHost.csproj

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp2.2</TargetFramework>
    <LangVersion>7.1</LangVersion>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.5" />
    <PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.2" />
    <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
  </ItemGroup>

  <ItemGroup>
    <None Update="appsettings.json">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
</Project>

Program.cs

using System.Threading.Tasks;
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;

namespace TimerHost
{
    public class Program
    {
        public static async Task Main()
        {
            var builder = new HostBuilder();
            var host = builder
                .UseEnvironment("Development")
                .ConfigureServices((context, services) =>
                {
                    services.AddSingleton(context.Configuration);
                })
                .ConfigureWebJobs(webJobsBuilder =>
                {
                    webJobsBuilder
                        .AddAzureStorageCoreServices()
                        .AddTimers();
                })
                .ConfigureLogging((context, b) =>
                {
                    b.SetMinimumLevel(LogLevel.Debug);
                    b.AddConsole();
                })
                .UseConsoleLifetime()
                .Build();

            await host.RunAsync();
        }
    }

    public static class Function
    {
        public static void Run([TimerTrigger("*/10 * * * * *")] TimerInfo timer, ILogger logger)
        {
            logger.LogInformation($"Running job for timer. Next 3 runs are: {timer.FormatNextOccurrences(3)}");
        }
    }
}

appsettings.json

{
}

触发器运行正常.但是,根据最新文档(https://docs.microsoft.com/en-us/azure/app-service/webjobs-sdk-how-to#multiple-instances),计时器应作为单例隐式运行,这意味着它应使用Azure存储帐户提供分布式锁定支持.

在本地使用Azure Functions时,我希望提供这样的设置:

{
  "AzureWebJobsStorage": "UseDevelopmentStorage=true"
}

否则,我实际上不能运行函数,我会收到一条错误消息,指出此设置是必需的,但是在控制台主机示例中,我根本没有任何错误.

有人可以解释为什么控制台主机不需要使用默认存储帐户吗?在这种情况下计时器如何保持单例行为?

解决方法:

我花了一些时间从我的应用程序调试WebJobs SDK源代码,并找到了有关幕后情况的更多信息:

>如果未在配置中定义AzureWebJobsStorage应用设置,则SDK会退回到使用内存中分布式锁定管理器来设置计时器和单例触发器.没有与该回退相关的日志记录,并且默认的锁管理器仅适用于本地开发.
>可以通过设置连接字符串来代替使用Azure存储仿真器,就像使用Azure Functions一样,只需确保已重新构建项目,以便将appsettings.json文件传播到项目输出文件夹,这使我不寒而栗就一点点.
>如果AzureWebJobsStorage的值不是有效的本地或基于云的存储帐户连接字符串,则不会发出错误或日志条目-配置将仅以静默方式退回到内存锁管理器中.

标签:azure-webjobssdk,azure,azure-webjobs,c
来源: https://codeday.me/bug/20191211/2105844.html