question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

V5.x release to support cleanly TimerTrigger with Azure Storage V12

See original GitHub issue

We have been upgrading our WebJobs to use Microsoft.Azure.WebJobs.Extensions.Storage 5.x successfully except for the ones that are using TimerTrigger.

TimerTrigger is only available in Microsoft.Azure.WebJobs.Extensions 4.0.1, which depends on Microsoft.Azure.WebJobs.Host.Storage using Azure Storage 11.x

TimerTrigger is also available in the Microsoft.Azure.WebJobs.Extensions 5.x beta.

Is there any plan to move out of beta for 5.x? If not any time soon, is that beta production ready/safe?

Expected behavior

  • No more reference to Microsoft.Azure.WebJobs.Extensions 4.0.1 referencing old Azure Storage SDK
  • Cleaner Startup code
builder.ConfigureWebJobs((context, b) =>
              {
                  b.AddAzureStorageQueues();
                  b.AddAzureStorageBlobs();
                  b.AddExecutionContextBinding();
                  b.AddTimersWithStorage();
              })

Actual behavior

  • Requires reference to to Microsoft.Azure.WebJobs.Extensions 4.0.1 referencing old Azure Storage SDK causing some confusion
  • Cluttered startup code
builder.ConfigureWebJobs((context, b) =>
              {
                  b.AddAzureStorageCoreServices();
                  b.AddAzureStorageQueues();
                  b.AddAzureStorageBlobs();
                  b.AddExecutionContextBinding();
                  b.AddTimers();
              })

Related information

#745 Adding storagev12 ScheduleMonitor implementation cc @karshinlin

Issue Analytics

  • State:open
  • Created a year ago
  • Comments:7 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
mattchendersoncommented, Jan 31, 2023

I don’t have an exact ETA for this at the moment, but that’s something I’ve been trying to get a bit more clarity on. It hopefully shouldn’t be too far out.

1reaction
bhagyshricompanycommented, Jan 18, 2023

@superjulius will update you soon

Read more comments on GitHub >

github_iconTop Results From Across the Web

Issues · Azure/azure-webjobs-sdk-extensions
Contribute to Azure/azure-webjobs-sdk-extensions development by creating an account ... V5.x release to support cleanly TimerTrigger with Azure Storage V12 ...
Read more >
Timer trigger for Azure Functions
A CRON expression or a TimeSpan value. A TimeSpan can be used only for a function app that runs on an App Service...
Read more >
Azure Function timer trigger not firing - appsloveworld.com
More Query from same tag · Control on trigger blob App Function Azure · Does Serverless Framework support any kind of multi-cloud load...
Read more >
Azure Blob storage trigger for Azure Functions
Isolated worker process is required to support C# functions running on LTS and non-LTS versions .NET and the .NET Framework.
Read more >
How to trigger both Azure Function by Service Bus message ...
I don't work with Java but you can combine the Trigger and the Output in one function. @FunctionName("sbtopicprocessor") public void run( ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found