如何增加 Google Cloud 运行 中的内存限制?
How to increase the memory limits in Google Cloud Run?
我正在使用 Cloud 运行 + 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']
谢谢
在最后一步的参数中,添加'--memory', '512Mi'
大小的格式是固定或浮点数后跟一个单位:G、M 或 K,分别对应千字节、兆字节或千字节,或者使用等效的二次方:Gi, Mi、Ki分别对应gibibyte、mebibyte、kibibyte。
我正在使用 Cloud 运行 + 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']
谢谢
在最后一步的参数中,添加'--memory', '512Mi'
大小的格式是固定或浮点数后跟一个单位:G、M 或 K,分别对应千字节、兆字节或千字节,或者使用等效的二次方:Gi, Mi、Ki分别对应gibibyte、mebibyte、kibibyte。