GCP 大约一个月内没有足够的资源来满足请求

GCP 大约一个月内没有足够的资源来满足请求

到目前为止,我已经尝试启动现有的 GCP VM(该 VM 上连接了 NVIDIA T4 GPU)近一个月了。它之前运行良好,但现在我不断收到错误消息:

The zone '***' does not have enough resources available to fulfill the request. Try a different zone, or try again later."

这表明没有可用的 GPU。

启动另一个区域中带有 GPU 的任何虚拟机也不起作用,也无法启动其他项目中的其他现有虚拟机。但是,启动未连接任何 GPU 的虚拟机却完全正常。

所有证据都表明 GCP 没有任何可用的 GPU,但我无法相信这种情况会持续近一个月。

对此有什么见解吗?

答案1

是的,这个错误表明区域中没有足够的可用资源来启动您的实例。现在很多用户都面临这个问题。

我刚刚能够在 southamerica-east1-c 区域启动一个 T4 附加的 N1-standard-1 实例。

尝试将您的实例移至此区域并在那里启动它。您可以找到说明这里

考虑保留如果您计划让实例长时间运行,则可以使用 GPU,这样您就不会再次遇到此问题。

答案2

遇到了同样的问题。由于资源不足,没有区域让我创建 GPU 机器。但是,我设法创建了一台,尝试了每个有可用 GPU 的区域:

$ for zone in {\
asia-east1-a,\
asia-east1-b,\
asia-east1-c,\
asia-northeast1-a,\
asia-northeast1-c,\
asia-northeast3-b,\
asia-northeast3-c,\
asia-south1-a,\
asia-south1-b,\
asia-southeast1-a,\
asia-southeast1-b,\
asia-southeast1-c,\
asia-southeast2-a,\
asia-southeast2-b,\
asia-southeast2-c,\
australia-southeast1-b,\
australia-southeast1-c,\
europe-west1-b,\
europe-west1-c,\
europe-west1-d,\
europe-west2-a,\
europe-west2-b,\
europe-west3-b,\
europe-west4-a,\
europe-west4-b,\
europe-west4-c,\
northamerica-northeast1-a,\
northamerica-northeast1-b,\
northamerica-northeast1-c,\
southamerica-east1-c,\
us-central1-a,\
us-central1-b,\
us-central1-c,\
us-central1-f,\
us-east1-b,\
us-east1-c,\
us-east1-d,\
us-east4-a,\
us-east4-b,\
us-east4-c,\
us-west1-a,\
us-west1-b,\
us-west2-b,\
us-west2-c,\
us-west4-a,\
us-west4-b\
}; do gcloud compute instances create gpu-machine-$zone --project=xxxx --zone=$zone --machine-type=......; done

相关内容