2,290 questions
-1
votes
1
answer
37
views
Deploying an Azure Python Webjob on Linux
I have a Linux based NodeJS Web App resource on Azure.
I want to deploy a Python 3.12 based continuous Web Job under this Web App. I have added a run.sh which contains installing the requirements.txt ...
1
vote
1
answer
221
views
Azure WebJob is failing after some period of time on Linux plan
Issue:
After a (continuous, "Always On" feature is enabled for App Service) webjob is deployed (to webapp on Linux plan) it works for a random number of days (sometimes 2-3 days, sometimes ...
0
votes
2
answers
86
views
How to store Azure App service Webjobs console logs in Azure storage account?
I have a spring boot jar running as a webjob in Azure App Services webApp. I can see the info logs generated by the jar in the log option of the webjob but this gets updated after every run. I want to ...
0
votes
1
answer
120
views
When Hangfire deployed in Azure webjob , multiple webjobs instances picks same hangfire job
When Hangfire deployed in Azure webjob , multiple webjobs instances picks same jobs
I am using hangfire 1.6.21 version
I have deployed Hangfire in Azure webjob
Using Azure SQL server as Database for ...
0
votes
1
answer
143
views
webjobs stopped working and unable to add and configure azure webjobs
I have created a a simple cron in Azure using the webjobs functionality.
This has worked very well since few months, 1st of march it stopped working with apparently no reason. All webjobs logs ...
0
votes
1
answer
130
views
How to open a socket in Azure?
I have a custom SMTP server that I need to deploy to Azure and call from outside of Azure.
This is a .Net worker service.
I've tried to deploy it as a webJob running in an App Service but I can't ...
0
votes
1
answer
69
views
Store files from SharePoint Online list to Network Remote server using webjob
I have requirement where I wanted to save images from SharePoint online library to one of my remote servers located in Organisation network. This remote server is not SFTP server. This program should ...
0
votes
3
answers
1k
views
Azure Linux App Service fail to create Webjob
Currently, my Linux App Service fails to create Webjob, but it worked fine 2 days ago.
Also, I cannot find the detail error log of such error. All the error detail is the screenshot I shown above.
...
0
votes
2
answers
251
views
How to deploy .NET Core 3.1 project to webjob?
How do we set up build/release pipelines in Azure Devops to automatically deploy a .NET Core 3.1 project as a webjob?
I manually created a web app in the portal:
I'm attempting to deploy the ...
0
votes
1
answer
172
views
TaskCanceledException in Azure Function with Singleton Attribute
I'm encountering a TaskCanceledException in my Azure Function, which uses the Singleton attribute. The exception seems to be related to the Singleton functionality. Here is the relevant part of my ...
0
votes
2
answers
294
views
How to Resolve Errors When Running Python Jobs in Azure App Service WebJobs
I want to run a Python job in an Azure App Service WebJob.
The App Service plan is Basic.
The OS is Linux, and the runtime is Python. The deployment model is set to “Code.”
I created a WebJob by ...
0
votes
1
answer
525
views
Azure Function cannot access AzureWebJobStorage via private endpoints
tl;dr: Queue-triggered Azure function trying to access blob storage for Azure-WebJob-Secrets and is denied permission. There's no such container. Should I have to create it, and why is it needed, ...
0
votes
1
answer
186
views
Linux Azure Webjob in nodejs referring to node.exe
I tried to switch to preview Azure App Service Webjobs running on linux for nodejs continuous webjob without luck.
(I have deep successful experiences on nodejs/C# ones on AppService Webjobs running ...
0
votes
1
answer
210
views
Deploy Azure webjob inside the correct location using YAML file
What i am trying to do?
Build one YAML file that builds and deploys service as a webjob inside webjobs location in appservice's webjobs location.
I have this one YAML code that builds and deploys a ...
-3
votes
1
answer
96
views
Job Scheduler Implementation with monitoring the job Using cloud (Azure Web jobs) in Dotnet [closed]
I need idea or some suggestions on tool to create POC for our own job scheduler using following tech stack, which should replace the onpremimse AutoSys to cloud based solution.
Tech Stack:
Angular
C#,...
0
votes
1
answer
153
views
Receiving a message using Azure.Messaging.ServiceBus that was sent with Microsoft.ServiceBus.Messaging (ServiceBus.v1_1)
We send servicebus messages with an old library via Microsoft.ServiceBus.Messaging which is available in the nuget-package 'ServiceBus.v1_1' and want to receive and parse the message with the newest ...
1
vote
1
answer
383
views
Best way to deploy a worker service with Hangfire in Azure?
So I am developing a worker service with Hangfire. It will have some recurring jobs which will e scheduled and managed by Hangfire. All of this is working great.
Now, I want to deploy it in Azure and ...
0
votes
1
answer
263
views
Azure WebJob stuck in Initializing state
We have a WebJob in an App Service in a paid subscription. A few days ago the service went into Initializing state and we haven't been able to start it ever since.
These are the output logs:
When we ...
0
votes
1
answer
96
views
File becomes locked during Stream.CopyTo in Azure WebJob
I have an Azure app service (Windows) that I'm developing a continuous, queue-triggered webjob on. This webjob retrieves a file from an Azure storage account file share and attempts to copy the ...
0
votes
1
answer
74
views
Unable to deploy a standalone web job via yml file
parameters:
# Artifact Path
artifactPath: ''
# projects
projects: ''
# build configuration 'Debug' | 'Release'
buildConfiguration: ''
# artifact publish path
artifactPublishPath: ''
#...
1
vote
2
answers
2k
views
Unable to resolve the Azure Storage connection named 'AzureWebJobsStorage' when running my docker image
I have an application that uses azure durable functions, it works very well locally, but when I containerized this app, and I run my image I get this error: Unable to resolve the Azure Storage ...
0
votes
2
answers
563
views
JetBrains Rider IDE for Azure Webjob Development/Publishing
Does Rider support the development/publishing of WebJobs ??? I can't find any supporting material. Documentation pointers would be appreciated.
1
vote
1
answer
245
views
Core WebJob not overriding connection string from WebApp
I am porting my .Net Framework webjobs to Core v6 and creating them afresh as console apps. I'm having trouble getting the connection string on the parent web app in Azure to override the connection ...
0
votes
2
answers
2k
views
Using Managed Identity to connect to a queue from a WebJob
I have an app service with a system-assigned managed identity, and a WebJob operating off a queue trigger. If I give the app service an AzureWebJobsStorage connection string, it works, no problem. It ...
1
vote
2
answers
312
views
Web job app settings not detected after upgrading to .NET 6.0
After upgrading a web job to .NET 6.0, it stopped recognizing the app settings and only works if we specify the settings in the app.config.
To provide some context, this web job runs every 5 minutes, ...