Compare Sizes
Register
Français Español

NoSQL Document Database comparison

5

Nowadays applications move very fast having new features every now and then. Software needs to process more and more data. So there is a need for alternatives to SQL databases, where we are not linked to a fixed database schema; where the amount of data will not reduce the performances. For all these reasons, NoSQL started to make it's way. And it's now part of the backend of most big websites like Facebook or Twitter.

With SQL you can almost switch from one database vendor to another with little to no effort thanks to SQL standard. With NoSQL databases there is no standard way to access these databases, so you need to consider twice your choice to make sure you will go for the solution that best fit your needs and not have to start all over your integration in a few months.

This comparison is inspired from Kristof Kovacs article:
kkovacs.eu/...

Link
CassandraCouchDBClusterpointDocumentDBDynamoDBHBaseMongoDBRedis
Best usedWhen you write more than you read (logging). If every component of the system must be in Java. ("No one gets fired for choosing Apache's stuff.")For accumulating, occasionally changing data, on which pre-defined queries are to be run. Places where versioning is important.Primarily offered as Database as a Service, allows you to operate 50-node cluster at a fraction of a cost (Pay per CPU). Most suitable for Web-based ACID-compliant solutions, but can be used for many other tasks.When you have a lot of simple records.If you're in love with BigTable. :) And when you need random, realtime read/write access to your Big Data.If you need dynamic queries. If you prefer to define indexes, not map/reduce functions. If you need good performance on a big DB. If you wanted CouchDB, but your data changes too much, filling up disks.For rapidly changing data with a foreseeable database size (should fit mostly in memory)
Usage exampleBanking, financial industry (though not necessarily for financial transactions, but these industries are much bigger than that.) Writes are faster than reads, so one natural niche is real time data analysis.CRM, CMS systems. Master-master replication is an especially interesting feature, allowing easy multi-site deployments.Feature-wise sits between SQL and MongoDB offering great horizontal scaling in combination with transaction support, Geo, Full-text searches, group-by.Facebook Messaging DatabaseFor all things that you would do with MySQL or PostgreSQL, but having predefined columns really holds you back.Stock prices. Analytics. Real-time data collection. Real-time communication.
Known ShortcomingsLacks embedded language.No ordering.No embedded language. Multiple index queries. Lacks features.Sizes limited by amount of RAM.
Main focusBest of BigTable and DynamoDB consistency, ease of useSimple setup. Features. Horizontal scaling.Billions of rows X millions of columnsRetains some friendly properties of SQL. (Query, index)Speed
LicenseApacheApacheProprietary, but available as free download.Proprietary. Cloud-only.Proprietary. Cloud-only.ApacheAGPL (Drivers: Apache)BSD
PricingFree download or pay per resource (CPU, Traffic, Storage)Pay per requests / traffic.Free download or Pay per instance + Service (MongoLab)
Projects using it
  • Cisco's WebEx: to store user feed and activity
  • Digg
  • Twitter: local trends, analytics...
apache.org/...
  • Facebook: messages infrastructure
  • Twitter: read/write backup of mysql tables; for people search...
  • Yahoo!: to detect document duplication based on fingerprint

apache.org/...
  • bit.ly
  • diaspora
  • Shutterfly
  • foursquare
  • SourceForge
  • craigslist.org
  • github.com
  • guardian.co.uk
  • Disqus
  • stackoverflow.com
  • flickr.net
  • tweetdeck.com
  • blizzard.com
Technical details
Latest version2.1.41.6.13.00.98.43.0.36.0.4
Release dateApr. 1st 2015 Sep. 3rd 2014 Feb. 15th 2015 Jul. 21st 2014 May 12th 2015 May 28th 2020
Initial release200820052006201220092009
ConsistencyStrongStrong/EventualEventual (strong with flag)
ReplicationMulti-master replicationMulti-masterMaster/slaveMaster/slave
ProtocolThrift (Binary)HTTP/RESTHTTP/RestRESTHTTP/REST (and Thrift)BSON (Binary)Telnet-like
Data PresentationXML / JSONJSONJSONJSON
Development languageJavaErlangC++JavaC++C/C++
PlatformsCross-platformCross-platformCloud or LinuxCloud onlyCloud only
"DynamoDB Local" cross-platform (single instance for development)
Cross-platformCross-platformCross-platform
API Language
Embedded LanguageNoneJavaScriptNoneJavaScriptNone
Additional
Websiteapache.orgapache.orgclusterpoint.commicrosoft.com/...amazon.com/...apache.orgmongodb.orgredis.io
Wikipediawikipedia.org/...wikipedia.org/...wikipedia.org/...wikipedia.org/...wikipedia.org/...wikipedia.org/...wikipedia.org/...wikipedia.org/...
Additional linkjustazure.com/...apache.org/...
Features
Cloud DBYesYesYesThird Party
Transaction supportNoNoYesNoNoNoNoYes
Domain-model AggregationYesNoNoYes
GeoSpatialYesNoYesYes
FullTextYesNoNo
Commercial SupportIncluded into DB-ServiceThird parties.
Embed
Compare CouchDB vs Redis vs MongoDB vs Cassandra vs Riak vs HBase

Kristof Kovacs: kkovacs.eu/...
wikipedia.org/...
Databases
English
Public
Public
Dec. 28th 2021 11:55:07 AM
View changes
Manage backups

User reviews and comments

  • Romans Malinovskis on Jun. 3rd 2015 11:51:28 AM

    Great comparison. I've added 3 more databases and also proposed change for the title. Looks like this comparison focuses on document-oriented databases only (wikipedia.org/... Can anyone populate DynamoDB and DocumentDB (from microsoft), those two are great databases.

  • Romans Malinovskis on Jun. 3rd 2015 11:35:32 AM
    suggested to set Name to NoSQL Document Database Comparison

    There are many other types for storing trees, key-value, or column-based and it would be difficult to compare them properly.