Node Parallelizer
A NodeJS package for running code in parallel. Initially created to provide multiprocessing in an AWS Lambda function, but it can be used in any NodeJS environment.
Supported parallelizers
- Child Process
- Worker threads
Child Process Parallelizer
This parallelizer is specifically designed for processing hundreds or thousands of records in a single invocation when your code performs both CPU-intensive and I/O-intensive operations.
When you call the runBatch(records)
method in this parallelizer, the package will split the list of records you provide into smaller subsets, and your code will be used to execute each subset in parallel.
It uses the NodeJS child process module behind the scenes.
Worker Threads Parallelizer
This parallelizer is specifically designed for processing hundreds or thousands of records in a single invocation when your code performs CPU-intensive operations.
When you call the runBatch(records)
method in this parallelizer, the package will split the list of records you provide into smaller subsets, and your code will be used to execute each subset in parallel.
It uses the NodeJS worker threads module behind the scenes.
AWS Lambda & Node Parallelizer
This package can detect the number of vCPU cores allocated to your Lambda function and maximize their utilization. By default, it generates one child process/thread per vCPU core, but this setting can be customized to meet your specific requirements. Alternatively, you can manually specify the number of child processes/threads the library creates, regardless of the number of vCPU cores available.
It uses the Lambda function environment /tmp
folder to create the required module that runs in the child.
On the Child Process Parallelizer, when you call the parallelizerFunction
method outside of the Lambda handler function, it will reuse the child processes across the different invocations within a Lambda instance, minimazing the impact of creating child process on every invocation. Furthermore, if the package detects a disconnection of any of the child processes, it will recreate it automatically without affecting the execution.
Installation
To add this package to your dependency list, run:
npm i node-parallelizer --save
Usage
Child Process Parallelizer (I/O-intensive operations or CPU-intensive operations && I/O-intensive operations)
Class instantiation
ChildProcess({ tmpPath = '/tmp', maxParallelization = false, parallelizationPerCPU = 1, debug = false })
Parameters
tmpPath
(String) (Default value: '/tmp'): The path where the module that runs in the child will be created.maxParallelization
(Number|false) (Default value: false): The maximum number of child processes that will be created. If false, it is based on the CPU cores available.parallelizationPerCPU
(Number) (Default value: 1): If the maxParallelization
is set to false
, this parameter defines the amount of processes per CPU.debug
(Boolean) (Default value: false): Enables the internal logs for debuggin purposes.
Main methods
parallelizerFunction({ filePath, processBatchFunctionName })
Parameters
filePath
(String): The absolute path to the file that contains the function that will be executed in parallel.processBatchFunctionName
(String): The name of the function that will be executed in parallel.
runBatch(batch)
Parameters
batch
(Array): The records you want to process in parallel.
Returns (Array): The child processes' responses.
Using child process parallizer in AWS Lambda.
In this example, the repository structure looks like this
src/
handler.js
parallel.js
serverless.yml
package.json
The below snippet represents your Lambda handler
const { ChildProcess } = require("node-parallelizer");
const childProcess = new ChildProcess();
childProcess.parallelizerFunction({ filePath: "/var/task/src/parallel.js", processBatchFunctionName: 'batchProcessor' });
module.exports.handler = async(event) => {
const responses = await childProcess.runBatch(event.Records);
console.log(responses);
};
Make sure to provide the filePath parameter as an absolute path. In this example, we've included '/var/task/' prefix in the path because Lambda deploys your code within that folder.
The below snippet represents the code you want to run in parallel
const batchProcessor = ({ batch }) => {
return { success: true, count: batch.length }
}
module.exports = { batchProcessor }
Verify that the input signature of your function (in this case, batchProcessor) includes batch as a parameter, as it contains the subset of records that a child process will handle.
Worker Threads Parallelizer (CPU-intensive operations)
Class instantiation
WorkerThreads({ tmpPath = '/tmp', maxParallelization = false, parallelizationPerCPU = 1, debug = false })
Parameters
tmpPath
(String) (Default value: '/tmp'): The path where the module that runs in the thread will be created.maxParallelization
(Number|false) (Default value: false): The maximum number of threads that will be created. If false, it is based on the CPU cores available.parallelizationPerCPU
(Number) (Default value: 1): If the maxParallelization
is set to false
, this parameter defines the amount of threads per CPU.debug
(Boolean) (Default value: false): Enables the internal logs for debuggin purposes.
Main methods
parallelizerFunction({ filePath, processBatchFunctionName })
Parameters
filePath
(String): The absolute path to the file that contains the function that will be executed in parallel.processBatchFunctionName
(String): The name of the function that will be executed in parallel.
runBatch(batch)
Parameters
batch
(Array): The records you want to process in parallel.
Returns (Array): The thread's responses.
Using worker threads parallizer in AWS Lambda.
In this example, the repository structure looks like this
src/
handler.js
parallel.js
serverless.yml
package.json
The below snippet represents your Lambda handler
const { WorkerThreads } = require("node-parallelizer");
const threads = new WorkerThreads();
threads.parallelizerFunction({ filePath: "/var/task/src/parallel.js", processBatchFunctionName: 'batchProcessor' });
module.exports.handler = async(event) => {
const responses = await threads.runBatch(event.Records);
console.log(responses);
};
Make sure to provide the filePath parameter as an absolute path. In this example, we've included '/var/task/' prefix in the path because Lambda deploys your code within that folder.
The below snippet represents the code you want to run in parallel
const batchProcessor = ({ batch }) => {
return { success: true, count: batch.length }
}
module.exports = { batchProcessor }
Verify that the input signature of your function (in this case, batchProcessor) includes batch as a parameter, as it contains the subset of records that a child process will handle.
Performance Benchmark
Child Process
Duration: 1009.49 ms Billed Duration: 1010 ms Memory Size: 3000 MB Max Memory Used: 123 MB
execution time: 41.89
Without Parallelizer
Duration: 1401.17 ms Billed Duration: 1402 ms Memory Size: 3000 MB Max Memory Used: 127 MB
Worker Threads
Duration: 736.82 ms Billed Duration: 737 ms Memory Size: 3000 MB Max Memory Used: 132 MB
Contribution
We welcome contributions to this project. If you are interested in contributing, please feel free to submit a pull request.