Questions tagged [azure-webjobs-continuous]

69 questions
0
votes
1 answer

WebJobs SDK 3 Braking on Function Exception

I have an Azure WebJob (.NET Core - SDK 3) that is braking when an execution of queue triggered function fails. I would like this WebJob to behave like others WebJobs (SDK 2 - .NET Framework) I have running on Windows WebApps. When execution of…
0
votes
2 answers

How do I set an Azure WebJob to run every N number of hours

I have an Azure webjob that was created as a console application and published to azure via Visual studio. When I login to the portal, I can see the web-job is running, but I want it to run every 1 hour. How can I do this? Schedule seems to say n/a…
0
votes
1 answer

my continous webjob published to multiple app services will only run for one of the app services a day instead running per cron schedule

I have a c# webjob that has two functions. One is a blobtrigger, the other is TimerTrigger("0 */2 * * * *"). I published the webjob (via visual studio) to each of the appservices (all in the same resource group using the same blobstorage.) I…
0
votes
1 answer

Triggered Azure Web Job goes into Aborted State

I have 2 Azure web jobs. One is triggered and other one is Continuous. Whenever there is some change in server configuration or app configuration of the web job, Triggered web job goes into aborted state. It goes because because of the change,…
0
votes
1 answer

Email sending with SendGrid using WebJobs

I'm trying to integrate SendGrid to a .Net 4.5 application using WebJobs. I made the basic configurations required to send a basic email. I'm trying to run and test it in my local machine. I can't figure out how to push messages to the queue. I…
0
votes
1 answer

How do I get Azure Kudu/Bitbucket deploy to deploy a .NET Core console app as a webjob?

Having read the advice here: https://learn.microsoft.com/en-gb/azure/app-service/webjobs-dotnet-deploy-vs#deploy-to-azure-app-service I don't feel significantly further towards a solution for deploying a .net core console app as a webjob via…
Caius Jard
  • 72,509
  • 5
  • 49
  • 80
0
votes
1 answer

QueueTrigger : Mesage with encoding error doesnt push message to poison queue

I have webjob queue trigger which is responding to queue message and it works fine. However sometimes we push messages manually in queue and if there is manual mistake which causes DecoderFallBackException. But the strange behavior is that looks…
0
votes
1 answer

Calling a function in Azure Continuous Webjob every n minutes

I have a function that is in a continuous Azure WebJob and that function is required to be called once every 15 minutes. Code in Program.cs static void Main() { var config = new JobHostConfiguration(); if…
AJIN
  • 65
  • 1
  • 1
  • 10
0
votes
1 answer

Azure running triggered webjob won't update after continuous deployment

I have a .NET triggered webjob running in a .NET Azure website. I have continuous deployment set up using Azure DevOps. Is there a way to update a running triggered webjob to the latest version automatically, i.e. when I push a commit? The website…
0
votes
1 answer

How to get config values inside the triggered method in azure webjob 3.x sdk

I have a continuously running webjob that uses queue trigger. I need some data that is configured in the app.config file and i use public static void ProcessQueueMessage([QueueTrigger("%queueName%")] Model modelMessage, int dequeueCount,…
Anurag
  • 78
  • 9
0
votes
1 answer

WebJob occasionally throwing System.Threading.Tasks.TaskCanceledException

I have a continuous WebJob which executes a function which is queue triggered and it occasionally throws System.Threading.Tasks.TaskCanceledException. WebJobs SDK version : 2.1.0 StackTrace: Microsoft.Azure.WebJobs.Host.FunctionInvocationException:…
0
votes
1 answer

How do I deploy continuous azure webjob using Octopus deploy

I am trying to get an Azure App Service to recognize my Web Job - meaning to show it in the portal under "Web Jobs" in the App Service. And to also run it on the schedule defined with a TimerTrigger attribute. It is a .NET Core 2.2 Console…
Dan Bock
  • 1
  • 1
0
votes
1 answer

Azure WebJob Throwing HttpRequestException

I'm hosting an application on Azure as a continuous WebJob. The program frequently (around once per second) makes calls to a CosmosDB database by creating a DocumentClient instance (I make use of the DocumentClient function CreateDocumentQuery and a…
0
votes
1 answer

Azure webjobs: send notification emails at scheduled time?

I needed some feedback on how to use azure webjobs for this requirement. I have a requirement where we need to send notification emails at scheduled time. The frequency of the notification are stored in database tables. example of table…
0
votes
1 answer

Azure WebJob sudden shutdown while processing

I have a continuous Azure WebJob, that is set to 'Always On'. This WebJob is supposed to handle new messages being added to a storage queue. I'm wondering what if for some reason the WebJob has stopped working while it was processing a queue…