a bucket is one of several alternative data sinks when data needs to be distributed. The term is used for algorithms, data-structures. Commercial usages include databases and cloud providers.
Questions tagged [bucket]
993 questions
162
votes
22 answers
how to delete files from amazon s3 bucket?
I need to write code in python that will delete the required file from an Amazon s3 bucket. I am able to connect to the Amazon s3 bucket, and also to save files, but how can I delete a file?

Suhail
- 2,847
- 2
- 19
- 16
154
votes
6 answers
How to Configure SSL for Amazon S3 bucket
I am using an Amazon S3 bucket for uploading and downloading of data using my .NET application. Now my question is: I want to access my S3 bucket using SSL. Is it possible to implement SSL for an Amazon s3 bucket?

Syam kumar
- 1,721
- 3
- 12
- 5
144
votes
23 answers
Is there an S3 policy for limiting access to only see/access one bucket?
I have a simple bucket that looks like images.mysite.com on my S3 and other buckets containing backups, etc.
I want to allow a specific user to be able to access the images.mysite.com bucket in order to upload images. However, I DO NOT want him to…

Alex
- 4,367
- 5
- 29
- 45
72
votes
6 answers
AWS S3 Bucket policy editor access denied
I am logged in with the root account trying to give public access to a bucket inline with the instructions for setting up a static s3 web site.
However I get an access denied message when running the bucket policy.
There is no more detail on the…

Philbot
- 723
- 1
- 5
- 4
56
votes
7 answers
How to create a folder in an amazon S3 bucket using terraform
I was able to create a bucket in an amazon S3 using this link.
I used the following code to create a bucket :
resource "aws_s3_bucket" "b" {
bucket = "my_tf_test_bucket"
acl = "private"
}
Now I wanted to create folders inside the bucket,…

cmm user
- 2,426
- 7
- 34
- 48
53
votes
2 answers
What is the difference between bucket sort and radix sort?
Bucket sort and radix sort are close cousins; bucket sort goes from MSD to LSD, while radix sort can go in both "directions" (LSD or MSD). How do both algorithms work, and in particular how do they differ?

Lazarus
- 531
- 1
- 4
- 4
52
votes
5 answers
What exactly is bucket in hashmap?
Recently, in an interview I was asked, what exactly is a bucket in hashmap? Whether it is an array or a arraylist or what?
I got confused. I know hashmaps are backed by arrays. So can I say that bucket is an array with a capacity of 16 in the start…

dgupta3091
- 1,067
- 1
- 7
- 18
39
votes
2 answers
S3 Bucket Policy to make a specific sub folder public and everything else private?
We currently have an S3 bucket policy which makes everything public.
At the moment we a bucket "bucket1" and inside there are numbered sub folders for each entry numbers 01 upwards (e.g. 01, 02, 03) and inside that always a folder called "128".
What…

realdannys
- 1,383
- 1
- 12
- 18
35
votes
3 answers
Why must the Amazon S3 bucket name be the same as website name when hosting a static website
I want to host a static website on S3, i.e. example.com. It requires a bucket name the same as example.com.
Then I found example.com had been occupied by other people.
So that's my question, why bucket name must be the same as the website name? For…

dataalive
- 357
- 3
- 4
29
votes
6 answers
Access denied when put bucket policy on aws s3 bucket with root user (= bucket owner)
I have an AWS root user which I used to create a S3 bucket on Amazon. Now I want to make this bucket public by adding following policy:
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Principal": "*",
"Action":…

Tijl .Reynhout
- 901
- 2
- 9
- 24
26
votes
5 answers
Google GSutil create folder
How can u create a new folder inside a bucket in google cloud storage using the gsutil command?
I tried using the same command in creating bucket but still got an error
gsutil mb -l us-east1 gs://my-awesome-bucket/new_folder/
Thanks!

Bongsky
- 493
- 3
- 12
- 23
26
votes
3 answers
Is there an open-source equivalent to Amazon S3?
Is there an open-source equivalent to the Amazon S3 storage service running under Linux?
For example a bucket-based file system like:
store file -> get unique id
access file by unique id
delete file by unique id
query files by timestamp …

hberg539
- 447
- 1
- 4
- 10
25
votes
4 answers
Amazon S3 is not serving files correctly
I made this site for my friend and I uploaded it to an Amazon S3 bucket (http://ballard26.s3.amazonaws.com/index.html) and when I go to that site the page doesn't load correctly and I have no idea why. Any ideas?
For example, the stylesheet.css…

Alexsander Akers
- 15,967
- 12
- 58
- 83
24
votes
3 answers
Folders not showing up in Bucket storage
So my problem is that a have a few files not showing up in gcsfuse when mounted. I see them in the online console and if I 'ls' with gsutils.
Also, if If I manually create the folder in the bucket, i then can see the files inside it, but I need to…

cupcakearmy
- 377
- 1
- 2
- 9
24
votes
1 answer
What is meant by 'bucket-size' of queue in the google app engine?
Google app engine task queues have configuration as (example)
mail-queue
5/m
10
Here, what does the 'bucket-size' mean? I could not find a comprehensive…

Gopi
- 10,073
- 4
- 31
- 45