Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a max limit of buckets that a Google Cloud Storage project can have?

Amazon S3 has a limit of 100 buckets per account: http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html

Does Google Cloud Storage have any such limits? I cannot find any mention of them... but wanted to know before I made a design decision

like image 942
Nick Franceschina Avatar asked Dec 17 '13 16:12

Nick Franceschina


1 Answers

There are no limits on the number of buckets you can create in Google Cloud Storage.

Keep in mind, though, that bucket names are a global namespace, so if you create them programmatically, make sure the names won't conflict with others.

There is, however, a rate limit on how quickly you can create buckets. See the Quotas & limits page.

like image 162
jterrace Avatar answered Oct 06 '22 00:10

jterrace