Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Developers Console project creation quota

I have created a total of 30 projects in the Google Developers Console, including 23 between 12/23 and 12/27. Most recently, 3 projects were created on 12/27. When I tried to create a 4th project on 12/27, I got the message You have exceeded the quota for project creations per day. It has now been well over 24 hours since then, and I still cannot add new projects.

This same question has gone unanswered (at least) here, here and here.

Is it possible that nobody actually knows what the quota is? Since I have waited more than 24 hours after receiving the message before adding any new projects, and only 3 were added in the 24 hour period prior to that, it would appear that I have triggered something that has longer lasting impact, and isn't just a limit for the current day.

I can live with a ~20 per day limit, but not with a maximum of ~30 projects. Is there another account type I need to have with Google? Does anyone have experience in getting past this or in contacting Google directly for assistance?

like image 978
Chris Ostmo Avatar asked Dec 28 '14 13:12

Chris Ostmo


People also ask

How many GCP projects can you create?

Project limits Once your quota is reached, you can request an increase. If you have less than 30 projects remaining in your quota, you can see the number of projects you have remaining in your quota on the New Project page. For more information, see Managing project quotas.

What is the GCP project quota?

Project quotas protect Google Cloud users from unforeseen spikes in usage. However, as your usage of Google Cloud Platform increases, you can request an increase in your project quota.


2 Answers

So I did ran in to this a few months ago. At that time I did not see a solution. Though when I tried again today that error notice have been updated with a link to a form where you can request a increase of the project quota for your account. This is likely a ongoing roll out at the moment (I don't get this in all my accounts).

Reference it looks like this:enter image description here

You may not see this updated message yet. Any how, the form link is https://support.google.com/code/contact/project_quota_increase. After filling in the form support got in touch pretty much within a day and my quota is now raised.

like image 150
Victor Häggqvist Avatar answered Sep 22 '22 15:09

Victor Häggqvist


This may not be helpful to everyone with this problem, but here's what worked for our needs...

We were creating new projects in the Developers Console for each app so that each would have its own unique sender key for push notifications. What we discovered is that all apps can have the same sender key, as long as the push notification server (AWS SNS in our case) can differentiate the delivery targets by another means, which we're doing by bundle ID when devices register for push. In the end, we didn't need to have unique projects for each app.

It doesn't answer the questions of what the limits are or how to get past them once they've been reached, but it provided the means to the end we were seeking.

like image 28
Chris Ostmo Avatar answered Sep 20 '22 15:09

Chris Ostmo