Serverless burst-compute implementation for AWS, using only native AWS services.
As seen in the AWS Architecture Blog.
For embarassingly parallel workloads, N items may be trivially processed by T threads. Given N items, and a batchSize (the maximum number of items to be processed by a single process in serial), we divide the work into N/batchSize batches and invoke that many user-provided worker Lambdas. When all the worker functions are done, the results are combined by the user-provided combiner Lambda.
In the diagram below, the code you write is indicated by the blue lambda icons.
Here's how it works, step-by-step:
- You define a worker function and a combiner function
 - Launch your burst compute job by calling the dispatch function with a range of items to process
 - The dispatcher partitions the work into batches and starts an AWS Step Function that implements a map-reduce workflow.
 - The Step Function maps all the batches to workers, where each worker is given a range of inputs, computes the results for those inputs and then sends them to another workflow task that persists these results to a DynamoDB table.
 - When all wotkers complete and their results are persisted to the database, the Step Function invokes the combiner that reads all outputs from the DynamoDB table and aggregates them into the final result.
 - The Step Function also monitors for a timeout and terminates the process if the time configured time limit is reached.
 
You need Node.js 20.x or later in your path, then:
npm installFollow the build instructions above before attempting to deploy.
Deployment will create all the necessary AWS services, including Lambda functions, DynamoDB tables, and Step Functions. To deploy this framework to your AWS account, you must have the AWS CLI configured.
To deploy to the dev stage:
npm run sls -- deployThis will create an application stack named janelia-burst-compute-dev.
To deploy to a different stage (e.g. "prod") and a different organization (the default organtization is 'janelia'), add a stage and an org argument:
npm run sls -- deploy -s prod --org myorgThis will create an application stack named
myorg-burst-compute-dev
- Create worker and combiner functions which follow the input/output specification defined in the Interfaces document.
 - Invoke the dispatch function to start a burst job.
 
