node-compute-cluster
node-compute-cluster copied to clipboard
NodeJS library for distributing computation across multiple processes.
It would be nice if the job could send back asynchronous progress or logging messages as it goes about its job. Idea: `enqueue` could return an EventEmitter specific to that...
Is not possible to call process.send('complete') more than once from workers. Is there an alternative to comunicate with the compute cluster? For example: simple.js ``` #!/usr/bin/env node const computecluster =...
options can be enable through ``` new computeCluster({ module: path.join(__dirname, 'workers', 'echo.js'), promise: true } ``` and this will make sure the callback called in the same order as it...
I found that tests are broken using vows 0.6.0 and node 0.10.31. The issue I've run into is similar to [this one](https://github.com/flatiron/vows/issues/230). I've tried to run tests with vows 0.7.0....
A few little fixes for things that seem out of date. I also cannot get the tests to run correctly, vows is immediately throwing an error...
Maybe you forgot to publish to npm.
shall the client be able to cancel enqueued work? or specify a timeout - the max time it should take?