Questions tagged [azure-webjobs-triggered]

81 questions
0
votes
0 answers

Is there a way to extend the running time of WebJobs in Azure?

I have a triggered WebJob which executes deletion of thousands of records. Based on dashboard, the maximum running time of for every execution is 5 minutes only: When checking the list, it manages to delete around 4,000 records in 5mins. What I…
0
votes
1 answer

How to Schedule azure web job with 2 different Cron expression

I have Created python azure webjob which I want to trigger twice - 1st is daily @2 am and second is every Saturday @ 4 am. How can I achieve this in a single cron expression? Below is my current cron expression file looks like: {"schedule":"0 0 14 *…
0
votes
1 answer

Does webjob SDK TimerTrigger support Dependency Injection?

I am using .net core 6 WebJob SDK Version 4.0.1: I added the following line to my webjob setup code: builder.ConfigureServices(s => s.AddSingleton()); I have…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
0
votes
1 answer

Time triggered web job Scheduler start only after running it manually

I have created a Time triggered web job and after deploying it I need to run it manually for the first time. After the manual start, it run at a specified interval. Is it possible scheduler start without clicking on run button?
HItesh Kumar
  • 81
  • 1
  • 9
0
votes
0 answers

Azure WebJob console application not maintaining the singleton instance object from dependency dll

I have created triggered AZURE webjob with .NetCore 2.2 console application(WebJob.Test.dll) and class libraryCommon.dll Class library has the singleton class to maintain the global values and referred to the console application. In my scenario,…
Sarvesh
  • 64
  • 6
0
votes
1 answer

Why my webjob is failing when I am adding reference to class library project?

I have console application and a class library build on Target Framework: .NET Framework 4.8. The class library implements the database operations. The programs runs fine locally but not when console application is published on app service using…
Psychonaut007
  • 167
  • 3
  • 13
0
votes
0 answers

why webjob getting failed without showing the detailed error?

I am uploading my .Netframework 4.8v console application to Azure Webjob by using Publish as Azure Webjobs.... This is my code: class Program { private static IServiceCollection services; private static IServiceProvider…
0
votes
1 answer

Deploy or publish Asp.Net Core 6.0 Web Job Zip file on Azure App service (Window Instance) using AZURE CLI

I want to Deploy or publish my Asp.Net Core 6.0 Web Job (Continuous) project Zip file on Azure App service (Window Instance) using AZURE CLI I want it to deploy using AZURE CLI Commends only
0
votes
0 answers

Azure WebJobs Status

I am new to Azure portal. I have a client application on .net which is currently deployed on Azure. Our project does sends emails to customers through sendgrid API. For emails, some customers complain they see the status as In pending and not…
0
votes
0 answers

Can you pass parameters into a scheduled Azure Webjob

I have a console app which runs daily on an azure webjob. I am trying pass in parameters into the scheduled web job without redeploying. I have seen that you could add params onto the webhook Url however since Azure Scheduler depercated you can't…
0
votes
1 answer

Cannot bind parameter 'message' to type ServiceBusReceivedMessage

I have Azure WebJobs methods registered as below Program.cs hostBuilder.ConfigureWebJobs(webJobsBuilder => { webJobsBuilder .AddTimers() .AddAzureStorageCoreServices() .AddAzureStorageQueues() …
Teoman shipahi
  • 47,454
  • 15
  • 134
  • 158
0
votes
0 answers

Multiple queue trigger web jobs based on functionality vs single web job

I have an Azure App Service where multiple web jobs. These web jobs are queue triggered (there is a storage account where I have multiple queues created for different code functionality and each web job gets triggered when a message is added to the…
0
votes
1 answer

Scheduled Azure Web Jobs Timeout

I'm trying to have a Azure webjob run hourly, but either the documentation is very confusing or I'm missing something. I'm using a TimerTrigger with the following signature: public void RunHourly([TimerTrigger("0 * * * *")] TimerInfo myTimer) and…
0
votes
1 answer

Executing webjobs via SQL server Stored Procedure

I have a very simple C# console exe. My code deletes a blob from a particular blob storage. It takes a couple of command-line arguments - container name & blob name and deletes the blob whenever triggered. Now, I want to schedule this exe as a…
0
votes
1 answer

How can I update the azure web job trigged timing

I have an existing azure web job but for some changes, I need to update the timing of the azure web job from 10 min to 5min. But in the portal, I did not get any section from where I can update. Do I need to create a new one for that or I can change…