Apache Cassandra

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
Apache Cassandra
Cassandra logo
Original author(s) Avinash Lakshman, Prashant Malik
Developer(s) Apache Software Foundation
Initial release 2008
Stable release 3.0.0 / November 9, 2015 (2015-11-09)
Development status Active
Written in Java
Operating system Cross-platform
Available in English
Type Database
License Apache License 2.0
Website cassandra.apache.org
Helenos is a graphical user interface for Cassandra

Apache Cassandra is an open source distributed database management system designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. Cassandra offers robust support for clusters spanning multiple datacenters,[1] with asynchronous masterless replication allowing low latency operations for all clients.

Cassandra also places a high value on performance. In 2012, University of Toronto researchers studying NoSQL systems concluded that "In terms of scalability, there is a clear winner throughout our experiments. Cassandra achieves the highest throughput for the maximum number of nodes in all experiments" although "this comes at the price of high write and read latencies."[2]

History

Apache Cassandra was initially 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.[3] In March 2009, it became an Apache Incubator project.[4] On February 17, 2010 it graduated to a top-level project.[5]

It was named after the Greek mythological prophet Cassandra.[6]

Releases after graduation include

  • 0.6, released Apr 12 2010, added support for integrated caching, and Apache Hadoop MapReduce[7]
  • 0.7, released Jan 08 2011, added secondary indexes and online schema changes[8]
  • 0.8, released Jun 2 2011, added the Cassandra Query Language (CQL), self-tuning memtables, and support for zero-downtime upgrades[9]
  • 1.0, released Oct 17 2011, added integrated compression, leveled compaction, and improved read performance[10]
  • 1.1, released Apr 23 2012, added self-tuning caches, row-level isolation, and support for mixed ssd/spinning disk deployments[11]
  • 1.2, released Jan 2 2013, added clustering across virtual nodes, inter-node communication, atomic batches, and request tracing[12]
  • 2.0, released Sep 4 2013, added lightweight transactions (based on the Paxos consensus protocol), triggers, improved compactions
  • 2.0.4, released Dec 30 2013, added allowing specifying datacenters to participate in a repair, client encryption support to sstableloader, allow removing snapshots of no-longer-existing CFs[13]
  • 2.1.0 released Sep 10 2014 [14]
  • 2.1.6 released June 8, 2015
  • 2.1.7 released June 22, 2015
  • 2.2.0 released July 20, 2015
  • 2.2.2 released October 5, 2015
Version Original release date Latest version Release date Status[15]
Old version, no longer supported: 0.6 2010-04-12 0.6.13 2011-04-18 No longer supported
Old version, no longer supported: 0.7 2011-01-10 0.7.10 2011-10-31 No longer supported
Old version, no longer supported: 0.8 2011-06-03 0.8.10 2012-02-13 No longer supported
Old version, no longer supported: 1.0 2011-10-18 1.0.12 2012-10-04 No longer supported
Old version, no longer supported: 1.1 2012-04-24 1.1.12 2013-05-27 No longer supported
Old version, no longer supported: 1.2 2013-01-02 1.2.19 2014-09-18 No longer supported
Old version, no longer supported: 2.0 2013-09-03 2.0.17 2015-09-21 No longer supported
Older version, yet still supported: 2.1 2014-09-16 2.1.12 2015-12-07 Still supported
Current stable version: 2.2 2015-07-20 2.2.4 2015-12-07 Most stable release
Latest preview version of a future release: 3.0 2015-11-09 3.0.1 2015-12-08 Latest release
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

Licensing and support

Apache Cassandra is an Apache Software Foundation project, so it has an Apache License (version 2.0).

Main features

Lua error in package.lua at line 80: module 'strict' not found.

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.
Supports replication and multi data center replication
Replication strategies are configurable.[16] Cassandra is designed as a distributed system, for deployment of large numbers of nodes across multiple data centers. Key features of Cassandra’s distributed architecture are specifically tailored for multiple-data center deployment, for redundancy, for failover and disaster recovery.
Scalability
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.[17]
MapReduce support
Cassandra has Hadoop integration, with MapReduce support. There is support also for Apache Pig and Apache Hive.[18]
Query language
Cassandra introduces CQL (Cassandra Query Language), a SQL-like alternative to the traditional RPC interface. CQL is simple API meant for accessing Cassandra. CQL adds an abstraction layer that hides implementation details of this structure and provides native syntaxes for collections and other common encodings.[19] Language drivers are available for Java (JDBC), Python (DBAPI2), Node.JS (Helenus), Go (gocql) and C++.[20]

Below an example of keyspace creation, including a column family in CQL 3.0:[21]

CREATE KEYSPACE MyKeySpace
  WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };

USE MyKeySpace;

CREATE COLUMNFAMILY MyColumns (id text, Last text, First text, PRIMARY KEY(id));

