Questions tagged [azure-webjobs-triggered]

81 questions
0
votes
1 answer

Azure functions http trigger cannot find Microsoft.Extensions.Primitives.StringValues

I am building an Azure Functions v3 .NET Core 3.1 app with an http trigger. I have created function that retrieves a jwt from the request’s Authorization header and validates it with JwtSecurityTokenHandler. This works if I create a startup class…
0
votes
1 answer

Cannot create more than 20 webjobs (all are triggered)

I've been trying to find out why this is happening but basically we have 20 webjob workers that are triggered, and whenever we try to add more the creation fails through azure portal. Previously we added all of them through the portal. The new ones…
0
votes
1 answer

Migrating .net core service to Azure how to run only when needed

Am new to Azure and am reviewing the ton of different services to choose from for processing various files from blob storage folders. I have a .net core windows service that currently processes these files, running on-prem (files on prem also) but…
bitshift
  • 6,026
  • 11
  • 44
  • 108
0
votes
1 answer

Using Queue in Azure Storage

I am try to solve 1 problem with using AzureStorage.Queue in .NET. First, I have 2 project, 1 project Web API, 1 project for WebJob. (All write in .NET Core 2.2) My project API when Create new product, It will insert 1 message store Id of product…
0
votes
1 answer

Using ServiceBusTrigger in the Webjobs SDK 3.x, can the Singleton attribute use a UserProperty as the scope?

I am using a ServiceBusTrigger to execute code when receiving a message. I would like to use the Singleton attribute to limit which messages can be executed in parallel. This attribute allows specifying a scope bound to properties on the incoming…
0
votes
1 answer

Integrate webjob and botframework c#

I have created a bot using Microsoft bot framework V4(c#) and a webjob which will be triggered every day. I want my bot to know that this webjob was triggered and I have no idea how to do that. Is there a sample I can follow? Thanks in advance.
0
votes
1 answer

Azure Functions BlobTrigger not firing for deleted blobs from container in azure storage account

Azure Function is not being called for deleted blobs. I am referring sample code - https://learn.microsoft.com/bs-latn-ba/azure/azure-functions/functions-bindings-storage-blob-trigger?tabs=csharp Below is the sample code…
0
votes
1 answer

Azure WebJob not timing out

I am running a triggered web job - runs on every 15 minutes - it is a console application which moves data from SQL Server to Mongo Database. I have configured the WEBJOBS_IDLE_TIMEOUT and SCM_COMMAND_IDLE_TIMEOUT values to 3600. It was in an idle…
Anuraj
  • 18,859
  • 7
  • 53
  • 79
0
votes
1 answer

All Azure WebJob possible statuses

I would like to know all possible statuses for a triggered WebJob. I need this because of possible scenarios that might occur if something unwanted happenes. I found this answer: https://github.com/MicrosoftDocs/azure-docs/issues/32612 by…
0
votes
1 answer

Use WebJobs and WebJobs extensions nuget in windows service and on cloud

We have an application that runs as a windows service we are migrating to Azure. The windows service runs continuously and uses Quartz scheduler library internally to trigger different jobs configured with cron expressions. Webjobs look like a good…
0
votes
1 answer

Will webjob scale-in kill "busy" instances?

Let's say I have a webjob that consumes messages from a storage queue. I am planning a scale rule to scale-out when my queue has too many messages waiting to be picked up. Some of the messages will take a long time to process. My question is... If…
2d1b
  • 595
  • 1
  • 6
  • 24
0
votes
1 answer

Triggered Azure Web Job goes into Aborted State

I have 2 Azure web jobs. One is triggered and other one is Continuous. Whenever there is some change in server configuration or app configuration of the web job, Triggered web job goes into aborted state. It goes because because of the change,…
0
votes
0 answers

Blob Trigger Azure function execution?

I have an Azure function which is triggered by changes in the blob. [FunctionName("...")] public static void Run([BlobTrigger("...", Connection = "")]Stream myBlob, string name, ILogger log) { var processor = new…
0
votes
1 answer

Is it possible to create triggered/scheduled web jobs automatically after an insert is done in the Azure Table?

We have a requirement where we want to create a scheduled web job to call an API and process some data at the 12:00 AM every night. However, each of the job needs to be triggered at 12:00 AM of specific time-zone, to which the record in the table…
0
votes
1 answer

Is it possible for a single webjob to have a timer triggered function as well as a manually triggered function

I am having an existing webjob(V3.0) in .net core that has a function that is invoked by manual trigger, essentially by a webhook. I want to add another function to the same webjob that should be invoked on a Timer trigger every 20 mins. Is it…