Google 应用引擎;是否可以在运行时更改缩放配置而不重新部署应用程序?

Google App Engine; is it possible to change scaling configuration at runtime without redeploying the app?

对于 Google App Engine 上部署的应用程序,是否可以在运行时更改缩放配置而无需重新部署应用程序?

更改 appengine-web.xml 并重新部署是一种选择,但想知道是否可以通过控制台完成此操作。

目前是否无法在不重新部署 module/service 的情况下更改 appengine-web.xmlapp.yaml 的缩放配置。

运行时对缩放的最大控制是使用 ModulesService. With this, one can determine the number of instances currently running of a given module-version and can start/stop a given module-version using the startVersion and stopVersion 方法。尽管非常有限,但您还是获得了一些控制权。

如果 appengine-web.xml/app.yaml 运行时配置是您希望实现的一项功能,请随时在 App Engine public issue tracker 上提交功能请求,提供全面的业务案例。