Questions tagged [azure-webjobs-continuous]
69 questions
0
votes
1 answer
Azure Web Jobs unable to read configuration of Azure App Service
I am currently deploying a C# console app as a Continuous Azure Web Job to an Azure App Service and I am using the Azure Web Jobs SDK 3.X(https://learn.microsoft.com/en-us/azure/app-service/webjobs-sdk-how-to).
The Web Job successfully deploys to…

tsofronis
- 1
- 1
0
votes
1 answer
Azure App Service scaling out specific webjobs possible?
Is it possible to have multiple scale out conditions that scale out only specific webjobs.
For example:
1st scale out condition has triggered scaling out for webjob #1(scaling to 2 instances), but other webjobs will still be on one instance.
But now…

elitra
- 43
- 1
- 4
0
votes
1 answer
Send alert on failure of webjobs in azure portal
There is one requirement to send an email upon unsuccessful web-jobs only. There are 16 web-jobs which are deployed and running successfully on azure portal. I have suggested to modify the code for existing web-job but client does not want to modify…

You Me
- 11
- 2
0
votes
1 answer
Make Azure Webjob Timer Trigger Not Run as a Singleton
I have a set of worker functions that are spun up as needed to pull from Service Bus Topic subscriptions when they are created. New workers are created when a new Subscription is created by way of a provisioning message that is queued triggering a…

Zach Johnson
- 682
- 7
- 14
0
votes
1 answer
Deploy Multiple Azure WebJobs to a Single Azure AppService in YAML Pipeline
I'm trying to have a deployment pipeline that deploys 3 Azure WebJobs (continous) that are all part of the same solution at once. I can do this in Visual Studio by right click deploy and ensure I'm not clearing existing files.
In Azure Pipelines I…

aherrick
- 19,799
- 33
- 112
- 188
0
votes
2 answers
convert from triggered to continuous?
I have a web job that is triggered. I want to switch to continuous. I use ci/cd to deploy.
Is this the right steps :
csproj. change triggered to continuous
settings.job just say {}
Also, I will change the c# host to use a loop with a…

petercli
- 185
- 2
- 12
0
votes
1 answer
Webapp Webjob logs not appearning in storage container
I have a webapp for which I have configured the App setting under configuration "AzureWebJobsDashboard" and "Azurewebjobstorage" which has the value for storage account and its access key.
As described in this article :…

Vaishnav
- 611
- 1
- 9
- 23
0
votes
1 answer
Multiple web jobs on same App Service or single Web Job on multiple app services?
I need to deploy multiple web jobs for my current project. However, none of them will be too resource intensive, so I will be using the same App service plan. I am trying to decide between
Create separate App Services per Web Job and deploy them…

Snooks
- 91
- 1
- 11
0
votes
1 answer
How to configure automatic failover of storage account when using AzureWebJobsStorage for Web Job Timer Triggers
I have an Azure Web Job that runs on a TimerTrigger to put some messages on a Service Bus queue. I have deployed this Web Job on 2 separate regions, for high availability in case one region goes down. As per…

Snooks
- 91
- 1
- 11
0
votes
1 answer
NET 5.0 WebJob only wants to write to my local Blob storage
We're halfway through 2021 and all the WebJob answers I'm finding are pretty old.. maybe there's a new wrinkle I'm missing
This picture from my Microsoft Azure Storage Explorer says it all:
On my machnine, I use this appsettings.Development.json…

bkwdesign
- 1,953
- 2
- 28
- 50
0
votes
0 answers
How do I run an Azure WebJobs locally with network failure resilient?
I have a small website depends on Azure WebJobs for some background tasks.
Due to my basic plan, WebJobs just stops working within 1-2 hours after deployment to Azure, because I need to upgrade my plan.
Meanwhile I run the task on my local machine,…

Teoman shipahi
- 47,454
- 15
- 134
- 158
0
votes
1 answer
Using ARM template to deploy WebJob
I am currently attempting to deploy a webjob as part of my app service through an ARM template. Does anyone have a sample of doing this through a zip deploy?
I have seen here and the linked question there about creating an arm template for a…

rhetoric3
- 21
- 4
0
votes
1 answer
Azure Webjob for monitoring service(API)
I needed some feedback on how to configure Azure Webjob for below requirement.
Need to have only one Web job. In that Webjob, need to have one function for each service(API) for multiple Geo's(Ex: WestUS and Central US).
WebJob should run for every…

tartar
- 140
- 8
0
votes
1 answer
Azure WebJob executes the function more often than it should
I created a continous WebJob which is supposed to execute my public function every 5 minutes.
It has been working fine for some days but recently noticed it's being called twice in a shorter period of time. In development AppService I can see it…

Gonzo345
- 1,133
- 3
- 20
- 42
0
votes
1 answer
Azure WebJobs 3.x does not trigger with CRON expression in Azure Application Settings
Environment: .Net Framework 4.7.2
Application settings being read from: app.config, no applicationsettings.json in the project
Issue: Environment variable doesn't override the CRON expression in project.exe.config (one in Kudu) and trigger. All…

user3627341
- 3
- 1