Questions tagged [azure-webjobs]

Provides an easy way for you to run programs such as services or background tasks in an Azure Web App (previously known as Websites).

The WebJobs feature of Windows Azure Web Apps provides an easy way for you to run programs such as services or background tasks in a Web App. See the Azure WebJobs SDK Wiki page for how to get started, documentation, code samples, and useful links.

2237 questions
0
votes
1 answer

Azure WebJobs is unavailable when Github is added to the Deployment Center

The idea is I want to run the Python scripts on Webjobs via Github, as all the python scripts are stored in GitHub. I'm new to WebJob and not sure whether this is possible, because after I added GitHub to the Deployment Center, I cannot add a…
0
votes
2 answers

is there any way to insert input to continuously running webjob?

I have a simple webjob hosted on azure as a continuously running job. I need to pass token value as a input , how can I achieve this using continuous web job? static void Main(string[] args) { try { …
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

How to initialize websocket enpoint into azure webjob?

I have web socket endpoint and want to initialize and get it called continuously after every time when data is available from api. I have created consciously running azure web job but not sure how/where I need to add web socket ticker service code…
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

Simplest Way to Schedule Multiple Webjobs from DevOps

I have an app service in Azure running the front end from my MVC5 app, and another app service for web jobs. The app has several endpoints (GET Actions) which do some processing, send some emails or other simple task. Previously when we were hosted…
Echilon
  • 10,064
  • 33
  • 131
  • 217
0
votes
1 answer

Why Azure WebJobs blade is showing no webjobs

Basically i am curious why the WebJobs blade for my App Service shows 0 webjobs ("You haven't added any WebJobs. Click ADD to get started"). And of course, when i click Add, i get "WebJob cannot be added from portal if development from source…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
0
votes
2 answers

WebJob doesn't work when splitting pipeline into build and release

I'm trying to deploy a WebJob using Azure DevOps. I have the following pipeline: pool: # name: Hosted Windows 2019 with VS2019 vmImage: windows-2019 demands: - msbuild - visualstudio - vstest variables: BuildPlatform: 'any cpu' …
0
votes
1 answer

Azure WebJobs - add trigger without attribute?

I am building a continuous job that listens for Azure queue messages. Using the documentation I have something like this: static async Task Main() { var builder = new HostBuilder(); builder.UseEnvironment("development"); …
Aaron B
  • 859
  • 11
  • 17
0
votes
1 answer

Start an Azure WebJobs from Javascript code

Is there any node package or something else to start (Run) an Azure Webjob from JS? I'm an automation guy and I want to start an Azure Webjob to change some statuses in the app. Manually I just press "Run", but I want to start the job using code. An…
icsul
  • 593
  • 1
  • 6
  • 11
0
votes
2 answers

Azure Webjob, KeyVault Configuration extension, Socket Error

Need some help to determine if this is a bug in my code or in the config kevault extensions. I have a netcore console based webjob. all working fine until a few weeks ago when we stated getting occasional startup errors which were Socket Error…
MarkD
  • 1,511
  • 18
  • 32
0
votes
1 answer

Azure WebJob deployment

I have a webjob in Azure, hosted on an App Service that is not used for anything. I am currently deploying my webjob from Visual Studio, but this will change in the future as it's not in production. It's a .NET Core 3.1 application webjob that…
Mats Magnem
  • 1,375
  • 1
  • 10
  • 21
0
votes
0 answers

Using NReco FFMpegConverter in an azure function or in a azure web job

Currently, I'm working on POC which converts h264 stream to MP4 file. I'm using NReco FFMpegConverter for that purpose and also use the Azure Cloud Service to host my service. This Azure Cloud Service capture concurrent streams and convert the…
Manojb86
  • 271
  • 2
  • 5
  • 13
0
votes
1 answer

Azure WebJob executes the function more often than it should

I created a continous WebJob which is supposed to execute my public function every 5 minutes. It has been working fine for some days but recently noticed it's being called twice in a shorter period of time. In development AppService I can see it…
Gonzo345
  • 1,133
  • 3
  • 20
  • 42
0
votes
0 answers

How to get azure webapp ip adress to whitelist in storage account

I have a azure storage account with firewall setting enabled to allow only specific IP address. now i have azure web app and web job and from these i am connecting to the storage account to create delete blobs using connection string.but since…
shivayogi
  • 21
  • 1
  • 2
0
votes
1 answer

WebJobs & Service Bus Triggered Functions - Performance considerations

I've a WebJobs that contains almost 10 different functions, each triggered by a ServiceBusTrigger, ovbiously from different Service Bus queues. I'd like to have a high throughput and so I configured: PrefetchCount to 200 MaxConcurrentCalls to…
0
votes
1 answer

Azure WebJob with TimerTrigger just firing 5 times

I recently created an Azure WebJob which is intended to be executed every 5 minutes, forever. Thing comes when I can see it just gets executed every 5 minutes but just 5 times: [08/25/2020 12:41:51 > 2e704f: INFO] The next 5 occurrences of the…
Gonzo345
  • 1,133
  • 3
  • 20
  • 42
1 2 3
99
100