我有一个运行连接到 Firebase 的小节点脚本的 EC2 实例。奇怪的是,它经常发生在一个小实例上,设置操作会立即执行,但回调函数只会在很久以后(30 秒到 2 分钟之间)才被调用。你明白为什么会这样吗?
console.log('creating');
// Create workspace
rootRef.child('spaces').child(chid).set(req.space, function(error) {
var end = new Date().getTime();
var time = end - start;
console.log('- created', error, time);
});