我正在尝试查找此处提到的效果设置[https://cloud.google.com/appengine/docs/adminconsole/performancesettings]
它描述了一个可以在控制台中调整应用引擎性能设置的位置。 (我想在我的app引擎项目上运行一个空闲实例。)
这似乎是在描述旧的开发者控制台。
我尝试使用https://appengine.google.com/a/projectName访问此页面,但似乎我只能访问新控制台。
是否完全删除了性能设置,或者新控制台中是否有某些地方我可以更改这些设置?
谢谢, 森
答案 0 :(得分:3)
旧的开发者控制台网址是:
https://appengine.google.com/dashboard?app_id=s~[PROJECT_NAME]
在App Engine模块中配置性能设置。更多详情请访问:https://cloud.google.com/appengine/docs/python/modules/#automatic_scaling_1
答案 1 :(得分:3)
无论您使用哪个控制台,这些性能设置都是控制台中的过去。
模块的引入已将此配置移至模块yaml文件中的条目。 EG:
application: sample
module: my-module
version: uno
runtime: python27
instance_class: F1
automatic_scaling:
min_idle_instances: 1
max_idle_instances: automatic # default value
min_pending_latency: automatic # default value
max_pending_latency: 30ms
应用配置:https://cloud.google.com/appengine/docs/python/config/appconfig
模块:https://cloud.google.com/appengine/docs/python/modules/#Python_Instance_scaling_and_class