What Does Azure WebJob "Pending Restart" Mean?

Also, take a look at the webjob log, it should hold cue to what's been happening.

if the JOB is set to run continuously, once the process exits (say you are polling a queue and it's empty) the job shuts down and status changes to "pending restart". Azure Scheduler will typically restart the process in 60 seconds.


To add to Victor's answer, the continuous WebJob states are:

  • Initializing - The site was just started and the WebJob is doing it's initialization process.
  • Starting - The WebJob is starting up the process/script.
  • Running - The WebJob's process is running.
  • PendingRestart - The WebJob's process exited (for any good or bad reason) in less than 2 minutes since it started, for a continuous WebJob it's considered that something was probably not right with it (some exception during start-up probably as mentioned by Victor), at this point the system is waiting for 60 seconds before it'll restart the WebJob process (hence the name "pending restart").
  • Stopped - The WebJob was stopped (usually from the Azure portal) and is currently not running and will not be running until it is started again, best way to see this is as disabled.

Usually, it means that the job fails to start (an exception?). Look in the jobs dashboard for logs.

Also, make sure that if the job is continuous, you actually have an infinite loop that keeps the process alive.