获取firebase函数实例ID?

据我了解,firebase函数在Google Functions Execution Environment中执行.

这意味着函数在单个实例中执行.根据this document

A new function instance is only started in two cases:

  1. When you deploy your function
  2. When a new function instance is automatically created to scale up to the load, or occasionally to replace an existing instance.

我的问题是:

是否有可能在firebase函数中获取此实例ID?

最佳答案 没有正式公开的实例ID.通常,运行代码的实例无关紧要,并且您的代码不应依赖于在特定实例中运行

如果由于某种原因需要标记特定实例,则可以生成自己的UUID并将其存储在全局变量中.

点赞