Google App Engine Error: INVALID_ARGUMENT: The following quotas were exceeded:BACKEND_SERVICES (quota: 5, used: 5 + needed 1)

前端 未结 1 1300
迷失自我
迷失自我 2021-02-19 08:57

I am trying to deploy my node application on Google App Engine Flexible Environment. Previously it was working well but yesterday it starts refusing giving this error:

相关标签:
1条回答
  • 2021-02-19 09:25

    By default, the quota on number of GAE Flex versions you have is 5. A few options to be able to deploy once you hit this limit:

    • Stop GAE Flex versions: if you have running versions that you don't need, you can stop them to free up the backend services being used by them. That can be accomplished by using gcloud or using Cloud Console (go to App Engine => Versions): https://console.cloud.google.com/appengine/versions

    • Delete Backend Services: if you're using backend services directly and don't need them, you could delete them. That can also be done via gcloud or Cloud Console (go to Networking => Load Balancing): https://console.cloud.google.com/networking/loadbalancing/advanced/backendServices/list

    • Quota Increase: Alternatively, you can request a backend service quota increase: https://support.google.com/cloud/answer/6075746?hl=en

    0 讨论(0)
提交回复
热议问题