Questions tagged [azure-webjobs-continuous]

69 questions
1
vote
2 answers

Microsoft.WindowsAzure.Storage.StorageException: 'The remote server returned an error: (400) Bad Request

I have created a new project in VS 2017 using Azure Webjobs ( .NET Framework ) template. After that I have included valid values for AzureWebJobsDashboard and AzureWebJobsStorage in App.config file. After running the sample I am getting below error…
1
vote
1 answer

azure webjob- timerTrigger: Get current execution context?

I have written a azure webjob which has timerTrigger. The static method gets called every minute and it has to make http POST request. I want to access the appSettings.json file within the timerTrigger static method. How can I access it? I see…
1
vote
2 answers

Call Azure API from WebJob/ Shared code between WebJob and web api

I have a web api in an ASE and an associated web job. I am trying to call this web api from the web job but it always fails with winhttpexception: a security error has occurred. I have put in all the tls related settings but still getting the error.…
1
vote
1 answer

Azure Portal web jobs performance time

I understand that my question is not really specific and that it has no clear answer, but I need help to figure out where to start looking. So we work on portal azure and have a web job that takes messages from a queue, and processes them; for some…
1
vote
2 answers

Why Azure Queue messages live for less than a few seconds?

On Azure (or from VS) the dialog for creating new messages inside a queue says the message expires in 7 days, yet it is gone in less than a few seconds. Why? (I created a continuous running WebJob as described in this article)
1
vote
1 answer

Can I query the Azure web job queue?

I have two Azure Web Jobs running within my Azure web app: Job A - running continuously Job B - triggered Job A's purpose is to trigger Job B based on two things: Job B has not been run in the past hour for a specified account number (passed…
1
vote
1 answer

Web Job: Library not found

We have a continuous WebJob that is written in .NET Core 2.x and has been running fine for the past few weeks. Recently someone made some changes to this WebJob and brought in a 3rd party NuGet package. Now, I am unable to start the WebJob because…
Jason H
  • 4,996
  • 6
  • 27
  • 49
1
vote
1 answer

Azure - can't solve Reached maximum allowed output lines

I have a web continuous job and see in log: Reached maximum allowed output lines for this run, to see all of the job's logs you can enable website application diagnostics I have googled, found how to solve it, for example: Azure how to enable…
1
vote
0 answers

Azure WebJobs Madness - ServiceBusTrigger not firing

A strange this is happening in one of my WebJobs and I cannot find what's wrong. This WebJob is configured to use ServiceBusTrigger as soon as a message is received on a particular Service Bus Queue. This function has an execution time of minutes /…
1
vote
0 answers

What approach should be implemented for IOT Hub to Web App communication?

I am new to Azure managed services. I am not sure about the below mentioned approach is the best approach for the IOT HUB to WEB APP communication. In IOT Hub, we have created some devices. So, Those devices will send the payload in bytes format to…
0
votes
1 answer

How do I automate creation of missing ServiceBus topics and queues in a .NET 7 WebJobs project?

I'm migrating a WebJobs project from .NET 4.6 to .NET 7 and I came across a quite significant problem - my new project does not seem to create missing topics and queues in the ServiceBus namespace. I can't find a way to force it to do so either. I…
0
votes
1 answer

Ninject + Ninject Child Kernels + Continuous Azure WebJobs

I have an Azure WebJob containing few different functions. These functions need to be injected with some services by Ninject (using constructor injection). Since the standard JobActivator - the class which is responsible to instantiate jobs' classes…
0
votes
1 answer

Deploying Azure App Service Webjob Using .Net 6 Fails to Start "Failed to bind to address http://127.0.0.1:5000: address already in use"

I ran into an issue while migrating an Azure app service from .Net Core 5 to 6 while also updating the stack configuration in Azure Portal to use .Net version ".Net 6 (LTS)". The app service only contains continuous webjobs that process service bus…
0
votes
1 answer

How are the webjobs distributed across VMs in Azure App service?

There are 10 VMs in Isolated tier and there are 10 deployment slots. I've 10 continuous webjobs one per each slot running in singleton mode. Can I expect webjobs to be distributed across VMs in 1:1 ratio i.e, 1 webjob per VM? Or is the distribution…
0
votes
0 answers

Azure WebJob Queues based on project environments

I have single azure storage account for webjob to manage web job queues but I have multiple environments. So when working with dev or dev-feature all queues are created in single storage account they are picked by dev or dev-feature env any of them.…