gpt4 book ai didi

c# - Azure WebJobs SDK TimerTrigger 函数未运行

转载 作者:行者123 更新时间:2023-12-03 08:15:16 25 4
gpt4 key购买 nike

我正在尝试创建一个每 x 秒运行一个函数的 Azure WebJob。我正在关注 Microsoft website 上的教程这个示例展示了如何将 TimerTrigger 与 Github 上的 WebJobs 一起使用。但是,当我在本地运行时,Functions.cs 中的方法似乎没有运行(没有日志记录并且没有命中断点)。

程序.cs:

public class Program
{
static async Task Main()
{
var builder = new HostBuilder();
builder.ConfigureWebJobs(b =>
{
b.AddAzureStorageCoreServices();
});
var host = builder.Build();
using (host)
{
await host.RunAsync();
}
}
}

函数.cs:

public class Functions
{

public static void TimerJob([TimerTrigger("00:00:03", RunOnStartup = true)] TimerInfo timer)
{
Console.WriteLine("Timer job fired!");
}
}

我在调试控制台中的唯一输出是:

Hosting environment: Production
Content root path: C:\Users\<blah>\<Project\bin\Debug\net472\

这是我的 nuget 软件包和版本:

enter image description here

我正在使用 .NET Framework 4.7.2

最佳答案

最后,我弄清楚了为什么我们的定时触发器没有在我们的网络作业中触发。安装以下 nuget 包后,我能够在我的 .net Framework 4.7.1 中使用您的 function.cs 代码使其正常工作.

因此,为了使带有计时器触发器的网络作业正常工作,我们需要使用带有以下软件包的 2.X 或 3.X 版本:

Microsoft.Azure.WebJobs.Extensions - 版本 3.0.6

Microsoft.Azure.WebJobs.Extensions.Storage -版本 3.0.1

Microsoft.Extensions.Logging - 版本 2.1.0

Microsoft.Extensions.Logging.Console - 版本 2.1.0

作为引用,检查我在我的环境中使用的所有软件包:

<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net472" />
<package id="Microsoft.Azure.WebJobs" version="3.0.14" targetFramework="net472" />
<package id="Microsoft.Azure.WebJobs.Core" version="3.0.14" targetFramework="net472" />
<package id="Microsoft.Azure.WebJobs.Extensions" version="3.0.6" targetFramework="net472" />
<package id="Microsoft.Azure.WebJobs.Extensions.Storage" version="3.0.1" targetFramework="net472" />
<package id="Microsoft.Azure.WebJobs.Host.Storage" version="3.0.14" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration.Abstractions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration.Binder" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration.EnvironmentVariables" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration.FileExtensions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Configuration.Json" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.DependencyInjection" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.FileProviders.Abstractions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.FileProviders.Physical" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.FileSystemGlobbing" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Hosting" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Hosting.Abstractions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Logging" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Logging.Abstractions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Logging.Configuration" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Logging.Console" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Options" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Options.ConfigurationExtensions" version="2.1.0" targetFramework="net472" />
<package id="Microsoft.Extensions.Primitives" version="2.1.0" targetFramework="net472" />
<package id="ncrontab.signed" version="3.3.0" targetFramework="net472" />
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net472" />
<package id="System.Buffers" version="4.4.0" targetFramework="net472" />
<package id="System.ComponentModel.Annotations" version="4.4.0" targetFramework="net472" />
<package id="System.Diagnostics.TraceSource" version="4.3.0" targetFramework="net472" />
<package id="System.Memory" version="4.5.0" targetFramework="net472" />
<package id="System.Numerics.Vectors" version="4.4.0" targetFramework="net472" />
<package id="System.Runtime.CompilerServices.Unsafe" version="4.5.0" targetFramework="net472" />
<package id="System.Threading.Tasks.Dataflow" version="4.8.0" targetFramework="net472" />
<package id="WindowsAzure.Storage" version="9.3.1" targetFramework="net472" />

这是我的 Program.cs,我在 b.AddAzureStorageCoreServices(); 之后添加了 AddTimers 扩展方法

using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Hosting;
namespace usetimertrigger

{
class Program
{
static void Main(string[] args)
{
var builder = new HostBuilder();
builder.ConfigureWebJobs(b =>
{
b.AddAzureStorageCoreServices();
b.AddTimers();
});
builder.ConfigureLogging((context, b) =>
{
b.AddConsole();

});
var host = builder.Build();
using (host)
{
host.Run();
}
}
}
}

function.cs

using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;
using System;

namespace usetimertrigger
{
public class Functions
{

public static void TimerJob([TimerTrigger("00:00:03", RunOnStartup = true)] TimerInfo timer)
{
Console.WriteLine("Ajay timer trigger fired!");
}
}
}

MS DOC 中所述,添加了从 Azure 门户>存储帐户>访问 key 复制的我的存储帐户访问 key

enter image description here

并且appsettings.json应该是复制到输出目录始终复制以配置我们的存储连接字符串,如下所示。

enter image description here

enter image description here

输出:-

添加b.AddTimers();之前

enter image description here

添加b.AddTimers();

enter image description here

引用:

所以线程:Scheduled .NET WebJob V3 example

关于c# - Azure WebJobs SDK TimerTrigger 函数未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69624239/

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