什么原因导致 Google Cloud Run 作业失败并出现错误“Killed”?

什么原因导致 Google Cloud Run 作业失败并出现错误“Killed”?

我正在git cloneGoogle Cloud Run 作业中克隆多个存储库(使用),其中一个存储库使 Google Cloud 通过退出 1 终止容器。查看日志:

    {
      insertId: "xxx",
      labels: {
        instanceId: "xxx"
        run.googleapis.com/execution_name: "xxx",
        run.googleapis.com/task_attempt: "0",
        run.googleapis.com/task_index: "0"
      },
      logName: "xxx/run.googleapis.com%2Fstderr",
      receiveTimestamp: "2024-03-13T09:05:28.686787232Z",
      resource: {
        labels: {
          job_name: "xxx",
          location: "xxx",
          project_id: "xxx"
        },
        type: "cloud_run_job"
      },
      textPayload: "Killed",
      timestamp: "2024-03-13T09:05:28.685133Z"
    }

克隆的存储库有 10.828 个文件,大小为 1.8 GB。内存和 CPU 使用率不超过 50%。它发生在 期间。git clone [email protected]:usr/bad_repo.git

我认为它与限制有关但我没有发现任何东西。


重现步骤:

  1. 使用 Bash 脚本创建一个 Docker 容器,并克隆如下存储库:
git clone -q --depth 1 --no-tags --filter=blob:limit=100k [email protected]:supabase/supabase.git
  1. 以以下方式运行此 Docker 容器Cloud Run 作业
  2. 容器将以由 Cloud Run 触发的状态代码 1 退出

所有日志:

在此处输入图片描述

答案1

正如 Roopa M 在评论中所建议的:增加 RAM 是有帮助的,尽管使用量没有激增。

相关内容