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
-1
votes
1 answer
Elastic search java api 1.3 aggreagation - bucket size always zero
I am trying to use elastic search java client here. I tried running this following piece of code using shakespeare example data
final Client client = new TransportClient()
.addTransportAddress(new InetSocketTransportAddress("localhost",…

amrk7
- 1,194
- 5
- 13
- 33
-1
votes
1 answer
Giving access to am IAM account to an S3 bucket
I'm supposed to create a new set of IAM credentials, create a new S3 bucket, and give that IAM account read/write-only access to the S3 bucket.
What is the easiest way of doing this?

George K.
- 2,867
- 4
- 19
- 28
-2
votes
2 answers
How to create new bucketed column from an existing continuous column in SQL?
I have the following my_table in SQL with one numeric column:
Age
---
31
53
52
37
57
19
20
63
59
I want to have a new column in the table with range buckets along the following:
"Young": 0-30
"MidAge": 31-50
"Old": 51-
So the expected result:
Age…

Fredrik
- 411
- 1
- 3
- 14
-2
votes
1 answer
How can I copy all objects from one Amazon S3 bucket to another bucket?
I want to copy my folder/object from one s3 bucket to other. How can I possible to copy?

ashique
- 935
- 2
- 8
- 26
-2
votes
1 answer
Assigning bucket label to value in new column in SQL
I have a table of one column Precipitation levels in Germany called DataStore:
PRCP
5.6
10.3
0
0
3.2
7
and I would like to add another column specifying from which range it belongs to.
for example I want to define the ranges…

Ofek Glick
- 999
- 2
- 9
- 20
-2
votes
1 answer
Ceph: An error occurred (InvalidRange) when calling the CreateBucket operation: Unknown
I'm trying to use the aws s3api command line tool to create an S3 bucket on my Ceph object store. I've previously used this command successfully, and have other Ceph object stores (VMs from the same image) that I can successfully run the command…

Alex
- 23
- 4
-2
votes
1 answer
Bucket SSL / High Bill for Bucket? - Google Cloud
I am hosting a simple static website via Google Bucket right know:
Does the Bill look familiar to you? I am surprised by the high usage numbers.
Does there exist a Hitcounter for GoogleBucket-Websites?
How can I secure my bucket website with SSL?
I…
-2
votes
1 answer
How to change from Gitlab to Bucket
I worked on gitlab, anf now I want to work with Bucket. I couldn't clone the bucket, I don't wanna use Gitlab anymore, so what can I do?

Vortexounet
- 11
- 1
-2
votes
2 answers
How to find the size of each bucket of S3 using boto3
I want to calculate size of every s3 buckets and generate result like this
Bucket_name total size
('bucket_A ', 0)
('Bucket_B', 51090)
This is what I try so far:
import boto3
total_size = 0
s3=boto3.resource('s3')
for mybucket in…

Rockinroll
- 394
- 6
- 11
-2
votes
2 answers
Fastest way to partially sort array of integers with repeating values into buckets
Let's say I have a large unsorted array of integers (C/C++) that mostly repeat a small range of values. For example, if I start with the following array:
{ 0, 3, 3, 3, 0, 1, 1, 1, 3, 2, 2, 3, 0, 1, 1, 1, 2, 2, 2, 2, 0, 0, 1}
I'd like to end up…

Sunny724
- 156
- 2
- 12
-2
votes
1 answer
How to implement Sort Merge Bucketing Map Join?
I would like to join two tables that have one common column and the same number of buckets with same sorting.
Other than that setting do I need to setup any other conditions other than setting up the properties?
set hive.optimize.bucketmapjoin =…
-3
votes
2 answers
What is the etymology of 'bucket' in cloud computing?
Correct me if I am wrong, but I haven't found any explanation out there and in stackoverflow. All I've found was "what it does" not "why it's named like that" .
I get the idea about bucket. Mainly it's for storage of objects in cloud computing.
Is…

Jastria Rahmat
- 776
- 1
- 6
- 27
-3
votes
2 answers
php Api hosted on AWS s3 bucket
I wanna host a php file that retrieve data from a mysql DB how ever aws is not authorizing POST method.
I need to know how can I add the code in PHP knowing I already configured the Bucket policy and CORS

smappy happy
- 13
- 1
-4
votes
1 answer
Desktop Application to upload a txt file to Google Cloud Storage
Well i been searching through the whole internet for something that solves my issue. I have read about the JSON API and Java Client for Cloud Storage but it seems this two apis required to be deployed on Compute engine and App Engine respectively.…

Art Sler
- 1
- 5
-4
votes
1 answer
Bucket number for null key in hashmap
In a hashmap what would be the bucket number of null key? I am Trying to learn internals of hashmap if any one can give me good video tutorials it would be appreciated.

Anandhu
- 57
- 1
- 1
- 10