azure-webjobs-sdk
azure-webjobs-sdk copied to clipboard
Azure wbe jobs gets aborted after 1 hour automatically
I have a manual triggered web job which times out automatically after 1 hr.
The app server Always on is set and the configurations are set the high values
SCM_COMMAND_IDLE_TIMEOUT and WEBJOBS_IDLE_TIMEOUT have been set to 172800
Also have settings.job where its configured as below
{ "timeout": "48:00:00" }
What else needs to be done to ensure the web jobs does not gets auto aborted
Not sure if you already tried these suggested options: https://learn.microsoft.com/en-us/answers/questions/532687/max-timeout-limit-for-azure-web-job-is-it-possible
@84961 we met similar issue before. We used to run the webjob in a dedicated slot without actually website deployed and spent many time to debug the issue. It turns out we need to deploy the website to the slot to make it work. Not sure if this is the case for you.