vote up 2 vote down star
3

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 now I'm at a crossroads... should I use simpleDB or couchDB? Whats the pros/cons of using either? Should I just try both for a month and decide then?

flag

4 Answers

vote up 9 vote down

You may find the the article Amazon SimpleDB and CouchDB Compared to be useful.

I've also found that MongoDB gives excellent performance.

link|flag
vote up 5 vote down

Keep in mind that if your code lives in EC2, SimpleDB will be presumably hosted in the same data center that your code is, which would give SimpleDB a lower latency than CouchDB for requests from an EC2 server. Also, Amazon doesn't charge you bandwidth costs between EC2 and SimpleDB.

I would expect SimpleDB to be both faster and cheaper for code running in EC2, for those reasons.

link|flag
It depends, since CouchDB would presumably be hosted on EC2 as well it might even be faster than SimpleDB. – LucaM Jul 9 at 8:05
I was assuming that CouchDB has its own host, as SimpleDB does. If that's not the case, then you're right - download CouchDB and host it in EC2 yourself, and the latency/charge issues go away. – Joel Mueller Jul 9 at 21:45
vote up 1 vote down

If you develop in .Net environment there's an excellent lib for SimpleDB called Simple Savant which really eases the integration..

link|flag
vote up 0 vote down

I would absolutely do some benchmark of the two solutions with your own use-case, if that's possible, i.e. if you can build a reasonable subset of your application to run on either databases (they have quite different APIs so this might not be easy).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.