jpool
v1.0.3
Published
a threaded queue for node worker threads
Downloads
3
Readme
What is it
Jobs taking seconds to complete over time is expensive in the long run. This library makes it possible to execute thousands of in under a minute! This is the final result.
Installation
npm install jpool
Features
The amount of threads is variable, and all states are deterministic. A job will either pass, fail, or halt. This allows the pool to gracefully shut down or quit abruptly without zombies or runaway processes.
Usage
Clients need at least 2 files. The file that houses the main event loop, and the job file. Jobs are added to the queue by referencing the file name.
Basic example (Main.js)
// create a new pool. Pass options to configure the initial state.
const pool = new Pool({threads: 8});
// add a job to the queue
pool.add(path.resolve(__dirname, 'jobs/findRandomNumber.js'));
// process all jobs in queue and listen for more.
pool.start()
// jobs can be added while pool is running
pool.add(path.resolve(__dirname, 'jobs/findRandomNumber.js'));
// stop the pool
pool.stop()
Basic example (Job.js)
const {parentPort, workerData} = require("worker_threads");
// Run anything. Once the process terminates, then
// the pool will take another item from the queue.
// Calling parentPort.close(); is like resolving a promise
// but it is not required as long as the program terminates normally.
const interval = setInterval(() => {
if (Math.random() > 0.8) {
parentPort.postMessage("Found good number")
clearInterval(interval) // very important!
parentPort.close(); // optional
}
}, 1000)
See the difference
Each terminal window is processing the same set of jobs. From left to right, the programs use 1, 8, and 256 workers. Threads increase memory usage, but the benefits are worth it!
Contributions
Please use reasonable coding standards and write a test for everything you change. There should be a test for single-threaded, average-threaded (8 threads), and stress-threaded (256+ threads).
License
MIT