Tagged Questions
The bucket tag has no wiki summary.
7
votes
5answers
491 views
Storing a bucket of numbers in an efficient data structure
I have a buckets of numbers e.g. - 1 to 4, 5 to 15, 16 to 21, 22 to 34,....
I have roughly 600,000 such buckets. The range of numbers that fall in each of the bucket varies. I need to store these ...
4
votes
1answer
535 views
What is meant by 'bucket-size' of queue in the google app engine?
Google app engine task queues have configuration as (example)
<queue>
<name>mail-queue</name>
<rate>5/m</rate>
<bucket-size>10</bucket-size>
...
3
votes
2answers
71 views
Is there a way to skip empty buckets during bucket sort?
Counting sort is kind of a bucket sort. Let's assume we're using it like this:
Let A be the array to sort
Let k be the max element
Let bucket[] be an array of buckets
Let each bucket be a linked ...
3
votes
2answers
649 views
S3 policy limiting access to only one bucket (listing included)
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 to the images.mysite.com bucket to ...
3
votes
1answer
888 views
amazon S3 bucket policy - restricting access by referer BUT not restricting if urls are generated via query string authentication
I have the following bucket policy set on my bucket:
{
"Version": "2008-10-17",
"Id": "My access policy",
"Statement": [
{
"Sid": "Allow only requests from our site",
"Effect": "Allow",
...
3
votes
3answers
897 views
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 ...
3
votes
3answers
1k views
how to delete files from amazon s3 bucket?
i need to write a code in python that will delete the required file from the amazon s3 bucket, i am able to make connections to the amazon s3 bucket and also able to save files, i just want to know ...
3
votes
1answer
533 views
Amazon S3 security credentials per bucket
I was wondering if it was possible to generate security credentials per individual Amazon S3 bucket. I am working with a developer and would like to grant him access only to the bucket we are working ...
3
votes
3answers
2k views
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 ...
3
votes
4answers
3k views
How do I delete/count objects in a s3 bucket?
So I know this is a common question but there just doesn't seem to be any good answers for it.
I have a bucket with gobs (I have no clue how many) number of files in them. They are all within 2k a ...
2
votes
3answers
115 views
Use XSLT 1.0 to group XML elements into buckets, in order, based on some criteria
Say I had some XML that I wanted to convert to HTML. The XML is divided into ordered sections:
<?xml version="1.0" encoding="utf-8"?>
<root>
<section attr="someCriteria">
...
2
votes
2answers
277 views
riak backup solution for a single bucket
What are your recommendations for solutions that allow backing up [either by streaming or snapshot] a single riak bucket to a file?
2
votes
1answer
580 views
MongoDB GridFS bucket?
I work with MongoDB C# Samus driver.
One of constructors of class MongoDB.GridFS.GridFile has parameter "bucket". When i create GridFile in Java like example i cannot set this "bucket". But i can set ...
2
votes
1answer
139 views
How to calculate axis ticks at a uniform distribution?
Given a data range by its minimum and maximum value, how can one calculate the distribution of buckets on a an axis?
The requirements are:
- The axis ticks shall be evenly distributed (equal size).
- ...
2
votes
2answers
584 views
How do you rename a folder in a bucket on S3?
As simple as it sounds, it seems like an extraordinarily complicated task.
1
vote
1answer
90 views
Cname and Amazon S3 failure
I had a quick question. If you set up a cname for your amazon bucket and lets say your main amazon s3 bucket goes down, does cname you created serve files, in order words does your files get ...
1
vote
1answer
36 views
Oracle Bucketing Values
I am trying to write a query to get counts of values in different ranges.
Let us say my table has a column called 'Name' and another column called 'Value' which is numeric.
The 'Value' column can ...
1
vote
1answer
45 views
why mhy bucket namespace is not shown in amazon consolse but certanly exists?
I have a bucket created since mid 2010. The bucket exists but is empty. Last night the bucked disappeared from the amazon console. The weird thing is that the bucket is visible when I browse using S3 ...
1
vote
2answers
270 views
Is it possible to share a Amazon S3 bucket between Amazon S3 users?
Is it possible to share a bucket between some S3 users ?
I've a S3 account for the user "me@myself.com" who can manage the bucket "my_bucket".
Can I share this bucket with the S3 users ...
1
vote
1answer
168 views
Android bucket exact sizes: what is small, medium etc in pixel dimensions
I understand that android has a range of supported screen buckets and the approximate size can be found here http://developer.android.com/guide/practices/screens_support.html#range.
What I want is ...
1
vote
2answers
326 views
Leaky bucket problem help?
I'm trying to review for my final and I'm going over example problems given to me by my professor. Can anyone explain to me the concept of how leaky bucket works. Also Here's a review problem my ...
1
vote
1answer
176 views
s3 Bucket Policy Malformed error
The following bucket policy is returning a malformed error:
{
"Version": "2008-10-17",
"Id":"S3Policy",
"Statement":[
{
"Sid":"1",
"Effect": "Allow",
"Principal": {
"AWS": ["AWSID"]
},
"Action": ...
1
vote
1answer
954 views
Token Bucket or Leaking Bucket for messages
I am trying to limit my application send rate to 900kbps but the problem is that the protocol I use is message oriented and the messages have very different sizes. I can have messages from 40 bytes ...
0
votes
1answer
14 views
S3 Buckets: Is looping over all the files and adding it up the only way to get the size of a bucket?
I have an S3 bucket and I'm using the S3 gem in rails.
I wouldn't mind checking the size of bucket every now and again.
Is the only way to do this loop over all the files in a bucket and add them ...
0
votes
1answer
36 views
Is it possible to add files to Amazon S3 buckets using web URL as source?
I am trying to load one of my S3 buckets.
File i am trying to load is huge tarball on the web, I don't want to download file on my disk and then again start uploading it to S3 bucket.
is there any ...
0
votes
0answers
28 views
bucket data into ntiles mysql
I am trying to do a standard bucketing of data in mysql: split the data along some characteristic into N buckets and assign the bucket number to each entry. The entries consist of date, permno and ...
0
votes
1answer
48 views
Bucket index in Bucket Sort
I'm trying to improve my bucket sort for large number over 10000.I'm not quite sure, why my code isn't performing well on large numbers.
My Bucket Sort algorithm for array of size n:
Create array of ...
0
votes
4answers
139 views
C bucket of strings
I have an assignment to complete . It says I have to read a file which contains 3 millions of strings.
I have to read the file and build a structure to hold the strings. This system must be able to ...
0
votes
1answer
96 views
s3- boto- list files within a bucket by upload time
I need to download every hour 100 newest files from s3 server.
bucketList = bucket.list(PREFIX)
The code above creates list of the files but it is not depend on the uploading time of the files, ...
0
votes
0answers
47 views
Amazon s3 GetObjectRequest inside folder Android
I am trying to pull a bunch of jpgs off a folder in my bucket on S3. How do I specify what folder I pull it out of? If i try "domain\folder" I get an error
Invalid escape sequence (valid ones are ...
0
votes
1answer
115 views
Boto (Python)- reversed bucket list
Does anyone know how to get reversed bucket list.
bucketList = self.bucket.list(PREFIX)
bucketList.reverse()
does not work.
Thanks,
Ron.
0
votes
1answer
27 views
Is there a problem with sticking huge amounts of files in a single S3 bucket?
I have a huge amount (700,000+) of files (about 50kb on avg) I am going to store on S3. I am not sure if I should stick them all in one bucket (which is fine as far as I am concerned), or split them ...
0
votes
1answer
73 views
s3 connect to external bucket java
I want to connect to external bucket using s3 service like this tutorial: How to work with external buckets
"cccc": name of my external bucket
I have such code:
String accessKey="XXX"
static String ...
0
votes
4answers
143 views
how can i hash strings into a specific number of buckets
I'm trying to come up with an algorithm to hash a string into a specific number of buckets but haven't had any luck coming up with ideas on how to do this?
I have a list of strings like this:
a.jpg
...
0
votes
0answers
32 views
Dynamic Table Bucketing
I've scoured the net, but I can't find a solution that quite solves my current problem. I want the user to be able to group table rows based on the values of columns. They should be collapsible, too.
...
0
votes
3answers
85 views
What is the most efficient way to sort a collection of items into buckets?
I have an array of arbitrary hashes, with an element of the hash an integer (call it 'id'). I want to sort these hashes into a number of buckets (constant over the array), where each bucket is an ...
0
votes
1answer
85 views
how to group records into bucket based on the timestamp?
i have a list of entries from the logs:
15:38:52.363 1031
15:41:06.347 1259
15:41:06.597 1171
15:48:44.115 1588
15:48:44.125 1366
15:48:44.125 1132
15:53:14.525 1348
15:53:15.121 1553
15:53:15.181 ...
0
votes
2answers
1k views
Java Bucket Sort on Strings
I can't figure out what would be the best way to use Bucket Sort to sort a list of strings that will always be the same length.
An algorithm would look like this:
For the last character position ...
0
votes
1answer
121 views
How can I get last transaction on S3 bucket?
Am a beginner of S3 AWS SDK. and getting problem in my project.
I want to get uploaded or downloaded size of file which is currently uploaded. Actually the functionality of my application is that it ...
0
votes
2answers
1k views
Bucket sort code help
I have three questions about the following code;
static void funct(int[] list) {
final int N = 20;
java.util.ArrayList[] buckets = new java.util.ArrayList[N];
for(int i = 0; i< ...