Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the maximum size of a bucket on Google Cloud Storage? When should I use multiple buckets for one web app?

I'm working on a web app where users can sign up to a service and then upload things to a Google Cloud Storage bucket.

As I would like the app to scale to thousands of users I was thinking that I probably need to dynamically create new buckets at some point. However, having consulted the google documentation I didn't find the maximum size a bucket can reach and I don't even know whether it is necessary to create new buckets to "scale out".

Any advice on these issues would be appreciated.

Kind regards, w34

like image 270
werner34 Avatar asked Dec 06 '22 23:12

werner34


1 Answers

There's no size limit for a bucket, the only limit you have is 5TB maximum size per uploaded file.

You can use multiple buckets not mainly for scalability but for access rights management and to structure your data

like image 133
radia Avatar answered Apr 30 '23 01:04

radia