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

WebJobs dashboard broken for 2.0.0 beta C# SDK

I am faced with a problem similar to this question in that the function list is showing duplicates and exclamation marks. In difference to that question, the About page is showing a long list of indexer failures, all of them with the message "The…
Søren Boisen
  • 1,669
  • 22
  • 41
0
votes
1 answer

Azure EventHubs EventProcessorHost tries to acess Azure storage queue

After enabling app insights on a webjobs which listens for events on an EventHub using the EventProcessor class, we see that it tries continuously to access a set of non-existing queues in the configured blob storage account. We have not configured…
Trondh
  • 3,221
  • 1
  • 25
  • 34
0
votes
1 answer

Azure Webjob Incompatibility with NewtonSoft

I'm getting the following exception when my Azure WebJob handler starts up: System.IO.FileLoadException was unhandled FileName=Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed FusionLog==== Pre-bind state…
Mark Olbert
  • 6,584
  • 9
  • 35
  • 69
0
votes
1 answer

How can I set a folder name and file name in Azure Functions SaaS File bindings?

I am trying to use a SaaS File trigger to listen for new files in an FTP site. First of all, can you even define a variable folder, like "path": "inputTest/{folder}/{fileName}"? Or, perhaps, listen to new files in all subfolders and include the path…
DBueno
  • 132
  • 9
0
votes
1 answer

Error monitoring using AzureWebJobsSDK ErrorTrigger Extension not working

I am trying to trigger an email function when more than 2 errors occur over a sliding window duration of 2 minutes. However during testing, the error monitor does not work. For example in the following function private void Deserialize(string…
aka17
  • 73
  • 1
  • 1
  • 9
0
votes
1 answer

Azure WebJob Storage Exception

I'm getting the following error when running my continuous webjob. An unhandled exception of type 'Microsoft.WindowsAzure.Storage.StorageException' occurred in Microsoft.Azure.WebJobs.Host.dll Additional information. The client could not finish the…
0
votes
1 answer

ServiceBusTrigger POCO Deserialization

I would like to see if/how it would be possible to plug into the deserialization process for a parameter that's decorated with the ServiceBusTrigger? Say I have a function that looks like: public static void…
Carlos
  • 223
  • 1
  • 2
  • 5
0
votes
2 answers

Limiting or Eliminating Renewing Lease Lock Messages

I have an Azure WebJob that runs as a singleton. The console log file ends up recording a lot of "Renewing singleton lock..." messages, because the job is a long-running one. Is there a way to stop generating those messages, or reduce their…
Mark Olbert
  • 6,584
  • 9
  • 35
  • 69
0
votes
1 answer

What is the difference between the ServiceBus/ServiceBusTrigger methodology compared to that of using QueueClient, when using Azure Bus Service?

So I'm currently trying to get a Azure Bus Service to work in which I create a Queue and then a message is put on the queue and then received else where, and some code is ran using the data the message passed through. I've got everything set up and…
0
votes
2 answers

Same Azure topic is processed multiple times

We have a job hosted in an azure website, the job reads entries from a topic subscription. Everything works fine when we only have one instance to host the website. Once we scale out to more than one instance we observe the message is processed as…
0
votes
1 answer

Detecting update/redeployment inside running Azure function

The WebJobs SDK supports passing in a CancellationToken argument to a function which is used by the SDK to notify running functions of a host shutdown. I have noticed though that running functions are not notified if the app/function is replaced by…
Anders Fjeldstad
  • 10,724
  • 2
  • 33
  • 50
0
votes
1 answer

Azure WebJob runtime unable to map virtual key using MapVirtualKey (user32.dll)

.Net Console Application works just fine until it is uploaded as Azure WebJob to Azure website. Code to replicate: using System; using System.Runtime.InteropServices; using System.Windows.Input; namespace ConsoleApplication2 { class Program { …
serg.salo
  • 580
  • 1
  • 8
  • 14
0
votes
2 answers

Azure WebJobs QueueTrigger attempts (and fails) to convert message's byte[] body to string

I have a storage queue to which I post messages constructed using the CloudQueueMessage(byte[]) constructor. I then tried to process the messages in a webjob function with the following signature: public static void…
Peter Taylor
  • 4,918
  • 1
  • 34
  • 59
0
votes
2 answers

404 Not Found exception when webjob has completed processing job on Azure queue

I have a webjob running on a server on premise (i.e. not hosted on Azure). It can get jobs from the queue fine, and processes them with no problem but I'm getting the following exception when it has finished processing a job on the queue: Unhandled…
Jon Clarke
  • 366
  • 2
  • 14
0
votes
2 answers

Any Example of WebJob using EventHub?

I've tried to come up with something from the example in the WebJobsSDK gitHub var eventHubConfig = new EventHubConfiguration(); string eventHubName =…
WirelessG
  • 227
  • 2
  • 11