History
Avinash Lakshman, one of the authors of Amazon's Dynamo, and Prashant Malik initially developed Cassandra atReleases
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.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.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: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. AManagement 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
* Bigtable - Original distributed database by Google * Distributed database * Distributed hash table (DHT) * Dynamo (storage system) - Cassandra borrows many elements from Dynamo * Scylla - a distributed data store written in C++ that's API-compatible with CassandraReferences
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