我正在使用Cloud Run + Cloud Firestore构建一个基于Flask的简单应用程序。有一种方法可以带来大量数据,并且日志显示此错误:
`Memory limit of 244M exceeded with 248M used. Consider increasing the memory limit, see https://cloud.google.com/run/docs/configuring/memory-limits`
如何增加cloudbuild.yaml中的内存限制?我们的YAML文件包含以下内容:
# cloudbuild.yaml
steps:
# build & push the container image
- name: "gcr.io/kaniko-project/executor:latest"
args: ["--cache=true", "--cache-ttl=48h", "--destination=gcr.io/$PROJECT_ID/todo:latest"]
# Deploy container image to Cloud Run
- name: "gcr.io/cloud-builders/gcloud"
args: ['beta', 'run', 'deploy', 'todo', '--image', 'gcr.io/$PROJECT_ID/todo:latest', '--region', 'us-central1', '--allow-unauthenticated', '--platform', 'managed']
谢谢
答案 0 :(得分:6)
在最后一步的参数中,添加'--memory', '512Mi'
size的格式是固定或浮点数,后跟一个单位:G,M或K,分别对应于千兆字节,兆字节或千字节,或使用2的幂形式等效:Gi,Mi, Ki分别对应于gibibyte,mebibyte或kibibyte。