SQS batch middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda
Middleware for handling partially failed SQS batches.
To install this middleware you can use NPM:
npm install --save @middy/sqs-partial-batch-failure
AwsClient
(object) (defaultAWS.SQS
): AWS.SQS class constructor (e.g. that has been instrumented with AWS XRay). Must be fromaws-sdk
v2.awsClientOptions
(object) (optional): Options to pass to AWS.SQS class constructor.awsClientAssumeRole
(string) (optional): Internal key where role tokens are stored. See @middy/sts on to set this.awsClientCapture
(function) (optional): Enable XRay by passingcaptureAWSClient
fromaws-xray-sdk
in.disablePrefetch
(boolean) (defaultfalse
): On cold start requests will trigger early if they can. SettingawsClientAssumeRole
disables prefetch.
NOTES:
- Lambda is required to have IAM permission for
sqs:DeleteMessage
import middy from '@middy/core'
import sqsBatch from '@middy/sqs-partial-batch-failure'
const baseHandler = (event, context) => {
const recordPromises = event.Records.map(async (record, index) => {
/* Custom message processing logic */
return record
})
return Promise.allSettled(recordPromises)
}
const handler = middy(baseHandler)
.use(sqsBatch())
For more documentation and examples, refers to the main Middy monorepo on GitHub or Middy official website.
Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.
Licensed under MIT License. Copyright (c) 2017-2021 Luciano Mammino, will Farrell, and the Middy team.