Cloud Functions for Firebase killed due to memory limit exceeded

前端 未结 10 1786
天涯浪人
天涯浪人 2021-01-31 01:53

I keep getting a sporadic error from Cloud Functions for Firebase when converting a relatively small image (2mb). When successful, the function only takes about 2000ms or less t

10条回答
  •  长情又很酷
    2021-01-31 02:40

    The latest firebase deploy command does overwrite the memory allocation to default 256MB and timeout up to 60s.

    Alternatively , to specify the desired memory allocation and maximum timeout , I use gcloud command such as:

    gcloud beta functions deploy YourFunctionName --memory=2048MB --timeout=540s

    Other options, please refer to:

    https://cloud.google.com/sdk/gcloud/reference/beta/functions/deploy

提交回复
热议问题