在App Engine上处理/ _ah / start和/ _ah / stop请求

时间:2018-08-10 23:04:30

标签: node.js google-app-engine app.yaml

我应该如何处理/_ah/start/_ah/stop的请求?现在他们只得到404。

还有,为什么有时起点和终点相距10分钟,有时又相距1分钟?

app.yaml看起来像这样:

instance_class: B4_1G
basic_scaling:
  max_instances: 11
  idle_timeout: 60m

App Engine logs

1 个答案:

答案 0 :(得分:1)

您可以使用Express处理类似的请求

app.get('/_ah/start', (req, res) => { //rest of the code

关于请求之间的时间为何不同的原因,取决于应用程序的使用情况。您收到/_ah/start when there is the need to start a new instance/_ah/stop的重新启动/停止请求