class B1 的 GC App Engine 部署是否闲置,即使它们至少有 1 个实例?
Do GC App Engine deployments of class B1 go idle, even if they have min of 1 instance?
我的 app.yaml
中有以下配置
runtime: nodejs10
manual_scaling:
instances: 1
instance_class: B1
使用此配置,即使我的实例没有收到请求,它也会闲置吗?
我的节点应用程序并不是真正的 https 服务器。它 运行 是基于来自 firestore 数据库的数据的几个作业。我希望它始终 运行 并且想知道这是否可以通过 App Engine
根据App Engine Standard documentation,即使没有工作负载,手动缩放的服务实例也不会关闭:
Manual scaling
Manual scaling specifies the number of instances that continuously run regardless of the load level. This allows tasks such as complex initializations and applications that rely on the state of the memory over time.
但请注意,由于维护任务,实例可能会在某个时候关闭并重新启动。我建议您阅读完整的文档页面,以了解更多关于 how instances are managed 和不同缩放类型的信息。
我的 app.yaml
中有以下配置runtime: nodejs10
manual_scaling:
instances: 1
instance_class: B1
使用此配置,即使我的实例没有收到请求,它也会闲置吗?
我的节点应用程序并不是真正的 https 服务器。它 运行 是基于来自 firestore 数据库的数据的几个作业。我希望它始终 运行 并且想知道这是否可以通过 App Engine
根据App Engine Standard documentation,即使没有工作负载,手动缩放的服务实例也不会关闭:
Manual scaling
Manual scaling specifies the number of instances that continuously run regardless of the load level. This allows tasks such as complex initializations and applications that rely on the state of the memory over time.
但请注意,由于维护任务,实例可能会在某个时候关闭并重新启动。我建议您阅读完整的文档页面,以了解更多关于 how instances are managed 和不同缩放类型的信息。