Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
24answers
13k views

Delete Amazon S3 buckets?

I've been interacting with Amazon S3 through S3Fox and I can't seem to delete my buckets. I select a bucket, hit delete, confirm the delete in a popup, and... nothing happens. Is there another tool ...
6
votes
3answers
377 views

Pre-allocating buckets in a C++ unordered_map

I'm using the unordered_map from gnu++0x to store a huge amount of data. I want to pre-allocate space for the large number of elements, since I can bound the total space used. What I would like to be ...
2
votes
1answer
109 views

Faceting on distance in solr- how to generate links that search withing a given range of distance

It is fairly simple to generate facets for ranges or 'buckets' of distance in Solr: http://wiki.apache.org/solr/SpatialSearch#How_to_facet_by_distance What isnt described is how to generate the links ...
2
votes
2answers
184 views

C#: Seeking fast datastructure to add pixels to a partitioned HSB histogram

In my application I read RGB pixel values from several images using fast unmanaged code and then convert them to HSB colors. Now I'd like to build an HSB histogram using the following partitions: ...
2
votes
1answer
137 views

Syncronizing S3 buckets

I have a S3 bucket that contains ~40 gigs of files - these files will be served via a production server We also have a staging server which needs a subset (if not all) the files in the production ...
1
vote
2answers
33 views

MYSQL Bucketing issue with my query

I'm attempting to bucket rates in a user defineable range. The input from the user is a simple set of instructions about the buckets, but I can't get the SQL right. Here's what I have SELECT ...
1
vote
1answer
148 views

Amazon web services S3 and EC2

I can set up my EC2 instances so that certain users other than myself are allowed to SSH in. Is there anyway of achieving a similar situation with S3 in giving certain users access to buckets without ...
1
vote
1answer
404 views

Find S3 Bucket Owner

If there is a button that I have read/write access on from my AWS account, is there any way to get the CanonicalUser id of the owner? Reading the ACL Policy seems to be impossible unless you are the ...
0
votes
1answer
127 views

Java Bucketing of Data

I have a set of records(say 1000) residing in flat files(.txt). I need to extract them and put them in buckets. Each bucket has an upper cap of 300 records. Which means I'll need 4 buckets. I need to ...
0
votes
1answer
481 views

PHP fopen: failed to open stream: Success + how to save fetched content to a file?

I have programmed a "proxy.php" script (listed below), which would fetch an image specified in the ?img= parameter and print it to the STDOUT. This is needed for my Flash app to circumvent a missing ...
0
votes
1answer
908 views

Custom Solr sorting

I've been asked to do an evaluation of Solr as an alternative for a commercial search engine. The application now has a very particular way of sorting results using something called "buckets". I'll ...