Questions tagged [azure-webjobssdk]

Azure WebJobs SDK is a framework that simplifies the task of adding background processing to Windows Azure Web Sites.

The Azure WebJobs SDK is a framework that simplifies the task of writing background processing code that runs in Azure. The Azure WebJobs SDK includes a declarative binding and trigger system that works with Azure Storage Blobs, Queues and Tables as well as Service Bus. The binding system makes it incredibly easy to write code that reads or writes Azure Storage objects. The trigger system automatically invokes a function in your code whenever any new data is received in a queue or blob. See the azure-webjobs-sdk repo for more information.

480 questions
3
votes
1 answer

IS Azure Webjobs have its own memory allocation?

I am new to Azure web-jobs. When I am working with web-jobs I have come up with an question that whether web-job have its own memory allocation like process? we are creating web-jobs under website(web app) so for website a separate memory will get…
Skull
  • 1,204
  • 16
  • 28
3
votes
3 answers

Can we write Azure Webjobs with Queue Triggered with JAVA

Can we write Azure Webjobs with Queue Triggered jobs on Java, tried to search a lot and found only .Net related code example (https://azure.microsoft.com/en-in/documentation/articles/websites-dotnet-webjobs-sdk-storage-queues-how-to/) If yes can any…
Mahesh Pujari
  • 493
  • 1
  • 9
  • 15
3
votes
1 answer

Azure web job multiple connection strings

Azure WebJob obtains connection string from web application (which runs the job) configuration parameter - AzureWebJobsStorage. I need to monitor two queues in different storages using one WebJob. Is it possible somehow to have multiple connection…
minuzZ
  • 33
  • 6
3
votes
1 answer

Azure Function - Resize image stored in a blob container

I've answered this question related to Azure Webjob and Resizing a image stored as a blob and so I am trying to do the same using a Function App Each time a new blob is uploaded, I send a a new queue message. My function is triggered by the queue…
Thomas
  • 24,234
  • 6
  • 81
  • 125
3
votes
2 answers

Continuous Web Job with timer trigger and Blob trigger

I have the following functions in the same web job console app that uses the azure jobs sdk and its extensions. The timed trigger queries an API end point for a file, does some additional work on it and then saves the file to the blob named…
Jaya
  • 3,721
  • 4
  • 32
  • 48
3
votes
1 answer

Trigger filter on POCO property

I'm trying to create a multi step process handled by a QueueTrigger per Step. How can I filter on the 'state' property of a QueueMessage object without having a Queue per state? Msg is of type: public partial class TaskType{ string…
OzBob
  • 4,227
  • 1
  • 39
  • 48
3
votes
2 answers

Scheduled Azure WebJob Scheduler log suddenly reporting 401 - Unauthorized

I have scheduled a (single, free) WebJob. This has been working fine form months. I just updated to the newest Azure WebJobs Nuget, which may be circumstantial. What I now get in the Azure WebJob scheduler logs is the following although I deployed…
3
votes
1 answer

Azure Triggered Webjobs Scope for Dependency Injection

I've read and asked some questions on how to use DI using WebJob and especially Triggered Webjobs. SimpleInjector - Azure WebJob with TimerTrigger - Register IDisposable Dependency injection using Azure WebJobs SDK? I still try to figure out how…
Thomas
  • 24,234
  • 6
  • 81
  • 125
3
votes
1 answer

Blob path name provider for WebJob trigger

I have a following test code that is placed inside a WebJob project. It is triggered after any blob is created (or changed) inside "cBinary/test1/" storage account. The code works. public class Triggers { public void OnBlobCreated( …
3
votes
1 answer

TimerTrigger Schedules and code execution time

What happens if a function gets invoked by a TimerTigger every 5 minutes and for some reasons the code takes more than 5 minutes to complete? Does this result in my function running twice at the same time? Or does the interval start when the…
Alex
  • 4,066
  • 2
  • 19
  • 21
3
votes
1 answer

OnDemand WebJob fails after a few minutes

I just created simple web job that just writes something to console. This job is supposed to run on demand so when I published it to Azure, I set it to run on demand. When I run it, it works fine but after a few minutes it fails with the following…
Sam
  • 26,817
  • 58
  • 206
  • 383
3
votes
3 answers

ServiceBusTrigger not working after update

I have installed the NuGet package Micorosft.Azure.WebJobs.ServiceBus, version 1.0.1 (March 19, 2015). My WebJob is perfectly triggered for a new message on the servicebus queue: public static Task ProcessQueueMessage([ServiceBusTrigger("outbound")]…
Peter
  • 217
  • 1
  • 2
  • 8
3
votes
1 answer

Service Bus message abandoned despite WebJobs SDK handler completed successfully

I have implemented a long running process as a WebJob using the WebJobs SDK. The long running process is awaited because I want the result. public async Task ProcessMessage([ServiceBusTrigger("queuename")] MyMessage message) { await…
Anton
  • 1,346
  • 11
  • 31
3
votes
3 answers

Azure Web Job-The remote server returned 404

I have a continuos running web job which listens to a start queue and a stop queue with their respective functions. There are 3 predefined process in the web job and the start queue contains a message which mentions the process name to be started…
Sandesh
  • 2,966
  • 1
  • 20
  • 34
3
votes
1 answer

Multiple instances of continuous Webjob on single VM in Azure

I have a continuous Webjob running on my Azure Website. It is responsible for doing some work after retrieving items from a QueueTrigger. I am attempting to increase the rate in which the items are processed off the Queue. As I scale out my App…
Gadget27
  • 544
  • 5
  • 14