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.

I'm working with node.js and I want to when there's a request to a url like ./calculate start a new process to make these complex calculations, and I want that process to continue even if the script which called it has finished. Is it possible?

Thank you.

share|improve this question

3 Answers

up vote 1 down vote accepted

You can use the natively provided child process facility: http://nodejs.org/api/child_process.html

And use the unix "nohup" command to keep the spawned process alive even if the parent process died.

share|improve this answer
Talking about performance, is it a good decision? Thank you – Mario Aug 10 '12 at 3:04
Are you looking for the result of the child process work to be returned in the same connection that created it? – Roman Aug 10 '12 at 8:10
1  
You can be smart about it and create a pool of child workers and communicate with them through a queue in the database (say using something like Redis), this can be very scalable and resilient. Few links that you might find useful: stackoverflow.com/questions/5630208/… stackoverflow.com/questions/4762016/… – Roman Aug 10 '12 at 8:16
No, I just want to start the process, I don't mind about the result. – Mario Aug 13 '12 at 15:56

There are different approach to this.

You could use https://github.com/pgriess/node-webworker.

Or much better http://nodejs.org/docs/latest/api/cluster.html#cluster_cluster.

Those solutions are if you want to do a subprocess in Node, you could also simply spawn a new Node process and wait for the output (http://nodejs.org/api/all.html#all_child_process_spawn_command_args_options) but node-webworker is a wrapper around that solution and is a much cleaner.

share|improve this answer
But I don't to wait at all. I want to call the subprocess and not more. I mean, if the main script dies or the http server ends I want the subprocess to continue. Thank you. – Mario Aug 10 '12 at 3:03

So after your last comment I know understand better what you want to do.

You want to spawn process not child process. The best and cleaner way to do this is to use some kind of demonizier to run them.

Have a look at forever:
https://github.com/nodejitsu/forever
https://github.com/nodejitsu/forever-monitor

This could be the perfect tool for you. I've never used it programatically, just cli. But this is what I'd look into.

share|improve this answer
Thank you so much but I find that the comand nohup is good for me ;) – Mario Aug 13 '12 at 15:56
1  
sometimes simplicity is good enough :D – 3on Aug 13 '12 at 17:09

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.