Apache Cassandra

Cassandra is a free and open-source, distributed, wide-column store, NoSQL 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 support for clusters spanning multiple data centers, with asynchronous masterless replication allowing low latency operations for all clients. Cassandra was designed to implement a combination of Amazon's Dynamo distributed storage and replication techniques combined with Google's Bigtable data and storage engine model.

Apache Cassandra
Original author(s)Avinash Lakshman, Prashant Malik / Facebook
Developer(s)Apache Software Foundation
Initial releaseJuly 2008; 15 years ago (2008-07)
Stable release
4.1.3 Edit this on Wikidata / 24 July 2023; 8 months ago (24 July 2023)
Repository
Written inJava
Operating systemCross-platform
Available inEnglish
TypeNoSQL Database, data store
LicenseApache License 2.0
Websitecassandra.apache.org Edit this on Wikidata

History

Avinash Lakshman, one of the authors of Amazon's Dynamo, and Prashant Malik initially developed Cassandra at Facebook to power the Facebook inbox search feature. Facebook released Cassandra as an open-source project on Google code in July 2008. In March 2009, it became an Apache Incubator project. On February 17, 2010, it graduated to a top-level project.

Facebook developers named their database after the Trojan mythological prophet Cassandra, with classical allusions to a curse on an oracle.

Releases

Releases after graduation include

  • 0.6, released Apr 12 2010, added support for integrated caching, and Apache Hadoop MapReduce
  • 0.7, released Jan 08 2011, added secondary indexes and online schema changes
  • 0.8, released Jun 2 2011, added the Cassandra Query Language (CQL), self-tuning memtables, and support for zero-downtime upgrades
  • 1.0, released Oct 17 2011, added integrated compression, leveled compaction, and improved read-performance
  • 1.1, released Apr 23 2012, added self-tuning caches, row-level isolation, and support for mixed ssd/spinning disk deployments
  • 1.2, released Jan 2 2013, added clustering across virtual nodes, inter-node communication, atomic batches, and request tracing
  • 2.0, released Sep 4 2013, added lightweight transactions (based on the Paxos consensus protocol), triggers, improved compactions
  • 2.1 released Sep 10 2014
  • 2.2 released July 20, 2015
  • 3.0 released November 11, 2015
  • 3.1 through 3.10 releases were monthly releases using a tick-tock-like release model, with even-numbered releases providing both new features and bug fixes while odd-numbered releases will include bug fixes only.
  • 3.11 released June 23, 2017 as a stable 3.11 release series and bug fix from the last tick-tock feature release.
  • 4.0 released July 26, 2021.
  • 4.1 released December 13, 2022.
  • 4.1.4 released February 14, 2024.
Version Original release date Latest version Release date Status
Old version, no longer maintained: 0.6 2010-04-12 0.6.13 2011-04-18 No longer maintained
Old version, no longer maintained: 0.7 2011-01-10 0.7.10 2011-10-31 No longer maintained
Old version, no longer maintained: 0.8 2011-06-03 0.8.10 2012-02-13 No longer maintained
Old version, no longer maintained: 1.0 2011-10-18 1.0.12 2012-10-04 No longer maintained
Old version, no longer maintained: 1.1 2012-04-24 1.1.12 2013-05-27 No longer maintained
Old version, no longer maintained: 1.2 2013-01-02 1.2.19 2014-09-18 No longer maintained
Old version, no longer maintained: 2.0 2013-09-03 2.0.17 2015-09-21 No longer maintained
Old version, no longer maintained: 2.1 2014-09-16 2.1.22 2020-08-31 No longer maintained
Old version, no longer maintained: 2.2 2015-07-20 2.2.19 2020-11-04 No longer maintained
Older version, yet still maintained: 3.0 2015-11-09 3.0.29 2023-05-15 Maintained until 5.0.0 release (Nov-Dec 2023)
Older version, yet still maintained: 3.11 2017-06-23 3.11.15 2023-05-05 Maintained until 5.0.0 release (Nov-Dec 2023)
Older version, yet still maintained: 4.0 2021-07-26 4.0.9 2023-04-14 Maintained until 5.1.0 release (~July 2024)
Current stable version: 4.1 2022-06-17 4.1.4 2024-02-14 Latest release
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

Main features

    Distributed
    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. 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
    Designed to have read and write throughput both increase linearly as new machines are added, with the aim of 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
    Cassandra is typically classified as an AP system, meaning that availability and partition tolerance are generally considered to be more important than consistency in Cassandra, 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
    Cassandra introduced the Cassandra Query Language (CQL). CQL is a simple interface for accessing Cassandra, as an alternative to the traditional Structured Query Language (SQL).
    Eventual consistency
    Cassandra manages eventual consistency of reads, upserts and deletes through Tombstones.

