"Do not wait for empty event loop" middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda
This middleware sets context.callbackWaitsForEmptyEventLoop
property to false
.
This will prevent Lambda from timing out because of open database connections, etc.
To install this middleware you can use NPM:
npm install --save @middy/do-not-wait-for-empty-event-loop
By default the middleware sets the callbackWaitsForEmptyEventLoop
property to false
only in the before
phase,
meaning you can override it in handler to true
if needed. You can set it in all steps with the options:
runOnBefore
(defaults totrue
) - sets property before running your handlerrunOnAfter
(defaults tofalse
)runOnError
(defaults tofalse
)
import middy from '@middy/core'
import doNotWaitForEmptyEventLoop from '@middy/do-not-wait-for-empty-event-loop'
const handler = middy((event, context) => {
return {}
})
handler.use(doNotWaitForEmptyEventLoop({runOnError: true}))
// When Lambda runs the handler it gets context with callbackWaitsForEmptyEventLoop property set to false
handler(event, context, (_, response) => {
t.is(context.callbackWaitsForEmptyEventLoop,false)
})
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.