gpt4 book ai didi

c# - 我可以在没有 AzureWebJobsStorage 连接字符串的情况下执行 Azure webjobs 吗?

转载 作者:太空狗 更新时间:2023-10-29 22:18:40 25 4
gpt4 key购买 nike

当我创建新的 Azure webjob 项目时,我可以在 app.config 部分中看到连接字符串部分,如下所示:

<connectionStrings>
<!-- The format of the connection string is "DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" -->
<!-- For local execution, the value can be set either in this config file or through environment variables -->
<add name="AzureWebJobsDashboard" connectionString="" />
<add name="AzureWebJobsStorage" connectionString="" />
</connectionStrings>

在我的 webjob 函数中,我仅与我的应用程序数据库交互。

  1. So Do i really need to create two more databases for azure webjobs ?

当我从 Visual Studio 运行 webjobs 时,出现以下错误:

Application: WebJobTest.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.InvalidOperationException Stack: at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task) at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task) at Microsoft.Azure.WebJobs.JobHost.Call(System.Reflection.MethodInfo, System.Object) at WebJobTest.Program.Main()

当我尝试访问 webjobs 日志时,它显示:WebJob 详细信息 WebJobTest

Make sure that you are setting a connection string named AzureWebJobsDashboard in your Microsoft Azure Website configuration by using the following format DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY pointing to the Microsoft Azure Storage account where the Microsoft Azure WebJobs Runtime logs are stored.

我猜这是因为没有正确的数据库连接字符串。

  1. What could be the possible connection between above two errors ?

最佳答案

AzureWebJobsDashboard 连接字符串是可选的 - 仅当您希望能够使用仪表板 UI 进行日志等时才需要它。

需要 AzureWebJobsStorage 连接字符串 - 虽然您可能没有使用任何存储实体,但 WebJobs 运行时确实会使用一些 Blob 和其他存储实体来进行自己的跟踪和操作。

关于c# - 我可以在没有 AzureWebJobsStorage 连接字符串的情况下执行 Azure webjobs 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33874178/

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