Tagged Questions
Amazon SimpleDB is a highly available, flexible, and scalable non-relational data store that offloads the work of database administration. Developers simply store and query data items via web services requests, and Amazon SimpleDB does the rest.
66
votes
5answers
8k views
Non-Relational Database Design
I'm interested in hearing about design strategies you have used with non-relational "nosql" databases - that is, the (mostly new) class of data stores that don't use traditional relational design or ...
32
votes
7answers
7k views
What's the point of using Amazon SimpleDB?
I thought that I could use SimpleDB to take care of the most challenging area of my application (as far as scaling goes) - twitter-like comments, but with location on top - till the point when I sat ...
15
votes
2answers
10k views
bigtable vs cassandra vs simpledb vs dynamo vs couchdb vs hypertable vs riak vs hbase, what do they have in common?
Sorry if this question is somewhat subjective. I am new to 'could store', 'distributed store' or some concepts like this. I really wonder what do they have in common and want to get an overview on all ...
13
votes
3answers
2k views
13
votes
7answers
4k views
Amazon SimpleDB
Has anyone considered using something along the lines of the Amazon SimpleDB data store as their backend database?
SQL Server hosting (at least in the UK) is expensive so could something like this ...
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 ...
11
votes
4answers
3k views
Pro's of databases like BigTable, SimpleDB
New school datastore paradigms like Google BigTable and Amazon SimpleDB are specifically designed for scalability, among other things. Basically, disallowing joins and denormalization are the ways ...
9
votes
3answers
2k views
How to do paging with simpledb?
I know how to page forward with SimpleDB data by using NextToken. However, how exactly does one handle previous pages? I'm on .NET, but I don't think that matters. I'm more interested in the ...
9
votes
2answers
1k views
Eventual Consistency
I am in the early stages of design of an application that has to be highly available and scalable. I want to use an eventual consistency data model for this for a number of reasons. I know and ...
8
votes
3answers
637 views
How does Amazon.com function with a key-value datastore?
I have heard that Amazon uses a key-value data store - that it does not use a traditional relational normalized db. Speaking as someone who only has used the traditional approach, how does this work? ...
8
votes
6answers
805 views
What do you need to take into consideration when deciding between MySQL and Amazon's SimpleDB for a RoR app?
I am just beginning to do research into the feasibility of using Amazon's SimpleDB service as the datastore for RoR application I am planning to build. We will be using EC2 for the web server, and had ...
7
votes
8answers
1k views
Is there a production grade SimpleDB .NET library?
Here you will find all the SimpleDB code samples on the AWS page.
Here you will find a VB.NET SimpleDB library.
Is there a production grade SimpleDB library, preferable built in C#. If not, May I ...
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
764 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 ...
6
votes
4answers
2k views
AWS SimpleDB
I am in the process of building an mobile application (iPhone/Android) and want to store the application data onto Amazon's SimpleDB, because we do not want to host our own server to provide these ...
6
votes
3answers
9k views
Looping through a SimpleXML object, or turning the whole thing into an array
I'm trying to work out how to iterate though a returned SimpleXML object.
I'm using a toolkit called Tarzan AWS, which connects to Amazon Web Services (SimpleDB, S3, EC2, etc). I'm specifically using ...
6
votes
6answers
4k views
Should I use CouchDB or SimpleDB?
I'm creating an application that will be hosted on amazon EC2 and a lot of the data that'll be saved is more document oriented (as well as saving tweets and such related to those documents).
Right ...
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
4answers
581 views
Is there a database agnostic nosql framework for .NET?
I'm looking for a common data access framework that will provide portability across various nosql databases like SimpleDB, Azure Tables, Cassandra, CouchDB, MongoDb, etc. I'm building an app and ...
5
votes
5answers
834 views
Non-relational databases (NoSQL) for small to medium sized applications
The benefits of a non-relational database (such as a key-value pair storage) are evident when used in large scale datasets (google, facebook, linkedin). How do you think small to medium sized ...
5
votes
5answers
994 views
Best database for high write (10000+ inserts/hour), low read (10 reads/second)?
I'm developing a web app and currently using sql server 2008 for it. But, I am considering moving to another database (simpledb) for improved performance.
I have a background process that inserts up ...
5
votes
3answers
1k views
Best way to keyword search Amazon SimpleDB using EC2 and Asp.Net?
I am wondering if anyone has any thoughts on the best way to perform keyword searches on Amazon SimpleDB from an EC2 Asp.Net application.
A couple options I am considering are:
1) Add keywords to ...
5
votes
2answers
617 views
How far can you really go with “eventual” consistency and no transactions (aka SimpleDB)?
I really want to use SimpleDB, but I worry that without real locking and transactions the entire system is fatally flawed. I understand that for high-read/low-write apps it makes sense, since ...
4
votes
3answers
278 views
Searching SimpleDB in a case-insensitive way
Since Amazon SimpleDB doesn't provide case-insensitive query, what w'd be the best way to do a case insensitive search for attributes in simpleDB ?
One thing that can be done is including a separate ...
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
1answer
458 views
What's the best module to access SimpleDB in python?
I'm writing a python script to select, insert, update, and delete data in SimpleDB.
I've been using the simpledb module written by sixapart so far, and it's working pretty well.
I've found one ...
4
votes
3answers
384 views
SimpleDB direct client access
One of the useful things about S3 for content storage is that a client can directly make a direct HTTP request to download the object. For instance, this is how Twitter serve up avatar images.
...
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 ...
4
votes
3answers
589 views
How should I handle eventual consistency in SimpleDB, particularly in relation to unit testing?
We're building a web app on top of the Amazon Web Services stack, and I'm loving it so far.
We're also making full use of test driven development and that is also proving to be fantastic.
I'm just ...
3
votes
2answers
183 views
Best way to deal with 900,000 record database and zip codes?
A company we do business with wants to give us a 1.2 gb CSV file every day containing about 900,000 product listings. Only a small portion of the file changes every day, maybe less than 0.5%, and ...
3
votes
3answers
160 views
Suitability of Amazon SimpleDB for large temporal data sets eminating from thousands of separate devices
I'm trying to establish whether Amazon SimpleDB is suitable for a subset of data I have.
I have thousands of deployed autonomous sensor devices recording data.
Each sensor device essentially reports ...
3
votes
2answers
186 views
Are there databases which work like Amazon SimpleDB which can be run locally?
I really like the way how Amazon SimpleDB works: Attribute=Value(s) store and SELECT statements. I'm wondering if there are any alternatives out there which work the same way but can be installed ...
3
votes
3answers
249 views
Computing an HMAC-SHA signature
I'm writing a module for Amazon's SimpleDB. They require REST requests to be signed using HMAC-SHA algorithm. (Details here.)
I'm told that there is a function to computer this signature, but I can't ...
3
votes
2answers
346 views
SimpleDB timestamp on insert
I am working on a game on the iPhone that will use SimpleDB for game data storage and I'd like to be able to timeout some database entries.
I figure i'll have some cron job that looks at the ...
3
votes
1answer
1k views
SimpleDB query on attribute name
I don't know something like this is possible or not with simpledb. I am trying to use
following type of simpledb data structure.
Each item has multiple name/value pairs (name here is ...
3
votes
1answer
271 views
Connect resque to other key-value DB than redis?
I just read a little about resque here and how you use redis as a "advanced key-value store" for the jobs.
As you might know you can use resque on multiple machines to process the jobs:
Workers ...
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
776 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
178 views
Using SimpleDB (with SimpleSavant) with POCO / existing entities, not attributes on my classes
I'm trying to use Simple Savant within my application, to use SimpleDB
I currently have (for example)
public class Person
{
public Guid Id { get; set; }
public string Name { get; set; }
...
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?
3
votes
2answers
896 views
2
votes
2answers
34 views
How do you import Big Data public data sets into AWS?
Loading any of Amazon's listed public data sets (http://aws.amazon.com/datasets) would take a lot of resources and bandwidth. What's the best way to import them into AWS so you start working with them ...
2
votes
0answers
88 views
Why there is lack of momentum in Amazon SimpleDB? [closed]
I am working on a project and as I want it to be hassle free so I am considering using Amazon SimpleDB for the sake of simplicity. At least I can cross out DB administration.
But why there is so ...
2
votes
1answer
55 views
Distributed Counter on AWS
I have multiple instances of a service running on multiple EC2 instances and I need a global counter which all instances of the service can access. The counter needs to support set/reset and increment ...
2
votes
1answer
57 views
how can I access an attribute by name, rather than by integer?
I must be missing something, but I can't seem to figure out how to get an Attribute by Name/String, only by an Integer, which is likely to change (the Attribute Name is not).
Could you explain how I ...
2
votes
2answers
60 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
1answer
67 views
What CMS will run with Amazons SimpleDB?
We are committed to SimpleDB. Most of our clients interaction will be through a desktop application. But we still need a web presence where they can create accounts and where we can add new content.
...
2
votes
0answers
57 views
Advice on coding a website. Images and a Database [closed]
I would be grateful for some advice on a website, I wish to create.
I want to set up a site of items, which have information and images associated with each item.
The items will have several ...
2
votes
1answer
65 views
Storing temporary data from crawlers
My crawler is crawling all websites and getting metadata information from them.
I then will run a script to sanitize the url's and store them in amazon RDS.
My problem is what datastore should I ...