友。我有一个Google App引擎网站,它使用Google Compute Engine上的一个模块。它使用具有以下配置的Python标准运行时:
runtime: python27
threadsafe: true
vm: true
manual_scaling:
instances: 1
Machine type: f1-micro (1 vCPU, 0.6 GB memory)
health_check:
enable_health_check: True
check_interval_sec: 5
timeout_sec: 2
unhealthy_threshold: 2
healthy_threshold: 2
restart_threshold: 4
问题是这个实例定期变得“不健康”(它用503 http代码响应)并保持这样大约10到15分钟。即使没有应用程序的流量/访问权限,也会发生这种情况。 4次健康检查失败后,该实例是否应该重启?重启需要15分钟吗?
提前致谢。