Tagged Questions
Highly available schema-less attribute database that is part of the Amazon Web Services offering. Enables storage and retrieval of named items consisting of one or more key/value string pairs organized into domains. Item retrieval is done either by item name gets or through a sql-like language. Pay for what you use model with no minimum fees or startup costs.
22
votes
2answers
7k views
MongoDB on EC2 server or AWS SimpleDB?
What scenario makes more sense - host several EC2 instances with MongoDB installed, or much rather use the Amazon SimpleDB webservice?
When having several EC2 instances with MongoDB I have the ...
11
votes
2answers
3k views
Cassandra Vs Amazon SimpleDB
I'm working on an application where data size and SQL queries are going to be heavy. I am thinking between Cassandra or Amazon SimpleDB. Can you please suggest which is more suitable in this kind of ...
7
votes
4answers
1k views
Amazon SimpleDB for development environment / local installation
Is there a way / tool to simulate Amazon's SimpleDB for the purpose of development?
In my quest for above, I found this tool but this is for the Mac OS. Anything that can be installed on Win XP? ...
6
votes
1answer
395 views
How can I protect Amazon SimpleDB from SQL Injection?
Under the principle of "if it walks like a duck and it sounds like a duck," it sure seems like the SQL-flavored queries that Amazon's SimpleDB supports should be susceptible to SQL injection-type ...
6
votes
3answers
763 views
Grails and Amazon SimpleDB
How to setup Grails project to use Amazon SimpleDB?
One possibility is to install gorm-jpa plugin and use SimpleJPA library, but I couldn't setup it correctly.
Has someone experience with this ...
6
votes
2answers
488 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
1answer
310 views
Amazon SimpleDB vs Amazon DynamoDB
I have some basic understanding what is simpleDB, but looking at dynamoDB description it is almost the same: a NoSQL key value store service.
Can someone simply explain the main differences between ...
5
votes
4answers
393 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
1answer
354 views
Question about Non-Relational Databases (NoSQL)
Although I've not yet used any of the new NoSQL databases I've tried to keep myself informed by reading Wikipedia articles, blogs and the peeking into some of the NoSQL DBs documentation.
I've just ...
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
2answers
386 views
Recommendations using R with SimpleDB or BigQuery or using PHP with SimpleDB
I am currently working on system that generated product recommendations like those on Amazon : "People who bought this also bought this.."
Current Scenario:
Extract the Google Analytics data of the ...
4
votes
4answers
2k views
Which cloud database back end should I use for my Android app?
I'm designing a service that will comprise a cloud-based database (with a UI for us to manage the data), and then a mobile app for end-users that displays the data to people who want it (primarily ...
4
votes
4answers
270 views
Database design for high sample rate data, graphing at multiple zoom levels
I've got multiple sensors feeding data to my web app. Each channel is 5 samples per second and the data gets uploaded bundled together in 1 minute json messages (containing 300 samples).
The data will ...
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
669 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
371 views
Amazon SimpleDB Identity Seed equivalent
Is there an equivalent to an identity Seed in SimpleDB?
If the answer is no, how do you handle creating something like a customer number or order number that will prevent the creation duplicate ...
3
votes
3answers
775 views
SimpleDB as the main database, examples
Please, can you give examples of real-life implementations using SimpleDB as the main persistent storage?
3
votes
1answer
813 views
Best 'logging' option on Amazon Cloud. RDS or SimpleDB?
My site's architecture includes ASP.Net & MySQL. I am planning to deploy it on Amazon Cloud. This would mean EC2 instance(s) and RDS. My query is regarding logging.
I'm ensuring that my ...
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
89 views
Amazon SimpleDB for Windows Phone 7
Does anyone know a good library or sample code to add new entry to a domain using REST?
2
votes
2answers
59 views
How do implement schema changes in a NOSQL storage system
How do you manage a major schema change when you are using a Nosql store like SimpleDB?
I know that I am still thinking in SQL terms, but after working with SimpleDB for a few weeks I need to make a ...
2
votes
3answers
224 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
444 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 ...
2
votes
1answer
1k views
Amazon SimpleDB vs Amazon RDS
I work at a small ecommerce site and we're looking to move to all Amazon hosted services and I'm unsure the exact difference in RDS and SimpleDB. RDS can use MySQL, can SimpleDB not?
2
votes
3answers
594 views
Amazon SimpleDB Query to Find “Post By Friends”
I have been developing an iPhone app which queries a server that relays data I store in Amazon SimpleDB. I have a database table of "Submissions" by various users. I am interfacing with Facebook to ...
2
votes
1answer
351 views
Iterating over all items in SimpleDB
Let's say I have a AWS SimpleDB domain with around 3 million items, each item has an attribute of "foo" with a value of some arbitrary integer (which is of course actually stored in SimpleDB as a ...
2
votes
2answers
190 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?
2
votes
1answer
233 views
Uneven Results Doing A Sort / Orderby on Amazon SimpleDB
I've been getting really uneven results trying to request a numerically sorted list of records from Amazon SimpleDB.
I am zero padding my numbers to get them selected lexigraphically, but still no ...
1
vote
1answer
19 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
1answer
19 views
Amazon simple DB select query with order by clause
I am trying to execute select query with order by in date field.
SELECT * FROM <domain> WHERE
LastModifiedDate is not null and
FileName LIKE 'a%'
order by lastmodifiedDate desc.
Query ...
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
94 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
0answers
58 views
Syncing a Local Directory to S3/SDB with Git or Mercurial
I am looking for a solution in Python, since that is my programming language of choice. Here's my problem:
I am trying to sync a directory on a client's machine to S3/SDB. It is maybe 20k-30k pdf ...
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
206 views
Spring Data JPA and SimpleJPA/SimpleDB
I'm wondering if it is possible to specify SimpleJPA as the persistence provider used by Spring-Data-JPA. I'm not a JPA expert so I hope this question isn't silly. Is it as easy as just specifying ...
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 ...
1
vote
1answer
159 views
Amazon AWS:: Which service should I use?
I am planning to host my iphone game on amazon aws. Basically my game just need a database, and currently I am using mysql (relational database) to store users data.
I am new to amazon aws, and I ...
1
vote
1answer
138 views
Implementing fraud-proof voting system using SimpleDB
I'd like to implement a voting system with all data stored in Amazon SimpleDB. The frontend is also running on Amazon EC2. My main concern is cost of the service.
The voting system needs to be ...
1
vote
1answer
99 views
how to order the data back from amazon simpleDB int specific column order
i m using amazon simple DB java client to read data from SimpleDB, the problem i have is even though i specified the columns in the some order in the SelectRequest like the following:
SelectRequest ...
1
vote
1answer
111 views
Is amazon simpleDB suitable service for checking an android app's trial status?
I have an android application and it has a trial version. I want to store users' imei numbers and installation dates on serverside and than check everytime when user uses this app to know if trial ...
1
vote
1answer
870 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
395 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
205 views
What's the most convenient way to access Amazon's SimpleDB from Java?
I found at least two libraries. The first one is "typica" (http://code.google.com/p/typica/), the second is the SDK that's provided by Amazon (http://aws.amazon.com/sdkforjava/).
In the newest typica ...
1
vote
1answer
787 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 ...
1
vote
1answer
378 views
Send rest requests to amazon web services with visual foxpro (posible signature error)
I'm trying to send instructions in order to create a new SimpleDB domain using VFP9.
The .fll library come thanks to sweet potato software, and the hour difference was solved using an additional ...
1
vote
1answer
67 views
In RightAWS Gem SDB SELECT only returning 100 records at a time. I would like to select more
We use SDB to store lots of data and currently I'm using the RightAWS gem for Ruby to access that data. I'm trying to get the results of a query which returns about 16,000 items. This process takes ...