我已将我的应用程序迁移到使用模块而不是后端。为此,我按照此页面上的说明进行操作:https ://developers.google.com/appengine/docs/python/modules/
但是,由于某种原因,当我转到 App Engine 仪表板,然后转到管理 > 应用程序设置时,以下通知显示在性能下:
Some performance settings must be changed via Module configuration files. See the Modules documentation for more information
通知中包含一个链接,该链接指向我在上面发布的页面。
我的 app.yaml 的顶部如下所示(因此应该采用默认设置):
application: myapp
version: uno
runtime: python27
api_version: 1
threadsafe: true
我的模块顶部如下所示:
application: myapp
module: tasks
version: uno
runtime: python27
api_version: 1
threadsafe: true
instance_class: B4
basic_scaling:
max_instances: 1
idle_timeout: 10m
通知指的是哪些性能设置?