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
0
votes
1 answer

Is ther an Azure WebJob Configuration to control logging?

I am experimenting with WebJobs. I created a new WebJob project in Visual Studio 2015. Here is the code: public class Program { // Please set the following connection strings in app.config for this WebJob to run: // AzureWebJobsDashboard and…
Apollonas
  • 647
  • 1
  • 5
  • 12
0
votes
1 answer

How to start jobhost with TopShelf

I'm using Topshelf to create a windows service and i'm thinking of integrate it with WebJobs SDK. Can anyone point me in the right direction on how to setup? Thanks!
James Lau
  • 1
  • 1
  • 2
0
votes
2 answers

Azure Webjobs timing out, not receiving response from webapi

I have a Azure Webjob which hits a WebApi. The WebApi sends back an acknowledgement in 4 - 5mins. So, I have declared the TimeOut for the HttpClient to be at 10 mins. Now, if the WebApi is returning the response in less than 4 mins, it works fine.…
0
votes
1 answer

Configure custom ConsumerGroup using EventHubTrigger

I would like to use the EventHubTrigger with a custom ConsumerGroup. The code looks like this when using the default ConsumerGroup: public static async Task ProcessQueueMessage([EventHubTrigger("%EventHubName%")] TelemetryEvent[] messages,…
Pascal Naber
  • 1,092
  • 8
  • 14
0
votes
1 answer

Regarding run_command and using_sdk from Azure webjob logs

My webjob is suppose to do some work but we found it is not running. When, we went through the azure logs (Kudu webjob logs), we found that it is running some other file. like run_command = "" has some other .exe file. Also, using_sdk is set to…
Vicky
  • 624
  • 2
  • 12
  • 35
0
votes
1 answer

How to retrieve a WebJob's name at runtime

I am looking for the most relevant/robust way to resolve the current webjob name. I need it at both function execution time and host startup for registration purpose in my internal logic. Webjob name is defined in…
GGirard
  • 1,145
  • 1
  • 13
  • 33
0
votes
2 answers

Azure WebJobs SDK - Create trigger on AWS Queue?

I am building an Azure WebJob (C#) that polls an Amazon SQS queue for new messages and offloads to Azure Event Hub. I have a proof-of-concept that creates a long-polling connection (10s), processes multiple messages and sends to the Event Hub…
0
votes
3 answers

Azure WebJob fail to start

I have created an Azure WebJob in Visual Studio 2015 and deployed it to Azure. When trying to run the WebJob I get this error: [03/12/2017 22:47:46 > 070c62: SYS INFO] Status changed to Running [03/12/2017 22:47:47 > 070c62: ERR ] [03/12/2017…
Høgsdal
  • 395
  • 4
  • 21
0
votes
1 answer

Strategy for managing database connections from Azure Webjobs

I'm using Azure webjobs with queue-triggered functions (which rely on the Azure webjobs sdk) to perform some background processing work. Within the webjobs I make various connects to a SQL Azure database (using PetaPoco which uses…
0
votes
0 answers

How to implement a priority event processing web job with Azure web job

We have azure webjob which is being triggered from service bus message.So for all messages my webjob function are getting triggered sequentially. There is no priority order to process the message. It treat every message as same priority. How can I…
user2768967
  • 367
  • 1
  • 4
  • 18
0
votes
1 answer

Upload files to blob storage from azure webjob in parallel and get notified when ALL is done

I have a folder with different folders named A, B and C on my azure website. Each folder contains 10.000 images and I want to upload each folder to its own blob storage. I would like to do this in parallel with 3 web jobs. When ALL 3 web jobs are…
Pascal
  • 12,265
  • 25
  • 103
  • 195
0
votes
2 answers

WebJob Failing on Azure but Locally Running Fine

I'm running a WebJob locally -- still connecting to the same Storage service on Azure -- but when I publish it on Azure, it's failing. It was failing locally as well with the same error but I was able to fix it and run it perfectly fine on my local…
Sam
  • 26,817
  • 58
  • 206
  • 383
0
votes
1 answer

Confused with regards to role of azure-webjobs-sdk-script

I want to write a background process in NodeJs which will process messages from a TOPIC. Reading through an array of confusing articles, there are my options Write a webjob in NodeJS with a continuous polling mechanism. All plumbing code has to be…
Srini
  • 51
  • 2
0
votes
1 answer

TopicClient send hanging when using azure webjob SDK

I have a webjob that is using the Webjob extension sdk, and a function that is manually triggered and is reading/writing to service bus. When sending a message it seems to hang. here is the relevant code: JobHostConfiguration config = new…
Ravit D
  • 907
  • 9
  • 27
0
votes
1 answer

What could cause the "Too many changes at once in directory:D:\home\site\wwwroot\App_Data\jobs\continuous" Exception?

We have different continuous Azure WebJobs (using WebJobs SDK) listening to Azure Service Bus topics which are running across multiple instances on an App Service Environment. Everyday we get multiple log files in the log folder…
Paco de la Cruz
  • 2,066
  • 13
  • 22