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
2 answers

Is there a way to send multiple notification to a NotificationHub with Webjob SDK?

I have set up a WebJob that sends a notification to a NotificationHub every minute for test purposes and I would need it to send multiple notifications instead of just the one. I have tried to just send an array of Notification objects instead of…
ikko
  • 3
  • 1
0
votes
1 answer

Is there a way to send Push Notification through a NotificationHub with the Webjob SDK?

I'm fairly new to using the Webjob SDK and I am trying to push notifications to a NotificationHub with a Webjob with SDK 3. I have been trying to use Microsoft.Azure.Webjobs.Extensions.NotificationHub. It doesn't seem to be working with Webjob SDK 3…
ikko
  • 3
  • 1
0
votes
1 answer

WebJob occasionally throwing System.Threading.Tasks.TaskCanceledException

I have a continuous WebJob which executes a function which is queue triggered and it occasionally throws System.Threading.Tasks.TaskCanceledException. WebJobs SDK version : 2.1.0 StackTrace: Microsoft.Azure.WebJobs.Host.FunctionInvocationException:…
0
votes
1 answer

Seeing errors in QueueTrigger - Azure WebJobs SDK 3.0

I am in the process of upgrading an Azure Web Job with a Queue Trigger from 2.2 to 3.0.4. I added the storage extension Nuget package, changed the configuration code and got the application to run. It is able to pull from the queue, but I am not…
Kyle J V
  • 563
  • 5
  • 21
0
votes
1 answer

Azure Webjobs on .net core

Is Azure Webjobs SDK on net core still in preview state or it is released? When I am trying to create Azure Webjobs project in Visual Studio Professional 2017 (version 15.9.4), I don't see an option to create webjobs project from .net core though it…
Learner123
  • 73
  • 1
  • 1
  • 7
0
votes
1 answer

Azure webjobs: send notification emails at scheduled time?

I needed some feedback on how to use azure webjobs for this requirement. I have a requirement where we need to send notification emails at scheduled time. The frequency of the notification are stored in database tables. example of table…
0
votes
1 answer

can I run azure webjob after other webjobs finish

say I have this: Step 1: A azure webjob triggered by a timer, and this job will create 1000 messages and I will put them in a queue. Step 2: I have another azure webjob triggered by above message queue, this webjob will process these messages. Step…
daxu
  • 3,514
  • 5
  • 38
  • 76
0
votes
2 answers

VS2017 Azure WebJob Extensions - How do I deploy a TimerTrigger WebJob?

I have the following WebJob project where I'm trying to deploy a TimerTrigger WebJob function, however I cannot get it to run on a scheduled basis when deploying it via "Publish As Azure WebJob..." in Visual Studio 2017. Program.cs class Program { …
Davy-F
  • 123
  • 1
  • 2
  • 12
0
votes
2 answers

How do azure webjobs behave when any error or exception occurs in running webjob?

I want to release all objects if any exception or error occur in running webjob. How do I know if error occurred.Is there any error trigger working with webjob?
0
votes
1 answer

Azure WebJob sudden shutdown while processing

I have a continuous Azure WebJob, that is set to 'Always On'. This WebJob is supposed to handle new messages being added to a storage queue. I'm wondering what if for some reason the WebJob has stopped working while it was processing a queue…
0
votes
1 answer

Azure WebJobs Nuget from version 3.0-beta to 3.0. BlobTriggerAttribute is no longer found

All of Microsoft's documentation is based on 2.2.0 and is years old. I cant not figure out how to use BlobTriggers in 3.0 (full release, non-beta) The packages included: PackageReference Include="Microsoft.Azure.WebJobs.Core" Version="3.0.1" /> …
Andy
  • 12,859
  • 5
  • 41
  • 56
0
votes
2 answers

dotnet core Azure webjobs not being Triggered

I have a Azure webjob built with dotnet core and it's been deployed to a deployment slot on Azure App Service. I've followed the instructions from: https://blogs.msdn.microsoft.com/azuredev/2018/08/22/webjobs-in-azure-with-net-core-2-1/ in order to…
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
1 answer

Azure WebJob: stop trigger when create/overwrite a blob in the same container

i have a webjob that resize and overwrites the same image in the blob container. How can i prevent the webjob from triggering again on the same file? i'm using the imageresizer library btw public class Functions { public static void…
icube
  • 2,578
  • 1
  • 30
  • 63
0
votes
1 answer

Why project cannot find references for WebJobs.Core?

Following this I created a console .Net Core 2.1 application, and I'm using Microsoft.Azure.WebJobs.Core NuGet v. 3.0.0-beta5. For some reason the project can't compile as it says it cannot find the assemblies. Why on earth?
nmrlqa4
  • 659
  • 1
  • 9
  • 32