我在Amazon Web Services中使用Lambda函数发现了一种奇怪的行为。
我使用的是Node 4.3和Mongoose 4.4.17
这个想法是测试和玩Lambda的功能。
我制作了一个简单的模型,并将其存储在Ec2实例中。代码工作正常,直到我尝试关闭连接。我知道,更好的做法说'不要关闭你的联系,让游泳池处理。"嗯,这适用于普通的应用程序,但Lambda是一个无状态功能,所以如果我不关闭连接,这将保持打开,消耗资源。当你每秒有数千个请求时,这可能会非常糟糕。
所以,这是我的代码。
'use strict';
let mongoose = require('mongoose');
//I add this options, because this close my connections
//faster than the 30 min by default
let options = { server: { socketOptions: { keepAlive: 30000, connectTimeoutMS: 30000 } }};
let db = mongoose.createConnection('mongodb://myInternalServerEC2:27017/myDB', options);
let Schema = require('mongoose').Schema;
let TempSchema =new Schema({name:{type:String,required:true}});
//This is a copy paste from an another project,
//but i can remove, but i don't think this has nothing
//with my problem.
personSchema.set('autoIndex', false);
personSchema.index({name:1});
let tempDB = db.model('tempcol', TempSchema);
exports.handler = (event, context, callback) => {
tempDB.find(function (err, data) {
if (typeof(data) === 'object' && data.length === 0) {
data = null;
}
if (!err && data !== null) {
callback(null, data);
} else if (!err) {
error = new Error("No data found");
callback(error);
} else {
callback(err);
}
}).populate('_typeId');
};
此代码可以正常运行。
现在......让我们尝试关闭连接。 (哈哈)
我在ifs的任何情况下使用它,在if的结尾,在find函数里面的if之后等等。
db.close();
callback(null, data);
mongoose.disconnect();
callback('Some error');
//This finish inside the find function
finish(db, function(){
callback(error, data);
});
// A finish function with a callback,
// so i can call the parent callback
function finish(db, cb){
db.close(function(){
cb();
});
}
在每一个案例中。 Lambda函数永远不会返回错误,只返回NULL。
任何人都有一些线索为什么Lambda中的这种行为?在本地模式下,此行为从未发生在我之前。
如果我删除了close指令,lambda函数会从Mongo服务器返回数据
事先提出
答案 0 :(得分:6)
我发现了问题。
问题在于背景。和回调。我更改代码以在处理程序中包含createConnection事件。
https://aws.amazon.com/es/blogs/compute/getting-nodejs-and-lambda-to-play-nicely/
此代码有效。
'use strict';
let mongoose = require('mongoose');
let options = { server: { socketOptions: { keepAlive: 30000, connectTimeoutMS: 30000 } }};
let Schema = require('mongoose').Schema;
let TempSchema =new Schema({name:{type:String,required:true}});
TempSchema.set('autoIndex', false);
TempSchema.index({name:1});
exports.handler = (event, context) => {
let db = mongoose.createConnection('mongodb://myInternalServerEC2:27017/myDB', options);
let tempDB = db.model('tempcol', TempSchema);
function closeBD(cbk){
console.log("Close BD");
db.close(function(){
cbk();
});
}
tempDB.find(function (err, data) {
if (typeof(data) === 'object' && data.length === 0) {
data = null;
}
if (!err && data !== null) {
context.succeed(data);
} else if (!err) {
let error = new Error("No data found");
context.fail(error);
} else {
context.fail(err);
}
closeBD(function(){
context.done();
});
});
};
希望有人发现这个有用。