I need to invoke aws lambda from another lambda asynchronously. i have a working code for synchronous calls.
exports.handler = (event, context, callback) =&g
That's how I use in Express.js
var express = require("express");
var router = express.Router();
const asyncMiddleware = fn =>
(req, res, next) => {
Promise.resolve(fn(req, res, next))
.catch(next);
};
const invokeLambda = async (params) => {
const data = await lambda.invoke(params).promise();
return JSON.parse(data.Payload);
}
router.get('/test', asyncMiddleware(async (req, res, next) => {
const params = {
FunctionName: SOMETHING_LAMBDA_ARN,
Payload: JSON.stringify(req.body)
};
const result = await invokeLambda(params);
res.send(result);
}));
With reference to Ronginat's answer, instead of wrapping lambda.invoke()
in a Promise, you could directly use lambda.invoke().promise()
and do something like this: (tested in Node.js 12.x)
exports.handler = async (event) => {
const payload = 'hello from lambda 1';
const params = {
FunctionName: 'lambda2',
InvocationType: 'Event',
Payload: JSON.stringify(payload),
};
const LambdaPromise = (params) => lambda.invoke(params).promise();
const responseFromLambda2 = await LambdaPromise(params);
return responseFromLambda2; //this should return {StatusCode: 202, Payload: ''}
};
I was working with the currently latest node.js 8.10 version in AWS Lambda.
The second lambda didn't execute (and the callback function was never called) until i used the async/await mechanism.
So the handler function must be async, and the 'lambda.invoke' call be wrapped with a Promise.
here is my working code:
function invokeLambda2(payload) {
const params = {
FunctionName: 'TestLambda2',
InvocationType: 'Event',
Payload: JSON.stringify(payload)
};
return new Promise((resolve, reject) => {
lambda.invoke(params, (err,data) => {
if (err) {
console.log(err, err.stack);
reject(err);
}
else {
console.log(data);
resolve(data);
}
});
});
}
exports.handler = async (event, context) => {
const payload = {
'message': 'hello from lambda1'
};
await invokeLambda2(payload);
context.done();
};
Please notice that the handler doesn't wait for the second lambda to exit, only for it to be triggered and the callback function being called.
You could also return the Promise from within the handler, don't have to use await with a second function.
No need for any import when working with Promises and async/await, other than:
const AWS = require('aws-sdk');
const lambda = new AWS.Lambda();
I wanted a similar solution as above. Though step functions are now recommended when using multiple lambda functions over lambda.invoke
, I used the following code snippet to asynchronously call two other lambda functions from my base lambda function.
var AWS = require('aws-sdk');
AWS.config.region = 'ap-southeast-1';
var lambda = new AWS.Lambda();
exports.handler = async(event) => {
await invokeLambda(event);
const response = {
statusCode: 200,
body: JSON.stringify('success'),
};
return response;
};
//Invoke Multiple Lambda functions
async function invokeLambda(event) {
const function1 = {
FunctionName: 'dev-test-async-lambda-1',
InvocationType: 'Event',
Payload: JSON.stringify(event)
};
const function2 = {
FunctionName: 'dev-test-async-lambda-2',
InvocationType: 'Event',
Payload: JSON.stringify(event)
};
await lambda.invoke(function1).promise();
await lambda.invoke(function2).promise();
}
Let me know if I can improve this.
Per the Lambda invoke() documentation, you will see that by default the Lambda function is invoked using the RequestResponse
invocation type. To invoke the function asynchronously you need to specify the Event
invocation type, like so:
lambda.invoke({
FunctionName: 'testLambda',
InvocationType: 'Event',
Payload: JSON.stringify(event, null, 2)
},function(err,data){});