Cassandra Query Language

Cassandra introduced the Cassandra Query Language (CQL). CQL is a simple interface for accessing Cassandra, as an alternative to the traditional Structured Query Language (SQL). CQL adds an abstraction layer that hides implementation details of this structure and provides native syntaxes for collections and other common encodings. Language drivers are available for Java (JDBC), Python (DBAPI2), Node.JS (Datastax), Go (gocql) and C++.

The keyspace in Cassandra is a namespace that defines data replication across nodes. Therefore, replication is defined at the keyspace level. Below an example of keyspace creation, including a column family in CQL 3.0:

CREATE KEYSPACE MyKeySpace   WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 3 };  USE MyKeySpace;  CREATE COLUMNFAMILY MyColumns (id text, lastName text, firstName text, PRIMARY KEY(id));  INSERT INTO MyColumns (id, lastName, firstName) VALUES ('1', 'Doe', 'John');  SELECT * FROM MyColumns; 

Which gives:

 id | lastName | firstName ----+----------+----------   1 | Doe      | John  (1 rows) 

Known issues

Up to Cassandra 1.0, Cassandra was not row-level consistent, meaning that inserts and updates into the table that affect the same row that are processed at approximately the same time may affect the non-key columns in inconsistent ways. One update may affect one column while another affects the other, resulting in sets of values within the row that were never specified or intended. Cassandra 1.1 solved this issue by introducing row-level isolation.

Cassandra is not supported on Windows as of version 4, see issue CASSANDRA-16171.

Tombstones

Deletion markers called "Tombstones" are known to cause severe performance degradation.

Data model

Cassandra is wide column store, and, as such, essentially a hybrid between a key-value and a tabular database management system. Its data model is a partitioned row store with tunable consistency. 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. Other columns may be indexed separately from the primary key.

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

Cassandra cannot do joins or subqueries. Rather, Cassandra emphasizes denormalization through features like collections.

A column family (called "table" since CQL 3) resembles a table in an RDBMS (Relational Database Management System). 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.

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.

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). Nodetool also offers a number of commands to return Cassandra metrics pertaining to disk usage, latency, compaction, garbage collection, and more.

Since Cassandra 2.0.2 in 2013, measures of several metrics are produced via the Dropwizard metrics framework, and may be queried via JMX using tools such as JConsole or passed to external monitoring systems via Dropwizard-compatible reporter plugins.

See also

References

Tags:

Apache Cassandra HistoryApache Cassandra Main featuresApache Cassandra Management and monitoringApache Cassandra BibliographyApache CassandraBigtableCommodity computingComputer clusterDatabaseDistributed databaseDynamo (storage system)Free and open-source softwareNoSQLSingle point of failureWide-column store

🔥 Trending searches on Wiki English:

Diana, Princess of WalesJude BellinghamSexShivam DubeOppenheimer (film)Cloud seedingHarry PotterJarrad BranthwaiteBluey (2018 TV series)Mount TakaheThe World's BillionairesJames ClavellAparna DasThe Satanic VersesHamasAmy SchumerArne SlotEuropean UnionFranklin D. RooseveltDhruv RatheeJoe LigonDouglas C-54 SkymasterJesusMichael J. FoxWilliam Adams (sailor, born 1564)WWEEiza GonzálezThe Eras TourBridgertonFrom (TV series)RussiaMauricio PochettinoGame of ThronesFallout 3Mahatma Gandhi1993 Bishopsgate bombingThe Talented Mr. Ripley (film)Lovely RunnerTimothée ChalametRishi SunakThe Idea of YouGeorge SorosFallout (American TV series)List of constituencies of the Lok SabhaSandeep WarrierOpenAIList of countries by GDP (nominal)HTTP 404XNXXNewcastle United F.C.Caitlin ClarkGeorge VIWilliam, Prince of WalesAncient grainsJoe AlwynEurovision Song Contest 2024FascismFahadh FaasilJaden McDanielsEuphoria (American TV series)Donte DiVincenzoArti SinghPassoverKim Jong UnBasque languageWish (film)Passover SederFallout (series)PolandElizabeth IIJean-Philippe MatetaUnited Arab EmiratesLos AngelesInstagramAbraham LincolnDaniel SturridgeSydney SweeneyImmaculate (2024 film)🡆 More