Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, I need to run my node.js app on heroku, it works very well, but when my app crashes, i need something to restart it, so i added forever to package.json, and created a file named forever.js with this:

var forever = require('forever');

var child = new (forever.Monitor)('web.js', {
  max: 3,
  silent: false,
  options: []
});

//child.on('exit', this.callback);
child.start();

forever.startServer(child);

on my Procfile (that heroku uses to know what to start) i put:

web: node forever.js

alright! Now everytime my app crashes it auto restarts, but, from time to time (almost every 1 hour), heroku starts throwing H99 - Platform error, and about this error, they say:

Unlike all of the other errors which will require action from you to correct, this one does not require action from you. Try again in a minute, or check the status site.

But I just manually restart my app and the error goes away, if I don't do that, it may take hours to go away by itself.

Can anyone help me here? Maybe this is a forever problem? A heroku issue?

share|improve this question
Did you happen to understand what is the reason? – celalo Feb 25 '12 at 12:38
1  
No, but i removed forever, its no need on heroku, you should avoid the errors so your app continues to run – Rogerio Chaves Mar 5 '12 at 1:25
2  
so does heroku automatically restart your app when it crashes now? – dtan Mar 10 '12 at 22:03
from my understanding of heroku the processes should restart. – Piotr May 25 '12 at 10:48
From their docs (devcenter.heroku.com/articles/ps#process-restarts): In the normal case of a long-running web or worker process getting an occasional crash, it will be restarted instantly without any intervention on your part. If your process crashes twice in a row, it will stay down for ten minutes before the system retries. – Matthew F. Robben Jan 14 at 16:41
show 1 more comment

2 Answers

I think Heroku kills apps after 1 hour of inactivity, and then spins them back up the next time a request comes in. This is probably not playing nicely with forever. To confirm this, run heroku logs and look for the lines "Idling" and " Stopping process with SIGTERM" and then see what comes next. - https://devcenter.heroku.com/articles/dynos#dyno_idling

Instead of using forever, you might want to try the using the Cluster API and automatically create a new child each time one dies. http://nodejs.org/api/cluster.html#cluster_cluster is a good example, you'd just put your code into the else block.

The upshot is that your app is now much more stable, plus it gets to use all of the available CPU cores (4 in my experience).

The downside is that you cannot store any state in memory. If you need to store sessions or something along those lines, try out the free Redis To Go addon (heroku addons:add redistogo).

Here's an example that's currently running on heroku using cluster and Redis To Go: https://github.com/nfriedly/node-unblocker

share|improve this answer
1  
You're right that Heroku does this, only for free single-dyno apps though. The paid tiers always stay up. – Jed Watson Nov 12 '12 at 14:13

Heroku automatically monitors node.js apps and brings them back online when they crash, you don't need to use techniques like forever to manage it.

Of course, having your app go down due to errors is not ideal, regardless of how quickly it comes back up; unit testing goes a long way to help ensure you've caught any breaking issues before they go into production.

Mocha is a great tool to use for this, and there's a good getting-started here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.