isaacs / cluster-master

Take advantage of node built-in cluster module behavior
ISC License
276 stars 44 forks source link

Logs streams, worker events, REPL... #22

Open seebees opened 9 years ago

seebees commented 9 years ago

This project has not had a lot of activity. I would like to see some new features like:

Should I make some PR's or should I fork the project and start anew?

isaacs commented 9 years ago

I don't use this any more. Anyone who lands good PRs, I'll add as collaborators. Go nuts :)

seebees commented 9 years ago

@isaacs, hum... Why don't you use it anymore? Do you use something else or do you just use the built in cluster module?

It seems to me that this direction offers some things for production grade monitoring. I'll fork this look at any suggestions I can (hopefully ;) get out of you and set up some PR's...

isaacs commented 9 years ago

Why don't you use it anymore? Do you use something else or do you just use the built in cluster module?

It's just easier spin up a bunch of independent VMs, and put a load balancer in front of them, especially since you usually want a CDN in front of any production site anyway. Then clusters just kind of make things confusing.

seebees commented 9 years ago

Yup... that sounds right. The cluster stuff seems more like an ops function since it provides faster recovery, fault tolerance, maybe some monitoring magic... I'll start playing around and we shall see.

Ideally, it should be that a dev-ops person could drop in something like cluster-master on top of an arbitrary application and it should just work... That's my goal anyway.