Issue: If deployed azure webjob running for long
time, it will get aborted after some time.
Issue cause: Sometimes there are interruptions which can stop your WebJob abruptly without notice aborting your process, and get time out.
These interruptions could be due to: stopping your site, restarting your site, some configuration change to your site which causes your site to
restart, Azure maintenance (version update for example) or even the VM simply crashing for some reason.
Resolution:
Make confuguration on for - ALWAYS ON = ON.
Go to Configure menu under APP settings add follwing:
- SCM_COMMAND_IDLE_TIMEOUT = 90000 (in seconds)
- WEBJOBS_IDLE_TIMEOUT = 90000 (in seconds)
- stopping_wait_time = 90000 (in seconds)
Happy Coding!!
Issue cause: Sometimes there are interruptions which can stop your WebJob abruptly without notice aborting your process, and get time out.
These interruptions could be due to: stopping your site, restarting your site, some configuration change to your site which causes your site to
restart, Azure maintenance (version update for example) or even the VM simply crashing for some reason.
Resolution:
Make confuguration on for - ALWAYS ON = ON.
Go to Configure menu under APP settings add follwing:
- SCM_COMMAND_IDLE_TIMEOUT = 90000 (in seconds)
- WEBJOBS_IDLE_TIMEOUT = 90000 (in seconds)
- stopping_wait_time = 90000 (in seconds)
Happy Coding!!
I tried above but still I am getting same error. Aborted.
ReplyDelete