除了 Google Cloud Functions 中的标准实现之外,是否可以使用 Python 的不同实现?

Is it possible to use different implementation of Python, except of standard one in Gogle Cloud Functions?

我是 Google Cloud Functions 的新手。我想编写一个小型但执行密集型应用程序。我研究了 doc,但不清楚在部署到 Google Cloud Functions 时是否可以使用 PyPy 或 CPython。

在功能上,不能自定义运行时,it is standard给服务。

如果您想对环境进行更多控制,请选择 Cloud Run,无服务器但基于容器,因此您可以在 Dockerbuild 中做您想做的事。

此外,您始终有 1vCPU 专用于具有可定制内存量的进程。使用 Cloud Functions,如果你想拥有 CPU 的全部功能,你必须支付 2GB 的内存。最后,您的流程使用 Cloud 运行 最多可能需要 15 分钟,而使用 Cloud Functions 只需 9 分钟。 如果您想了解更多,我 wrote an article 关于这个