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

Azure WebJobs SDK ErrorTrigger

This question is related to QueueTrigger and ErrorTrigger in WebJobs. I have one Process Queue method inside one public class(see code below). When any exception comes(e.g Timeout exception) we have 5 retry attempt to process the queue. After 5…
0
votes
1 answer

azure queue triggered webjob prevent message dequeue from azure queue

I have azure webjob triggers from azure queue. i don't want to dequeue message on some specific condition, and i would like to process that message after some time for example (5 minutes) is it possible to prevent dequeue message ?
Mahesh
  • 730
  • 7
  • 26
0
votes
1 answer

Can Azure WebJobs work with the non-classic storage accounts

All of the WebJobs samples I've come across they always show a classic storage account used. Can WebJobs be used with new ARM based storage accounts? If so, the connection strings are a lot longer with new accounts. Do you still copy the entire…
Steve W.
  • 413
  • 1
  • 5
  • 12
0
votes
1 answer

Using Ninject in an Azure WebJobs but can't pass my db client

I'm using Ninject in a new Azure WebJobs project. One of my repositories requires a Db client to be passed. How do I pass this client? My bindings class is: public class NinjectBindings : Ninject.Modules.NinjectModule { public override void…
Sam
  • 26,817
  • 58
  • 206
  • 383
0
votes
1 answer

Suppress logging in Azure Webjobs ("Executing: 'xxx' because New queue message detected on 'yyy'.")

Is there a way to suppress log entries of Executing: 'xxx' because New queue message detected on 'yyy'.? I still want to see my logs (written to Console), however I'm not interested in seeing Executing (...) entries. Those do not provide me any…
piotrwest
  • 2,098
  • 23
  • 35
0
votes
1 answer

Can i execute an on-demand web job from a scheduled webjob?

I need to execute a long running webjob on certain schedules or on-demand with some parameters that need to be passed. I had it in a way where the scheduled webjob would put a message on the queue with the parameters and a queue message triggered…
user5845859
  • 11
  • 1
  • 3
0
votes
1 answer

Changing the default name for connection strings AzureWebJobsStorage and AzureWebJobsDashboard for WebJobs

I am adding a webjob project to a website project. Webjob project requires AzureWebJobsStorage and AzureWebJobsDashboard connection strings in the environment when deployed to Azure. Is it possible to change the name of these connection strings,…
Nuri Tasdemir
  • 9,720
  • 3
  • 42
  • 67
0
votes
1 answer

Prevent Null Queue Message for Azure Webjobs Output Queue

According to this WebJobs documentation page, for POCO output queue messages, "A queue message is always created, even if the object is null." In my scenario, I only want to conditionally output queue messages from my WebJob. Currently I am…
Bryan Lewis
  • 5,629
  • 4
  • 39
  • 45
0
votes
1 answer

Alerting and monitoring for azure webjob

I am looking for a way to monitor and alert when a webjob fails. Is there any tools(Apart from cloudmonix and Newrelic) that can support this?
Hari Subramaniam
  • 1,814
  • 5
  • 26
  • 46
0
votes
1 answer

WebJob to read from and write to the same Azure blob

I am trying to process images uploaded to azure using webjob. I have 2 containers image and thumbs. Currently, I am reading from image container, creating a thumbnail and writing it to thumbs container using the following code, which works…
CoOl
  • 2,637
  • 21
  • 24
0
votes
1 answer

Possible to bind dynamically generated functions to Azure WebJobs JobHost after RunAndBlock called?

Once I've kicked off a JobHost via RunAndBlock, is it possible to dynamically bind functions to it? I'm specifically interested in doing this using a service bus. I'm envisioning a scenario where the service gets a notification that there's a new…
Keith
  • 706
  • 5
  • 13
0
votes
2 answers

WebJob Crontab schedule running at the top of the hour and every 15 min thereafter

I'm trying to come up with a schedule for my Azure WebJob in crontab format that will run every 15 minutes but exactly at h:00, h:15, h:30 and h:45. The one that I'm using for my web job right now is: { "schedule": "0 0/15 * * * *" } But this…
Sam
  • 26,817
  • 58
  • 206
  • 383
0
votes
1 answer

Azure WebJobs - Find invocation/s by parameter value

Is it possible to search for invocations by function name and value in Azure? I have been fiddling about in the interface and I can get to a list of ALL invocations by function name…
Stewart_R
  • 13,764
  • 11
  • 60
  • 106
0
votes
2 answers

Sending different types of emails using Azure WebJobs

I am looking for recommendations on how to handle the ability to queue and send different types of emails using Azure WebJobs. Before sending the email there needs to do some business logic to compose, populate and then send. So say that I have 10…
user600314
  • 662
  • 1
  • 5
  • 17
0
votes
1 answer

I have fork class ServiceBusTriggerAttribute to public and removed sealed - getting exception

I have taken a sdk code from github and make fork class ServiceBusTriggerAttribute.cs public removed sealed. namespace Microsoft.Azure.WebJobs { // Summary: // Represents an attribute that binds a parameter to a Service Bus Queue message, // causing…
Neo
  • 15,491
  • 59
  • 215
  • 405