INSERT INTO MyColumns (id, Last, First) VALUES ('1', 'Doe', 'John');

SELECT * FROM MyColumns;

Which gives:

 id | first | last
----+-------+------
  1 |  John |  Doe

(1 rows)

Data model

Cassandra is essentially a hybrid between a key-value and a column-oriented (or tabular) database. Its data model is a partitioned row store with tunable consistency.[17] Rows are organized into tables; the first component of a table's primary key is the partition key; within a partition, rows are clustered by the remaining columns of the key.[22] Other columns may be indexed separately from the primary key.[23]

Tables may be created, dropped, and altered at run-time without blocking updates and queries.[24]

Cassandra does not support joins or subqueries. Rather, Cassandra emphasizes denormalization through features like collections.[25]

A column family (called "table" since CQL 3) resembles a table in an RDBMS. Column families contain rows and columns. Each row is uniquely identified by a row key. Each row has multiple columns, each of which has a name, value, and a timestamp. Unlike a table in an RDBMS, different rows in the same column family do not have to share the same set of columns, and a column may be added to one or multiple rows at any time.[26]

Each key in Cassandra corresponds to a value which is an object. Each key has values as columns, and columns are grouped together into sets called column families. Thus, each key identifies a row of a variable number of elements. These column families could be considered then as tables. A table in Cassandra is a distributed multi dimensional map indexed by a key. Furthermore, applications can specify the sort order of columns within a Super Column or Simple Column family.

Clustering

When the cluster for Apache Cassandra is designed, an important point is to select the right partitioner. Two partitioners exist:[27]

  1. 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.
  2. 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.

Management and monitoring

Cassandra is a Java-based system that can be managed and monitored via Java Management Extensions (JMX). The JMX-compliant nodetool utility, for instance, can be used to manage a Cassandra cluster (adding nodes to a ring, draining nodes, decommissioning nodes, and so on).[28] Nodetool also offers a number of commands to return Cassandra metrics pertaining to disk usage, latency, compaction, garbage collection, and more.[29] Additional metrics are available via JMX tools such as JConsole and via pluggable metrics reporters for external monitoring tools, which became available with Cassandra version 2.0.2.[30]

Prominent users

Lua error in package.lua at line 80: module 'strict' not found.

  • @WalmartLabs[31] (previously Kosmix) uses Cassandra with SSD
  • Amadeus IT Group uses Cassandra for some of their back-end systems.
  • Apple uses 100,000 Cassandra nodes, as revealed at Cassandra Summit San Francisco 2015,[32] although it has not elaborated for which products, services or features.
  • AppScale uses Cassandra as a back-end for Google App Engine applications[33]
  • BlackRock uses Cassandra in their Aladdin investment management platform[34][35]
  • CERN used Cassandra-based prototype for its ATLAS experiment to archive the online DAQ system's monitoring information[36]
  • Cisco's WebEx uses Cassandra to store user feed and activity in near real time.[37]
  • Cloudkick uses Cassandra to store the server metrics of their users.[38]
  • Constant Contact uses Cassandra in their email and social media marketing applications.[39] Over 200 nodes are deployed.
  • Digg, a large social news website, announced on Sep 9th, 2009 that it is rolling out its use of Cassandra[40] and confirmed this on March 8, 2010.[41] TechCrunch has since linked Cassandra to Digg v4 reliability criticisms and recent company struggles.[42] Lead engineers at Digg later rebuked these criticisms as red herring and blamed a lack of load testing.[43]
  • Facebook used Cassandra to power Inbox Search, with over 200 nodes deployed.[44] This was abandoned in late 2010 when they built Facebook Messaging platform on HBase as they "found Cassandra's eventual consistency model to be a difficult pattern".[45]
  • 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[46]
  • IBM has done research in building a scalable email system based on Cassandra.[47]
  • Mahalo.com uses Cassandra to record user activity logs and topics for their Q&A website[48][49]
  • Netflix uses Cassandra as their back-end database for their streaming services[50][51]
  • Nutanix appliances use Cassandra to store metadata and stats.[52]
  • Ooyala built a scalable, flexible, real-time analytics engine using Cassandra[53]
  • Openwave uses Cassandra as a distributed database and as a distributed storage mechanism for their next generation messaging platform[54]
  • OpenX is running over 130 nodes on Cassandra for their OpenX Enterprise product to store and replicate advertisements and targeting data for ad delivery[55]
  • 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."[56]
  • PostRank used Cassandra as their backend database[57]
  • Rackspace is known to use Cassandra internally.[58]
  • Reddit switched to Cassandra from memcacheDB on March 12, 2010[59] and experienced some problems in May due to insufficient nodes in their cluster.[60]
  • RockYou uses Cassandra to record every single click for 50 million Monthly Active Users in real-time for their online games[61]
  • SoundCloud uses Cassandra to store the dashboard of their users[62]
  • Talentica Software uses Cassandra as a back-end for Analytics Application with Cassandra cluster of 30 nodes and inserting around 200GB data on daily basis.[63][not in citation given]
  • Tibbo Systems uses Cassandra as configuration and event storage for AggreGate Platform.
  • Twitter announced it was planning to move entirely from MySQL to Cassandra,[64][65] though soon after retracted this, keeping Tweets in MySQL while using Cassandra for analytics.[66]
  • Urban Airship uses Cassandra with the mobile service hosting for over 160 million application installs across 80 million unique devices[67]
  • Wikimedia uses Cassandra as backend storage for its public-facing REST Content API.[68]
  • Zoho uses Cassandra for generating the inbox preview in their Zoho#Zoho Mail service

Facebook moved off its pre-Apache Cassandra deployment in late 2010 when they replaced Inbox Search with the Facebook Messaging platform.[45] In 2012, Facebook began using Apache Cassandra in its Instagram unit.[69]

Cassandra is the most popular wide column store,[70] and in September 2014 surpassed Sybase to become the 9th most popular database, close behind Microsoft Access and SQLite.[71]

See also

Academic background

Commercial companies

Alternatives

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. http://kellabyte.com/2013/01/04/the-meaning-behind-the-name-of-apache-cassandra/
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. 17.0 17.1 Lua error in package.lua at line 80: module 'strict' not found.
  18. "Hadoop Support" article on Cassandra's wiki
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. Lua error in package.lua at line 80: module 'strict' not found.
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. Lua error in package.lua at line 80: module 'strict' not found.
  30. Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.
  32. Luca Martinetti: Apple runs more than 100k [production] Cassandra nodes. on TwitterLua error in Module:WikidataCheck at line 28: attempt to index field 'wikibase' (a nil value).
  33. Lua error in package.lua at line 80: module 'strict' not found.
  34. Lua error in package.lua at line 80: module 'strict' not found.
  35. Lua error in package.lua at line 80: module 'strict' not found.
  36. Lua error in package.lua at line 80: module 'strict' not found.
  37. Lua error in package.lua at line 80: module 'strict' not found.
  38. 4 Months with Cassandra, a love story |Cloudkick, manage servers better
  39. Lua error in package.lua at line 80: module 'strict' not found.
  40. Lua error in package.lua at line 80: module 'strict' not found.
  41. Lua error in package.lua at line 80: module 'strict' not found.
  42. Lua error in package.lua at line 80: module 'strict' not found.
  43. Lua error in package.lua at line 80: module 'strict' not found.
  44. Lua error in package.lua at line 80: module 'strict' not found.
  45. 45.0 45.1 Lua error in package.lua at line 80: module 'strict' not found.
  46. Lua error in package.lua at line 80: module 'strict' not found.
  47. Lua error in package.lua at line 80: module 'strict' not found.
  48. Lua error in package.lua at line 80: module 'strict' not found.
  49. Watch Cassandra at Mahalo.com |DataStax Episodes |Blip
  50. Lua error in package.lua at line 80: module 'strict' not found.
  51. Lua error in package.lua at line 80: module 'strict' not found.
  52. Lua error in package.lua at line 80: module 'strict' not found.
  53. Lua error in package.lua at line 80: module 'strict' not found.
  54. Lua error in package.lua at line 80: module 'strict' not found.
  55. Ad Serving Technology - Advanced Optimization, Forecasting, & Targeting |OpenX
  56. Lua error in package.lua at line 80: module 'strict' not found.
  57. Lua error in package.lua at line 80: module 'strict' not found.
  58. Lua error in package.lua at line 80: module 'strict' not found.
  59. Lua error in package.lua at line 80: module 'strict' not found.
  60. Lua error in package.lua at line 80: module 'strict' not found.
  61. Lua error in package.lua at line 80: module 'strict' not found.
  62. Lua error in package.lua at line 80: module 'strict' not found.
  63. cite web|url=http://www.talentica.com[not in citation given]
  64. Lua error in package.lua at line 80: module 'strict' not found.
  65. Lua error in package.lua at line 80: module 'strict' not found.
  66. Lua error in package.lua at line 80: module 'strict' not found.
  67. Lua error in package.lua at line 80: module 'strict' not found.
  68. Lua error in package.lua at line 80: module 'strict' not found.
  69. Lua error in package.lua at line 80: module 'strict' not found.
  70. Lua error in package.lua at line 80: module 'strict' not found.
  71. Lua error in package.lua at line 80: module 'strict' not found.

Bibliography

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.

External links

Lua error in package.lua at line 80: module 'strict' not found.

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found. From the OSCON 2009 talk on RDBMS vs. Dynamo, BigTable, and Cassandra.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.