From a57db36fe48aa500618c2eac3b38c27afe6d290f Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 25 Jan 2021 10:30:23 +0100 Subject: dashboard/app: switch to f2 app class With the default f1 setting, the app episodically crashes with: Exceeded soft memory limit of 256 MB with 264 MB after servicing 25 requests total. See https://cloud.google.com/appengine/docs/standard/go/config/appref#instance_class --- dashboard/app/app.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard/app/app.yaml b/dashboard/app/app.yaml index 0451503dd..4b6c474b5 100644 --- a/dashboard/app/app.yaml +++ b/dashboard/app/app.yaml @@ -3,6 +3,11 @@ runtime: go111 +# With the default f1 setting, the app episodically crashes with: +# Exceeded soft memory limit of 256 MB with 264 MB after servicing 25 requests total. +# See https://cloud.google.com/appengine/docs/standard/go/config/appref#instance_class +instance_class: f2 + inbound_services: - mail - mail_bounce -- cgit mrf-deployment