Tagged Questions
4
votes
4answers
2k views
Amazon SimpleDB Woes: Implementing counter attributes
Long story short, I'm rewriting a piece of a system and am looking for a way to store some hit counters in AWS SimpleDB.
For those of you not familiar with SimpleDB, the (main) problem with storing ...
3
votes
2answers
668 views
Integrating Django with Amazon's Database 'SimpleDB'
Can somebody guide me to develop a django app with SimpleDB(Amazon's Database) as its database. I couldnt find any tutorials on searching. Can somebody help me by explaining the process involved in ...
2
votes
2answers
441 views
SimpleDB: Insert item only if it doesn't already exist
I'd like to add a new item to a Amazon SimpleDB domain only if there isn't already another item with the same item name.
I know how to do it for an attribute. But I want the item name to be checked ...
1
vote
1answer
93 views
Amazon SimpleDB on scale
I am thinking of using amazon Simpledb as a queue to take some load off of my webservices. The requests are larger than 64k and i need fifo so i cant use SQS. I am wondering what the concurrent limits ...
1
vote
2answers
210 views
Count(*) on a SimpleDB table of millions of entries
How long should it take to get a response for the statement SELECT count(*) FROM db_name on a SimpleDB table of millions of entries? (currently my table >16M).
Shouldn't there some sort of ...
0
votes
2answers
36 views
Full text search with Amazon Services
I would to move my application to Amazon SimpleDb, since I’m not going to maintain database service on my own. This application lives under heavy load. There are a lot of reads/writes per second. I ...
0
votes
0answers
106 views
Amazon SimpleDB GetAttributes Charset problem
For the following I'm using the REST API as discussed here: http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/SDB_API_GetAttributes.html
When getting the rows of a table ...
0
votes
1answer
349 views
Querying Amazon's Simple DB using boto
I must be doing something really wrong, but I can't find anything on this issue with google. I'm using boto to access SDB on Amazon web services. I can create a new table, add items, and even iterate ...
0
votes
3answers
53 views
Commit protocol
I'm building a REST web service that receives a request and must return "Ok" if the operation was done correctly. How could I deal with the possibility of the loose of the connection while returning ...