Questions tagged [bucket]

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.

783 questions
147
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,651
  • 3
  • 12
  • 5
125
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,057
  • 5
  • 26
  • 45
104
votes
16 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,209
  • 2
  • 15
  • 16
53
votes
3 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
  • 533
  • 1
  • 4
  • 4
47
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
  • 471
  • 1
  • 4
  • 4
39
votes
4 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
  • 857
  • 1
  • 6
  • 14
32
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,133
  • 1
  • 11
  • 17
28
votes
5 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
  • 1,936
  • 6
  • 32
  • 47
26
votes
3 answers

Why Amazon S3 bucket name must be the same as website name when hosting a static website

I want to host a static website on S3 , i.e. abcd.com. It requires a bucket name the same as abcd.com. Then I found abcd.com had been occupied by other people. So that's my question, why bucket name must be the same as the website name? For there…
Xiaoping Shen
  • 269
  • 3
  • 3
24
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
  • 417
  • 1
  • 3
  • 9
22
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
  • 9,585
  • 4
  • 26
  • 43
21
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,763
  • 12
  • 55
  • 81
20
votes
8 answers

How can I make a S3 bucket public (the amazon example policy doesn't work)?

Amazon provides an example for Granting Permission to an Anonymous User as follows (see Example Cases for Amazon S3 Bucket Policies): { "Version": "2008-10-17", "Statement": [ { "Sid": "AddPerm", "Effect":…
GoodGets
  • 1,759
  • 3
  • 16
  • 21
20
votes
4 answers

s3 Policy has invalid action - s3:ListAllMyBuckets

I'm trying these policy through console.aws.amazon.com on my buckets: { "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetBucketLocation", …
zdev
  • 375
  • 1
  • 3
  • 9
19
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
  • 193
  • 1
  • 7
1
2 3
52 53