diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2021-01-25 10:30:23 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2021-01-27 14:45:30 +0100 |
| commit | a57db36fe48aa500618c2eac3b38c27afe6d290f (patch) | |
| tree | 96e58154a283d13217bcc9deebb31df50c61ead0 | |
| parent | f76460dd521f8c08631488a0ef21ac01bd9c9f41 (diff) | |
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
| -rw-r--r-- | dashboard/app/app.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
