Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are the dyno restarts on Heroku simultaneous?

Tags:

heroku

I read on Herokus website that dynos will be restarted about every 24 hours.
If you have for example two web-dynos is there a chance that they will be restarted simultaneously?

Thanks for your time!

like image 254
Detached Avatar asked Apr 28 '14 14:04

Detached


2 Answers

According to heroku:

"The cycling happens once every 24 hours (plus up to 216 random minutes, to prevent every dyno for an application from restarting at the same time)."

Source: https://devcenter.heroku.com/articles/dynos

like image 148
Bruno Torquato Avatar answered Sep 22 '22 13:09

Bruno Torquato


Heroku restarts dynos randomly -- sometimes multiple times per day. Don't count on it being simultaneous!

like image 34
rdegges Avatar answered Sep 26 '22 13:09

rdegges