Hi is there any version of amazon web services provides unlimited buckets?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. From the S3 documentation:
S3 buckets are expensive (in terms of resources) to create and destroy:
There’s also no good reason to use lots of buckets:
You want a separate space for each of your users to put things. Fine: create a single bucket and give your user-specific information a
<user_id>/prefix. Better yet, put it inusers/<user_id>/, so you can use the same bucket for other non-user-specific things later, or change naming schemes, or anything else you might want.ListObjectsaccepts aprefixparameter (users/<user_id>/), and has special provisions for hierarchical keys that might be relevant.