You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apps that have scaled the number of web dynos (dynos running the web process type) so that only a single web dyno is running, will have that web dyno idled out after one hour of inactivity. When this happens, you’ll see the following in your logs:
2011-05-30T19:11:09+00:00 heroku[web.1]: Idling
2011-05-30T19:11:17+00:00 heroku[web.1]: Stopping process with SIGTERM
Normally, Heroku will spin the app back up when a request is made to it. However, in this case, when Heroku spins down the app, it leaves IRC. Thus it never receives a wake-up request.
Something else to consider regarding Heroku dynos:
If your app has only a single web dyno running, it will idle out - irrespective of the number of worker dynos. You have to have more than one web dyno to prevent idling.
The text was updated successfully, but these errors were encountered:
Dumping the heroku logs shows:
It seems that even though the bot received a ping, Heroku still thought it was idle for too long.
Per the Herkou docs on dyno idling
Normally, Heroku will spin the app back up when a request is made to it. However, in this case, when Heroku spins down the app, it leaves IRC. Thus it never receives a wake-up request.
Something else to consider regarding Heroku dynos:
The text was updated successfully, but these errors were encountered: