Apache Cassandra: Difference between revisions
No edit summary |
mNo edit summary |
||
Line 8: | Line 8: | ||
| released = 2008 |
| released = 2008 |
||
| status = Active |
| status = Active |
||
| latest release version = 1.0. |
| latest release version = 1.0.8 |
||
| latest release date = {{release date|2012| |
| latest release date = {{release date|2012|02|27}} |
||
| frequently updated = yes |
| frequently updated = yes |
||
| programming language = [[Java (programming language)|Java]] |
| programming language = [[Java (programming language)|Java]] |
Revision as of 09:30, 27 February 2012
Original author(s) | Prashant Malik |
---|---|
Developer(s) | Apache Software Foundation |
Initial release | 2008 |
Stable release | 1.0.8
/ February 27, 2012 |
Repository | |
Written in | Java |
Operating system | Cross-platform |
Available in | English |
Type | key-value store |
License | Apache License 2 |
Website | cassandra |
Apache Cassandra is an open source distributed database management system. It is an Apache Software Foundation top-level project[1] designed to handle very large amounts of data spread out across many commodity servers while providing a highly available service with no single point of failure. It is a NoSQL solution that was initially developed by Facebook and powered their Inbox Search feature until late 2010.[2][3] Jeff Hammerbacher, who led the Facebook Data team at the time, has described Cassandra as a BigTable data model running on an Amazon Dynamo-like infrastructure.[4]
Cassandra provides a structured key-value store with tunable consistency.[5] Keys map to multiple values, which are grouped into column families. The column families are fixed when a Cassandra database is created, but columns can be added to a family at any time. Furthermore, columns are added only to specified keys, so different keys can have different numbers of columns in any given family.
The values from a column family for each key are stored together. This makes Cassandra a hybrid data management system between a column-oriented DBMS and a row-oriented store.[6] Additional features include: using the BigTable way of modeling, eventual consistency, and the Gossip protocol, a master-master way of serving read and write requests inspired by Amazon's Dynamo.[7]
History
Apache Cassandra was developed at Facebook to power their Inbox Search feature by Avinash Lakshman (one of the authors of Amazon's Dynamo) and Prashant Malik. It was released as an open source project on Google code in July 2008.[4] In March 2009, it became an Apache Incubator project.[8] On February 17, 2010 it graduated to a top-level project.[1]
Facebook abandoned Cassandra in late 2010 when they built Facebook Messaging platform on HBase.[3]
Data model
A table in Cassandra is a distributed multidimensional map indexed by a key. The value is an object that is highly structured. The row key in a table is a string with no size restrictions, although typically 16 to 36 bytes long. Every operation under a single row key is atomic per replica no matter how many columns are being read or written into. Columns are grouped together into sets called column families very much similar to what happens in the BigTable system. Cassandra exposes two kinds of column families: Simple and Super. Super column families can be visualized as a column family within a column family. The top dimension in Cassandra is called Keyspace.
Therefore, Cassandra can handle maps with four or five dimensions:
Map with four dimensions:
- Keyspace → Column Family
- Column Family → Column Family Row
- Column Family Row → Columns
- Column → Data value
Map with five dimensions:
- Keyspace → Super Column Family
- Super Column Family → Super Column Family Row
- Super Column Family Row → Super Columns
- Super Column → Columns
- Column → Data value
The first dimension - Keyspace → (Super) Column Family - is limited to a (small) set of schema-predefined keys. Cassandra documentation mentions similarities of this dimension with the table definition inside a relational database.
Furthermore, applications can specify the sort order of columns within a Super Column or Simple Column family. The system allows columns to be sorted either by time or by name. Time sorting of columns is exploited by applications like Facebook Inbox Search, where the results are always displayed in time-sorted order. Any column within a column family is accessed using the convention column_family : column
, and any column within a column family that is of type super is accessed using the convention column_family : super_column : column
.
Clustering
When the cluster for Apache Cassandra is designed, an important point is to select the right partitioner. Two partitioners exist:[9]
- RandomPartitioner (RP): This partitioner randomly distributes the key-value pairs over the network, resulting in a good load balancing. Compared to OPP, more nodes have to be accessed to get a number of keys.
- OrderPreservingPartitioner (OPP): This partitioner distributes the key-value pairs in a natural way so that similar keys are not far away. The advantage is that fewer nodes have to be accessed. The drawback is the uneven distribution of the key-value pairs.
Features
Decentralized
Every node in the cluster has the same role. There is no single point of failure. Data is distributed across the cluster (so each node contains different data), but there is no master as every node can service any request.
Elasticity
Read and write throughput both increase linearly as new machines are added, with no downtime or interruption to applications.
Fault-tolerant
Data is automatically replicated to multiple nodes for fault-tolerance. Replication across multiple data centers is supported. Failed nodes can be replaced with no downtime.
Tunable consistency
Writes and reads offer a tunable level of consistency, all the way from "writes never fail" to "block for all replicas to be readable", with the quorum level in the middle.
Query language
In 0.8, CQL (Cassandra Query Language) was introduced, an SQL-like alternative to the traditional RPC interface. Language drivers are available for Java (JDBC) and Python (DBAPI2).
Prominent users
- AppScale uses Cassandra as a back-end for Google App Engine applications[10]
- Cisco's WebEx uses Cassandra to store user feed and activity in near real time.[11]
- Clearspring uses Cassandra "[keep] track of how many times a URL is shared and serves over 200M view requests daily."[12]
- Cloudkick uses Cassandra to store the server metrics of their users.[13]
- Cloudtalk's Platform contains API's for users to create messaging apps with Cassandra as it's data store.[14]
- Constant Contact uses Cassandra in their social media marketing application.[15]
- Digg, a large social news website, announced on Sep 9th, 2009 that it is rolling out its use of Cassandra[16] and confirmed this on March 8, 2010.[17] TechCrunch has since linked Cassandra to Digg v4 reliability criticisms and recent company struggles.[18] Lead engineers at Digg later rebuked these criticisms as red herring and blamed a lack of load testing.[19]
- Digital Reasoning's Synthesys application with potential scale to over a 400-node Cassandra database was rolled out in late 2010.[20]
- Facebook used Cassandra to power Inbox Search, with over 200 nodes deployed.[2] This was abandoned in late 2010 when they built Facebook Messaging platform on HBase.[3]
- IBM has done research in building a scalable email system based on Cassandra.[21]
- Isidorey is the creator of Cloudsandra: a multi-tenant platform built on Brisk (Hadoop + Cassandra).[22]
- Martini Media Network moved from MySQL to Cassandra.[23]
- Mollom uses Cassandra to track reputations from IP data[24]
- Netflix uses Cassandra as their back-end database for their streaming services[25][26]
- Formspring uses Cassandra to count responses, as well as store Social Graph data (followers, following, blockers, blocking) for 26 Million accounts with 10 million responses a day[27]
- Mahalo.com uses Cassandra to record user activity logs and topics for their Q&A website[28][29]
- Ooyala Built a scalable, flexible, real-time analytics engine using Cassandra[30]
- At Openwave, Cassandra acts as a distributed database and serves as a distributed storage mechanism for Openwave’s next generation messaging platform[31]
- OpenX is running over 130 nodes on Cassandra for their OpenX Enterprise product to store and replicate advertisements and targeting data for ad delivery[32]
- Outbrain uses Cassandra as a semi-persistent cache of recommendations. [33]
- Plaxo has "reviewed 3 billion contacts in [their] database, compared them with publicly available data sources, and identified approximately 600 million unique people with contact info."[34]
- PostRank uses Cassandra as their backend database[35]
- Rackspace is known to use Cassandra internally.[36]
- Reddit switched to Cassandra from memcacheDB on March 12, 2010[37] and experienced some problems with overload handling in Cassandra in May.[38]
- RockYou uses Cassandra to record every single click for 50 million Monthly Active Users in real-time for their online games[39]
- ShopSavvy uses Cassandra as their storage technology for their barcode scanning application[40]
- SimpleGeo built a scalable geospatial database on top of Apache Cassandra[41]
- SoundCloud uses Cassandra to store user account information[42]
- Twitter announced it is planning to use Cassandra because it can be run on large server clusters and is capable of taking in very large amounts of data at a time.[43][44] Twitter continues to use it but not for Tweets themselves.[45]
- Urban Airship uses Cassandra with the mobile service hosting for over 160 million application installs across 80 million unique devices[46]
- Utillabs uses Cassandra for its Low Voltage Smart System for fine grained event / reading recording and analytics [47]
- Walmart Labs (previously Kosmix) uses Cassandra with SSD[48]
- Yakaz uses Cassandra on a five-node cluster to store millions of images as well as its social data.[49]
See also
- BigTable - Original distributed database by Google
- Distributed database
- Distributed hash table (DHT)
- Dynamo (storage system) - Cassandra borrows many elements from Dynamo
- Apache HBase - Apache Hadoop based distributed database. Very similar to BigTable
- Hypertable - Apache Hadoop based distributed database. Very similar to BigTable
- Riak
References
- ^ a b "Cassandra is an Apache top level project". Mail-archive.com. 2010-02-18. Retrieved 2010-03-29.
- ^ a b "Niet compatibele browser". Facebook. Retrieved 2010-03-29.
- ^ a b c Kannan Muthukkaruppan. "The Underlying Technology of Messages".
- ^ a b James Hamilton (July 12, 2008). "Facebook Releases Cassandra as Open Source". Retrieved 2009-06-04.
- ^ http://www.cs.cornell.edu/projects/ladis2009/papers/lakshman-ladis2009.pdf
- ^ Vishal Shinde (2011-01-19). "Apache Cassandra". http://www.linuxquestions.in/: Linux Questions, Help, Howtos and Tutorials. Retrieved 2010-03-09.
The values from a column family for each key are stored together, making Cassandra a hybrid between a column-oriented DBMS and a row-oriented store
{{cite web}}
: External link in
(help)|location=
- ^ Olivier Mallassi (2010-06-09). "Let's play with Cassandra… (Part 1/3)". http://blog.octo.com/: OCTO Talks. Retrieved 2010-03-22.
Hybrid firstly because Cassandra uses a column-oriented way of modeling data (inspired by the BigTable) and permit to use Hadoop Map/Reduce jobs and secondly because it uses patterns inspired by Dynamo like Eventually Consistent, Gossip protocols, a master-master way of serving both read and write requests…
{{cite web}}
: External link in
(help)|location=
- ^ "Is this the new hotness now?". Mail-archive.com. 2009-03-02. Retrieved 2010-03-29.
- ^ Dominic Williams. "Cassandra: RandomPartitioner vs OrderPreservingPartitioner". http://wordpress.com/: WordPress.com. Retrieved 2011-03-23.
When building a Cassandra cluster, the "key" question (sorry, that's weak) is whether to use the RandomPartitioner (RP), or the OrderPreservingPartitioner (OPP). These control how your data is distributed over your nodes. Once you have chosen your partitioner, you cannot change without wiping your data, so think carefully! The problem with OPP: If the distribution of keys used by individual column families is different, their sets of keys will not fall evenly across the ranges assigned to nodes. Thus nodes will end up storing preponderances of keys (and the associated data) corresponding to one column family or another. If as is likely column families store differing quantities of data with their keys, or store data accessed according to differing usage patterns, then some nodes will end up with disproportionately more data than others, or serving more "hot" data than others.
{{cite web}}
: External link in
(help); line feed character in|location=
|quote=
at position 325 (help) - ^ cite web|url=http://appscale.cs.ucsb.edu/datastores.html#cassandra
- ^ "Re: Cassandra users survey". Mail-archive.com. 2009-11-21. Retrieved 2010-03-29.
- ^ Matt Abrams (2011-05-05). "Clearsprings Big Data Architecture Part 1".
- ^ https://www.cloudkick.com/blog/2010/mar/02/4_months_with_cassandra/
- ^ http://cloudtalk.com/the-cloudtalk-platform.html
- ^ Klint Finley (2011-02-18). "This Week in Consolidation: HP Buys Vertica, Constant Contact Buys Bantam Live and More". Read Write Enterprise.
- ^ Ian Eure. "Looking to the future with Cassandra".
- ^ John Quinn. "Saying Yes to NoSQL; Going Steady with Cassandra".
- ^ Erick Schonfeld. "As Digg Struggles, VP Of Engineering Is Shown The Door".
- ^ "Is Cassandra to Blame for Digg v4's Failures?".
- ^ http://www.datastax.com/wp-content/uploads/2011/03/CS-DigitalReasoning.pdf
- ^ "Powered by Google Docs" (PDF). Docs.google.com. Retrieved 2010-03-29.
- ^ http://www.cloudsandra.com/
- ^ Manicka Babu (2011-05-22). "Cassandra Part 1".
- ^ Todd Hoff (2011-02-08). "Mollom Architecture - Killing Over 373 Million Spams at 100 Requests per Second". High Scalability.
- ^ cite web|url=http://www.slideshare.net/adrianco/migrating-netflix-from-oracle-to-global-cassandra
- ^ Yury Izrailevsky (2011-01-28). "NoSQL at Netflix".
- ^ Martin Cozzi (2011-08-31). "Cassandra at Formspring".
- ^ {{cite web|url=http://www.datastax.com/wp-content/uploads/2011/06/DataStax-CaseStudy-Mahalo.pdf
- ^ http://blip.tv/datastax/cassandra-at-mahalo-com-4030941
- ^ http://www.datastax.com/wp-content/uploads/2011/04/WP-Ooyala.pdf
- ^ http://www.datastax.com/wp-content/uploads/2011/05/DataStax-CaseStudy-Openwave.pdf
- ^ http://openx.com/publisher/technology
- ^ Nathan Milford. "Cassandra for Sysadmins".
- ^ Preston Smalley (2011-03-20). "An important milestone - and it's only the beginning!".
- ^ Ilya Grigorik (2011-03-29). "Webpulp TV: Scaling PostRank with Ilya Grigorik".
- ^ "Hadoop and Cassandra (at Rackspace)". Stu Hood. 2010-04-23. Retrieved 2011-09-01.
- ^ Posted by david [ketralnis] (2010-03-12). "what's new on reddit: She who entangles men". blog.reddit. Retrieved 2010-03-29.
- ^ Posted by the reddit admins at (2010-05-11). "blog.reddit -- what's new on reddit: reddit's May 2010 "State of the Servers" report". blog.reddit. Retrieved 2010-05-16.
- ^ Dathan Vance Pattishall (2011-03-23). "Cassandra is my NoSQL Solution but".
- ^ Alexander Muse (2011-07-18). "Shopsavvy leverages Hadoop and Cassandra".
- ^ Klint Finley. "How SimpleGeo Built a Scalable Geospatial Database with Apache Cassandra". Read Write Cloud.
- ^ "Cassandra at SoundCloud" (PDF).
- ^ Popescu, Alex. "Cassandra @ Twitter: An Interview with Ryan King". myNoSQL. Retrieved 2010-03-29.
- ^ Babcock, Charles. "Twitter Drops MySQL For Cassandra - Cloud databases". InformationWeek. Retrieved 2010-03-29.
- ^ "Cassandra at Twitter Today".
- ^ Erik Onnen. "From 100s to 100s of Millions".
- ^ Hartmut Bohmer. "Low Volt Smart System".
- ^ Karl Mueller. "Cassandra on SSD".
- ^ "Yakaz Technologies".
Bibliography
- Hewitt, Eben (December 15, 2010). Cassandra: The Definitive Guide (1st ed.). O'Reilly Media. p. 300. ISBN 9781449390419.
- Capriolo, Edward (July 15, 2011). Cassandra High Performance Cookbook (1st ed.). Packt Publishing. p. 324. ISBN 1849515123.
External links
This article's use of external links may not follow Wikipedia's policies or guidelines. (January 2012) |
- Avinash Lakshman (25 August 2008). "Cassandra - A structured storage system on a P2P Network". Engineering @ Facebook's Notes. Retrieved 2009-06-04.
- Project Website
- Project Wiki
- Adopting Apache Cassandra presented by Eben Hewitt on December 1, 2010
- LADIS 2009 WhitePaper by the original contributors Avinash Lakshman & Prashant Malik
- Cassandra Articles on NoSQLDatabases.com
- Cassandra News and Articles on myNoSQL
- Cassandra @ Twitter: an Interview with Ryan King
- Presentation on RDBMS vs. Dynamo, BigTable, and Cassandra
- RPM build for the apache cassandra project