Taras Kovalenko
Taras Kovalenko

Reputation: 2393

Azure Web Jobs what happens after deployment web sites?

I have on azure web sites and have several web jobs on this VM. And some times I updated web sites (from GitHub) but not web jobs. And me interesting what happens with my web jobs after deployment web sites? He stopping or restarting after deployment or if I not updated web jobs he working remainder unchanged?

Upvotes: 0

Views: 69

Answers (1)

ahmelsayed
ahmelsayed

Reputation: 7402

Deploying your site shouldn't affect, or restart, your running webjobs.

You can easily verify that by looking at the webjob PID from Process Explorer at https://<yourSiteName>.scm.azurewebsites.net/ProcessExplorer during the deployment.

The only time your webjobs will be restarted is if you update them or if the whole site is restarting for other reasons (e.g: config update, moving VMs, manual restart, etc)

Upvotes: 1

Related Questions