I'm trying to deploy a Nodejs8, memory intense app on Google App Engine Standard.
This is my app.yaml
:
runtime: nodejs8 resources: cpu: 1 memory_gb: 6 disk_size_gb: 10
This is my deploy command:gcloud app deploy --project=my-project --version=0-0-12
This is the error I get when I try to access the relevant endpoint of the app:Exceeded soft memory limit of 128 MB with 182 MB after servicing 0 requests total. Consider setting a larger instance class in app.yaml.
How come the memory_gb
param is ignored? What do I need to do in order to enlarge the memory of the instances?