Tagged Questions

6
votes
2answers
487 views

SimpleDB to ActiveResource. Rails

Im looking for a way to map an ActiveResource to SimpleDB I want to avoid plugins/gems as all I have used are outdated/buggy/not mantained It doesnt seem hard, I wonder if any of you have ...
5
votes
4answers
392 views

Amazon SimpleDB high latency on first request

I'm using SimpleDB in a desktop application (C#, .NET 2.0) and have a problem with high latency. The first time I make a request to the DB (query, insert values - doesn't matter) I get a response ...
5
votes
3answers
262 views

How can I script an alert for when my Amazon Web Service usage goes above a certain amount?

We're using S3, SimpleDB and SQS on quite a complicated project. I'd like to be able to automatically track their usage, to be sure we don't suddenly spend large amounts of money when we didn't ...
4
votes
5answers
1k views

Amazon SimpleDB Javascript interface possible?

I'm checking out amazon simpledb documentation. They mention only server side languages. Is there anyway to insert data into the db directly from the client side without going through a server? If ...
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 ...
3
votes
2answers
293 views

Enumerate keys in Amazon SimpleDB

I'm trying to enumerate keys in Amazon SimpleDB. In SQL, it would be something like: select unique itemName() from domain; I've searched around but didn't find any way to do this. Any help?
2
votes
3answers
223 views

anonymous read with amazon simpledb

I would like to query simpledb directly from the client using javascript. My application is read-heavy and I rather not route the request through my application server. Is it possible to perform a ...
2
votes
2answers
189 views

Any client libraries that implement MVCC over Amazon SimpleDB?

Now that Amazon's SimpleDB implements consistent reads and conditional update/delete it is possible to implement cross-domain transactions using MVCC. Are there any client libraries that provide it?
1
vote
1answer
17 views

Sort / limit order on simple db query

I'm wondering about how a query like the following will work.... select * from survey where Year < '2000' order by Year desc limit 1 My question is, does the limit apply: After the records are ...
1
vote
0answers
22 views

Possible to add a new column to an Amazon SimpleDB domain with a default value?

You can dynamically put a new attribute on a single record in a domain, but that attribute remains null for all other records. Is there an "update * set newattribute='defaultval" style statement that ...
1
vote
1answer
41 views

SimpleDB: Guaranteed to see all item attributes if we see the item? (non-consistent read)

I've just discovered an assumption in my use of SimpleDB. I suspect it's safe but would like other opinions since the docs don't seem to cover it. So say Process 1 stores an item with x attributes. ...
1
vote
2answers
76 views

Do Anyone Have a Working Example of Using Amazon S3 and SimpleDB with Android?

I'm interested in uploading data (images mostly) from my Android App to Amazon S3 and then storing its reference into a Amazon SimpleDB (with other data). Do anyone have a working example that takes ...
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
1answer
67 views

Django development environment with SimpleDB

If I want to write a django app with Amazon SimpleDB, should I install a local SimpleDB server in my development environment? If so, is there a good one around? simpledb-dev seems to be no longer ...
1
vote
1answer
865 views

Need a step by step guide to host a website on AWS

I've been browsing for a week on how to use AWS. I've always been using cpanel (I'm new to web) but someone recommended AWS to me. From the info I pieced together from various websites, I think I'm ...
1
vote
1answer
236 views

Web hosting on AWS - Where do we create the database and how to link S3 to EC2

I usually use webhosts with cpanel. I'm trying a larger scale website so I thought I'll give AWS a try. I've been googling and reading the documentations but still can't find a step by step guide to ...
1
vote
2answers
393 views

Is Amazon SimpleDB a good choice for my data?

I'm working on a database that stores user-created surveys. The database needs to store a unique ID for each survey. Using SQL, I'd just use a SERIAL column type so each row has an auto-incrementing ...
1
vote
1answer
781 views

Cost effectiveness of Amazon SimpleDB/RDS?

I'm looking at both of these services because I don't want to bother to maintain backups of my databases. My question is: how cost effective are these services? Specifically, how are they billed? I ...
0
votes
1answer
54 views

aws-sdk-ruby AWS::Record::Base records sharing the same domain

We are using the aws-sdk for ruby, specifically AWS::Record::Base. For various reasons we need to put records of various objects within the same domain in sdb. The approach we thought we'd use here ...
0
votes
1answer
48 views

SimpleDB select count (*) Inconsistent iPhone

Anyone know why both AWS SimpleDB expressions work? selectRequestClassVariable.selectRequestExpressionString = [NSString stringWithFormat:@"select count(*) from %@",DomainName]; In addition, this ...
0
votes
1answer
150 views

How to handle request timeout(408) error in boto?

We are using domain.select() method, that boto provides, to query SimpleDB. For smaller queries(queries involving couple of hours of data), this method works fine. But when I start using multiple ...
0
votes
0answers
49 views

Amazon Simpledb - Multi-tenency

Is anyone using Amazon simpledb for a multi-tenant app? The domain limit of 250 appears to inhibit the use of the product in this way. Thanks, fturtle
0
votes
2answers
51 views

Background jobs on amazon web services

I am new to AWS so I needed some advice on how to correctly create background jobs. I've got some data (about 30GB) that I need to: a) download from some other server; it is a set of zip archives ...
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
141 views

amazon simpledb get count

in c#, how do I get the value of count from this response from amazon simpledb (using amazon .net sdk): <?xml version="1.0" encoding="utf-16"?> <SelectResponse ...
0
votes
3answers
173 views

How can i query to get the multiple values in SimpleDB (AWS)

jpg In that Picture i have colored one part. i have attribute called "deviceModel". It contains more than one value.. i want to take using query from my domain which ItemName() contains ...
0
votes
1answer
214 views

running “complex” queries with amazon SDB (simpledb) - aws-sdb + ActiveResource

I am considering the following a "complex" query, given the fact that simpledb is a really simple data storage: I am trying to query a aws-sdb domain with an OR query. using ruby, rails (2) and ...