Questions tagged [azure-webjobs-continuous]

69 questions
0
votes
1 answer

Unable to make a Continuous Azure Webjob a singleton

I have an Azure webjob that reads from a Service Bus Queue. My goal is to process 1 message from a Queue, synchronously, per instance. Is that possible? What I have observed is that if there are 100 messages in the queue, I see 10~20 instances of…
Sun
  • 559
  • 2
  • 9
  • 30
0
votes
0 answers

Error in Azure WebJobs- continuous

What does the below error shown in Azure web job log file mean? " : SYS ERR ] Job failed due to exit code - 1073741818 " What is the cause for this error?
Sakthi Geek
  • 391
  • 4
  • 10
0
votes
1 answer

Continuously running Azure WebJob with high CPU load aborts/restarts unexpected on "Startup Request"

A timer triggered Azure Webjob running at "B2 Basic" pricing tier is aborted unexpectedly. [01/09/2018 17:16:03 > 183d71: SYS INFO] Status changed to Running [01/09/2018 17:16:04 > 183d71: INFO] *** WebJob Main: start *** [01/09/2018…
freilebt
  • 29
  • 3
0
votes
1 answer

parallel processing of receiving EventHubTrigger messages of type EventData[] in continuous webjob

I am facing problems at the time of receiving event data in continuous web-job. I am sending messages using batch async method of device client. At web-job, I am receiving those batches one after another. when first first batch comes, till the time…
0
votes
1 answer

Azure WebJobs getting initialized randomly

We have webjobs consisting of several methods in a single Functions.cs file. They have servicebus triggers on topic/queues. Hence, keep listening to topic/queue for brokeredMessage. As soon as the message arrives, we have a processing logic that…
0
votes
1 answer

How to configure Ninject in call scope binding within Azure Web Job?

I am facing a problem when try to write a web job scheduler. I am using Ninject scope binding using EF Repository pattern. But Only InSingletonScope() work as expected. How to configure it in RequestScope Or Call Scope ? //Register Context …
0
votes
1 answer

Azure WebJob Queues are not triggering WebJobs

Azure WebJob Queues are not triggering WebJobs If I pass message in binary format to Queues? I have Pushed GOOGLE PROTOBUF Bytes as CloudMessage into the Azure Queue Storage. But, Azure Queue storage is not pinging and Passing that CloudMessage to…
-1
votes
1 answer

Do webjobs get redistributed on adding new VMs due to autoscaling?

There are 5 webjobs running on 2 VMs. 3rd VM is added after sometime because of auto scaling. Are the webjobs redistributed across VMs? If webjobs are not redistributed what is the point of adding another VM if it will remain idle?
-1
votes
1 answer

Serilog: azure webjob logging doesn't seem to work when hosted in azure?

I have azure webjob sdk (v3.0.3) app which has been configured to use serilog for logging. The log seems to work when I run the app locally in my system. Below is the configuration: static void Main(string[] args) { try …
1 2 3 4
5