Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I keep seeing references to the idea that "CouchDB may not be the best tool in every situation." This is good to know, but unfortunately also applies to every technology.

What would be much more helpful is a description of how CouchDB was tried on a project and subsequently abandoned for a traditional SQL database.

If you've tried CouchDB on a project and later gone back to a SQL database, what factors played the biggest role?

share|improve this question

4 Answers

You might want to check out the following articles, which describe a few examples:

share|improve this answer
@Daniel, those are some useful links, thanks. But I didn't find any discussions of a specific project where the limitations/mismatch in CouchDB were so great that it forced the project to go back to a RDBMS. That's really what I'm looking for. – Rich Apodaca Jan 12 '10 at 20:41
1  
@Rich: I wouldn't look for examples that chose CouchDB and were forced to go back, because in some situations, a relational database, with traditional transactions and queries is the only option. Recently I came across an Oracle case study on Betfair.com oracle.com/customers/snapshots/betfair-database-case-study.pdf. I think that with 20m transactions per day, dealing with peaks of 1k transactions per second with real money, operating under strict regulations, while managing to serve over 500 million page view per day, they are doing an excellent leverage on relational databases. – Daniel Vassallo Jan 12 '10 at 21:27

you might find this page useful http://www.mongodb.org/display/DOCS/Comparing+Mongo+DB+and+Couch+DB

share|improve this answer

There’s a good CouchDB post-mortem from Sauce Labs here:

And another from Signal here:

share|improve this answer

Its marketing slogans "Relax, it's easy" and "CouchDB bult for the Web" - it's not true.

Because:

  1. It's not easy. Ha-ha, writing map/reduce for every query is easy, really? Did someone who advocates it actually tried this approach, on something real I mean, not just two-weekends-blog app?
  2. Some common web-app tasks is hard to do with CouchDB (try to get Post with its Comments Count in one query or Tag Cloud (top N tags, not just counts of tags) to see it for Yourself.

So, CouchDB has very interesting and unique features, but its marketing is wrong. It's not for a general web app, it's a nice but a very specialized tool.

P.S. more details (Blogpost translated with Google Translator) http://translate.google.com/translate?hl=en&sl=auto&tl=en&u=http%3A%2F%2Fpetrush.in%2Fblog%2F2012%2Finformally-about-couchdb-and-comparison-with-mongodb

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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