我们能够在index.js导出声明中指定最大实例吗?
https://cloud.google.com/functions/docs/max-instances
例如这个
exports.myFunction = functions.region(MY_REGION).https.onCall((data, context) => {
});
这似乎是一个神奇的配置:
functions
.runWith({ maxInstances: 1 })
...
请参阅:https://github.com/firebase/firebase-functions/pull/624