我在使用lambda函数在firebase数据库中保存数据时遇到问题。它超时了。我试图将超时设置为5分钟,理想情况下它不应该执行但仍然超时。
'use strict';
var firebase = require('firebase');
exports.handler = (event, context, callback) => {
console.log(context);
var params = JSON.stringify(event);
var config = {
apiKey: "SECRETAPIKEY",
authDomain: "myapplication.firebaseapp.com",
databaseURL: "https://myapplication.firebaseio.com",
storageBucket: "myapplication.appspot.com",
messagingSenderId: "102938102938123"
};
if(firebase.apps.length === 0) { // <---Important!!! In lambda, it will cause double initialization.
firebase.initializeApp(config);
}
var db = firebase.database();
var postData = {
username: "test",
email: "test@mail.com"
};
// Get a key for a new Post.
var newPostKey = firebase.database().ref().child('posts').push().key;
// Write the new post's data simultaneously in the posts list and the user's post list.
var updates = {};
updates['/posts/' + newPostKey] = postData;
callback(null, {"Hello": firebase.database().ref().update(updates)}); // SUCCESS with message
};
上面的代码会将数据保存在firebase中,但会超时。
如果我按照Link中的说明使用 context.callbackWaitsForEmptyEventLoop = false ,它不会超时,但数据不会被保存。
请告诉我如何解决此问题。云观察中没有有用的信息。
还有一件事,如果我使用rest api for firebase来保存数据,那就可以了。
答案 0 :(得分:3)
问题在于你的回调函数
callback(null, {"Hello": firebase.database().ref().update(updates)}); // SUCCESS with message
在Firebase进行更新之前调用。
您应该将回调函数放在Firebase更新回调中,而不是当前的回调:
firebase.database().ref().update(updates, function (err) {
// your processing code here
callback(null, {<data to send back>});
})