从节点包函数调用Lambda

时间:2016-07-27 18:59:09

标签: node.js aws-lambda

我有一个Lambda函数,用于导入具有常用功能的节点包。 Lambda 1将消息放入SQS,Lambda 2执行错误记录。其中一个共享函数调用Lambda 2,但第二次调用时出现错误。

Lambda 1:

exports.handler = function (event, context) {
  var pnmacCommon = require('./pnmacCommon.js'); //loading node package
  try {
    // this part omitted for space
    var aws = require('aws-sdk');
    var sqs = new aws.SQS({ region : 'us-west-2' });
    var params = {
      MessageBody: JSON.stringify(event),
      QueueUrl: '[url]'
    };
    sqs.sendMessage(params, function(err,data){
      if(err) {
        console.log('error:',"FAIL Send Message: " + err);
        context.done(err, "ERROR Put SQS");  // ERROR with message
        pnmacCommon.SvtLogErrorToElmah(application, "FAIL Send Message: " + err, context);
      }else{
        console.log('Message Sent:', queueUrl);
        console.log('data:',data.MessageId);
        context.done(null,'');  // SUCCESS 
      }
    }
  });
}
catch (error) {
  pnmacCommon.SvtLogErrorToElmah(application, 'SVTMessageBus_Client' +  error, context);
  context.done(error, "ERROR put SQS");
}

pnmacCommon.js:

var SvtLogErrorToElmah = function (application, error, context) {
  console.log("SvtLogErrorToElmah=" + JSON.stringify(error, null, 2));
  // this part omitted for space
  var aws = require('aws-sdk');
  var lambda = new aws.Lambda({region: 'us-west-2' });
  lambda.invoke({
    FunctionName: "SVTExceptionLogger",
    Payload: JSON.stringify(message, null, 2)
  }, function (error2, data) {
    if (error2) {
      context.fail(error2);
    } else {
      context.fail(error);
  });
  context.done(null, message);
}
module.exports.SvtLogErrorToElmah = SvtLogErrorToElmah;

在Cloudwatch中,我可以看到SvtLogErrorToElmah函数被调用,但在尝试调用第二个Lambda时失败。错误消息为TypeError: lambda.invoke is not a function

有什么想法吗?提前谢谢。

2 个答案:

答案 0 :(得分:0)

事实证明这是变量范围的问题。在共享函数中,我们重用变量名aws。一旦我将其更改为其他名称,问题就消失了。

答案 1 :(得分:0)

我遇到了同样的错误,对我而言,aws-sdk版本的更新解决了这个问题。

更新 package.json [aws-sdk version]

old('TypeError:lambda.invoke不是函数')

"dependencies": {
    "aws-sdk": "^2.1.17"
}

到(修正错误)

"dependencies": {
    "aws-sdk": "^2.18.0"
}