Apache Cassandra
   HOME

TheInfoList



OR:

Cassandra is a
free and open-source Free and open-source software (FOSS) is a term used to refer to groups of software consisting of both free software and open-source software where anyone is freely licensed to use, copy, study, and change the software in any way, and the source ...
, distributed,
wide-column store A wide-column store (or extensible record store) is a type of NoSQL database.Wide Column Stores
,
NoSQL A NoSQL (originally referring to "non- SQL" or "non-relational") database provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases. Such databases have existed ...
database In computing, a database is an organized collection of data stored and accessed electronically. Small databases can be stored on a file system, while large databases are hosted on computer clusters or cloud storage. The design of databases ...
management system designed to handle large amounts of data across many commodity servers, providing high availability with no
single point of failure A single point of failure (SPOF) is a part of a system that, if it fails, will stop the entire system from working. SPOFs are undesirable in any system with a goal of high availability or reliability, be it a business practice, software ap ...
. Cassandra offers support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients. Cassandra was designed to implement a combination of Amazon's
Dynamo "Dynamo Electric Machine" (end view, partly section, ) A dynamo is an electrical generator that creates direct current using a commutator. Dynamos were the first electrical generators capable of delivering power for industry, and the foundati ...
distributed storage and replication techniques combined with Google's Bigtable data and storage engine model.


History

Avinash Lakshman, one of the authors of Amazon's Dynamo, and Prashant Malik initially developed Cassandra at
Facebook Facebook is an online social media and social networking service owned by American company Meta Platforms. Founded in 2004 by Mark Zuckerberg with fellow Harvard College students and roommates Eduardo Saverin, Andrew McCollum, Dust ...
to power the Facebook inbox search feature. Facebook released Cassandra as an open-source
project A project is any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned to achieve a particular goal. An alternative view sees a project managerially as a sequence of even ...
on
Google code Google Developers (previously Google Code) , application programming interfaces (APIs), and technical resources. The site contains documentation on using Google developer tools and APIs—including discussion groups and blogs for developers usin ...
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 Cassandra or Kassandra (; Ancient Greek: Κασσάνδρα, , also , and sometimes referred to as Alexandra) in Greek mythology was a Trojan priestess dedicated to the god Apollo and fated by him to utter true prophecies but never to be belie ...
, with classical allusions to a curse on an
oracle An oracle is a person or agency considered to provide wise and insightful counsel or prophetic predictions, most notably including precognition of the future, inspired by deities. As such, it is a form of divination. Description The word ...
.


Releases

Releases after graduation include * 0.6, released Apr 12 2010, added support for integrated caching, and
Apache Hadoop Apache Hadoop () is a collection of open-source software utilities that facilitates using a network of many computers to solve problems involving massive amounts of data and computation. It provides a software framework for distributed storage a ...
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.0.1 released September 7, 2021. * 4.0.2 released February 8, 2022. * 4.0.3 released February 17, 2022. * 4.0.4 released May 13, 2022. * 4.0.5 released July 18, 2022. * 4.0.6 released August 25, 2022. * 4.0.7 released October 23, 2022.


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 In classical deductive logic, a consistent theory is one that does not lead to a logical contradiction. The lack of contradiction can be defined in either semantic or syntactic terms. The semantic definition states that a theory is consistent ...
, all the way from "writes never fail" to "block for all replicas to be readable", with the quorum level in the middle. ; MapReduce support : Cassandra has Hadoop integration, with MapReduce support. There is support also for Apache Pig and Apache Hive."Hadoop Support"
article on Cassandra's wiki
; 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 A headstone, tombstone, or gravestone is a stele or marker, usually stone, that is placed over a grave. It is traditional for burials in the Christian, Jewish, and Muslim religions, among others. In most cases, it has the deceased's name, da ...
.


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 = ; 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 A wide-column store (or extensible record store) is a type of NoSQL database.Wide Column Stores
, 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 Java Management Extensions (JMX) is a Java technology that supplies tools for managing and monitoring applications, system objects, devices (such as printers) and service-oriented networks. Those resources are represented by objects called MBea ...
(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 JConsole is a graphical monitoring tool to monitor Java Virtual Machine (JVM) and Java applications both on a local or remote machine. JConsole uses underlying features of Java Virtual Machine to provide information on performance and resource cons ...
or passed to external monitoring systems via Dropwizard-compatible reporter plugins.


See also

* Bigtable - Original distributed database by Google * Distributed database * Distributed hash table (DHT) *
Dynamo (storage system) Dynamo is a set of techniques that together can form a highly available key-value structured storage system or a distributed data store. It has properties of both databases and distributed hash tables (DHTs). It was created to help address some ...
- Cassandra borrows many elements from Dynamo *
Scylla In Greek mythology, Scylla), is obsolete. ( ; grc-gre, Σκύλλα, Skúlla, ) is a legendary monster who lives on one side of a narrow channel of water, opposite her counterpart Charybdis. The two sides of the strait are within an arrow's ran ...
- a distributed data store written in C++ that's API-compatible with Cassandra


References


Bibliography

* * *


External links

* * * * * * From the OSCON 2009 talk on RDBMS vs. Dynamo, Bigtable, and Cassandra. * * * * {{DEFAULTSORT:Cassandra (Database) 2008 software Apache Software Foundation Apache Software Foundation projects Big data products Bigtable implementations Column-oriented DBMS software for Linux Distributed data stores Facebook software Free database management systems NoSQL Structured storage