如何向GAE添加第二个模块?

时间:2016-03-21 10:37:16

标签: python google-app-engine

我已按照文档为我现有的默认F1实例创建了一个额外的B2模块。

app.yaml(默认实例)

application: myapp-uat
version: 1-7-0
runtime: python27
api_version: 1
instance_class: F1
automatic_scaling:
  max_idle_instances: 2
  max_pending_latency: 1s
threadsafe: true

- url: .*
  script: run.myapp.app

和新模块:

application: myapp-uat
module: backend
version: 1.0.0
runtime: python27
api_version: 1
threadsafe: true

instance_class: B2
manual_scaling:
  instances: 1

- url: /generator
  script: run.myapp.app
  login: admin

我已经像这样更新了应用程序:

appcfg.py update src app.yaml backend.yaml

然而,在仪表板中查看我的模块,我只看到默认实例。这里的事情并不恰当。

enter image description here

1 个答案:

答案 0 :(得分:0)

好的我做了一些愚蠢的话。正确的方法是:

appcfg.py update src/app.yaml src/backend.yaml

最后但并非最不重要的是需要调用调度:

appcfg.py update_dispatch src