Hello Karl, You seem to indicate that the outage is a one-time event, and that there is no other similar occurrence as yet. If this is so, to prevent similar unwanted events in future, you may configure your app for health checks, in detail. For reference, the "Configuring your App with app.yaml" should prove of great help. In your app.yaml, you can specify either liveness check (choosing appropriate parameter values):
liveness_check: path: "/liveness_check" check_interval_sec: 30 timeout_sec: 4 failure_threshold: 2 success_threshold: 2 or readiness check: readiness_check: path: "/readiness_check" check_interval_sec: 5 timeout_sec: 4 failure_threshold: 2 success_threshold: 2 app_start_timeout_sec: 300 It is worthwhile noting that the usual way of specifying PHP for you app is: runtime: php //This setting is required. It is the name of the App Engine language runtime used by this application. To specify PHP, use php env: flex You app uses: runtime: custom , by contrast. You may also switch to automatic scaling from manual, and one only instance. If this makes a difference in your app's behavior, the information would help us with debugging. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/7111b9c0-7cd4-432b-a82d-ad667fe04bb9%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
