Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will Azure App service restart restarts the web jobs too?

I am just wondering whether Azure web jobs are restarted when I restart my app service?

like image 505
SuneelKumar Vanapalli Avatar asked Sep 14 '25 00:09

SuneelKumar Vanapalli


1 Answers

When you hit the restart in azure portal, both the web app and web jobs get restarted. You can take a look at the official doc here:

Note that when you hit Restart, both the main and SCM sites get restarted.

The SCM site is where Kudu runs, including WebJobs.

You should also keep in mind that when you click Stop in the azure portal, only the main site is stopped, while the SCM site(where web jobs running) keeps running.

like image 113
Ivan Yang Avatar answered Sep 15 '25 13:09

Ivan Yang