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

ASP.NET Core Azure WebJob not logging to Azure Storage

Previously when I've created Azure webjobs in .NET, it has automatically configured logging to a text file on Azure storage on path /azure-webjobs-hosts/output-logs/.txt. However now when I'm working with .NET Core and version 3.0.14 of the Webjobs…
0
votes
2 answers

How do I set an Azure WebJob to run every N number of hours

I have an Azure webjob that was created as a console application and published to azure via Visual studio. When I login to the portal, I can see the web-job is running, but I want it to run every 1 hour. How can I do this? Schedule seems to say n/a…
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

QueueAttribute missing while coding in WebJob via VS

In VS I have created a continuous type web job. My web job SDK is 3.0.14. I could write a timerTribber however none of the bindings for blob/queue is available. What am I missing? Below is the code. I an on .NET 4.7.2. WHen I compile I get the error…
Garuda
  • 385
  • 5
  • 17
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…
0
votes
1 answer

Azure Build pipeline including WebJobs with Atlassian Bitbucket

I have a Web app being published with a build pipeline yml file (Atlassian build server) and all is working well. E.g. - dotnet publish $PROJECT_NAME --output publish --configuration release I'm now adding an Azure WebJob version 3 but don't…
richardb
  • 943
  • 1
  • 10
  • 27
0
votes
1 answer

How do I configure a TimerTrigger in Azure Webjob V3?

I've just updated a webjob to version 3 of the azure-sdk. The job has a TimerTrigger and as an alternative to create an appsettings.json file with the connectionstring I was hoping to use the TimerOptions class to set the ConnectionString but to my…
Robert
  • 383
  • 1
  • 5
  • 20
0
votes
1 answer

How to use DI in this example?

I followed this example https://learn.microsoft.com/pt-br/azure/app-service/webjobs-sdk-get-started and it is working fine. What I want to do is to make the connection strings (strongly typed) available in all methods within Functions class. My…
0
votes
2 answers

How to bind the storage blob name dynamically from a particular field inside trigger queue message

I am trying to do some logging for a triggered message(queue), so that if a message fails and it gets picked up by the webjob next time I would have logged some information so that I wouldn't redo the success paths(like sending messages to clients…
Anurag
  • 78
  • 9
0
votes
1 answer

Trigger WebJob from another WebJob using Azure SDK for Java

Is it possible to trigger a WebJob from another WebJob, using the Azure SDK for Java (without having to make HTTP calls to the WebJobs REST API)?
agentwarn
  • 755
  • 2
  • 7
  • 14
0
votes
3 answers

Azure - WebJobs - Use remote connection string

I have WebJobs running under my Azure Web App. For Web App you can set that the Web App will use remote connection strings (that you setup on Azure portal). Is it possible to do the same for WebJobs? So they would be looking for remote connection…
Jakub Holovsky
  • 6,543
  • 10
  • 54
  • 98
0
votes
1 answer

Do Azure WebJobs run concurrently on the same host

If I have two distinct WebJobs, both triggered with TimerTrigger and at the same moment in time, can they ever run concurrently on the same host or will one wait for the other to complete? In other words can a single host run two distinct webjobs in…
Agendum
  • 1,697
  • 1
  • 18
  • 36
0
votes
1 answer

Is there a way to set an Azure Web Job parameters (in Azure Portal), and then run it by clicking the "Run" button?

I got an Azure Web Job, and I'd like to run it through the Azure Portal by passing its parameters, and then clicking in the Run button. The reason I'd like to do this it's for maintain a friendly way for run the job (for testing purpose especially),…
curiousguy_08
  • 13
  • 1
  • 3
0
votes
1 answer

How to fix "InvalidOperationException: No event hub receiver named "

I am using Azure webjobs version 3.x for EventHub trigger. Provided the event hub connection string in the appSettings.json file by using the field "EventHubConnection". But when i tried to run the function, i am getting below…