Live data from Hacker News

MongoDB Rules Single Node Deployments, Fails to Scale

blog.couchbase.com

1–10 of 31 posts

Re: MongoDB Rules Single Node Deployments, Fails to Scale

#5

Couchbase, the nodejs of databases. Everything is async. Want indexes updated, async. Want replication, async. Want commiting stuff to disk, async. When you try to sync stuff (indexes + disk-commit) the performance will take a hit.

Many applications find sync writes to replica memory on other rack(s) to be a good substitute for sync to disk. The disk sync can be batched every second or so for higher throughput and your application is safe. Where this really plays out well is when the disk goes slow for a minute (cloud-style) and the database stays fast.

Re: MongoDB Rules Single Node Deployments, Fails to Scale

#6
post #4

TLDR: MongoDB benchmarked Couchbase Server by having it perform CAS operations (read + update) while MongoDB performed basic operations (update), they used an outdated client library that is two years old, and they performed it with single node deployments.

MongoDB showing that in the years since this[1] was published that have learned nothing. Still chasing artificial benchmarks at the expensive of data safety and either personal or corporate integrity.

[1]: http://pastebin.com/raw.php?i=FD3xe6Jt

Re: MongoDB Rules Single Node Deployments, Fails to Scale

#9

I did not see a link to the independent benchmarks that was referenced here. Does anyone have the link? I would be interested in seeing the actual results and summary of it.

They promoted it the other day: http://www.informationweek.com/big-data/software-platforms/m...
Post reply on HN