Refcardz

Apache Cassandra: A Fault-Tolerant, Massively Scalable NoSQL Database

  • Tweet
  • spacer
spacer

Apache Cassandra

A Fault-Tolerant, Massively Scalable NoSQL Database

By Brian O'Neill

10,579 Downloads · Refcard 153 of 161 (see them all)

spacer

Download
FREE PDF


The Essential Apache Cassandra Cheat Sheet

Apache Cassandra is a high-performance, extremely scalable, fault tolerant (i.e., no single point of failure), distributed non-relational database solution. Cassandra combines all the benefits of Google Bigtable and Amazon Dynamo to handle the types of database management needs that traditional RDBMS vendors cannot support. DataStax is the leading worldwide commercial provider of Cassandra products, services, support, and training.
HTML Preview
Apache Cassandra

Apache Cassandra

By Brian O'Neill

Apache Cassandra is a high-performance, extremely scalable, fault tolerant (i.e., no single point of failure), distributed non-relational database solution. Cassandra combines all the benefits of Google Bigtable and Amazon Dynamo to handle the types of database management needs that traditional RDBMS vendors cannot support. DataStax is the leading worldwide commercial provider of Cassandra products, services, support, and training.

Who is using Cassandra?

Cassandra is in use at Netflix, Twitter, Urban Airship, Constant Contact, Reddit, Cisco, OpenX, Rackspace, Ooyala, and more companies that have large active data sets. The largest known Cassandra cluster has over 300 TB of data in over 400 machines.

(From: cassandra.apache.org/)

RDBMS vs. Cassandra

 

Cassandra

RDBMS

Atomicity Success or failure on a row-by-row basis. Enforced at every scope, at the cost of performance and scalability.
Sharding Native share-nothing architecture, inherently partitioned by a configurable strategy. Often forced when scaling, partitioned by key or function
Consistency No consistency in the ACID sense. Can be tuned to provide consistency in the CAP sense--data is consistent across all the nodes in a distributed database cluster ,guaranteeing read-after-write or eventual readability. Favors consistency over availability tunable via isolation levels.
Durability Writes are durable to a replica node, being recorded in memory and the commit log before acknowledged. In the event of a crash, the commit log replays on restart to recover any lost writes before data is flushed to disk. Typically, data is written to a single master node, sometimes configured with synchronous replication at the cost of performance and cumbersome data restoration.
Multi-Datacenter Replication Native capabilities for data replication over lower bandwidth, higher latency, less reliable connections. Typically only limited long-distance replication to read-only slaves receiving asynchronous updates.
Security Coarse-grained and primitive. Fine-grained access control to objects.

Data Model Overview

Cassandra has a simple schema comprising keyspaces, column families, rows, and columns.

  Definition RDBMS Analogy Object Equivalent
Schema/ Keyspace A collection of column families. Schema/Database Set
Table/ Column Family A set of rows. Table Map
Row An ordered set of columns. Row OrderedMap
Column A key/value pair and timestamp. Column (Name, Value) (key, value, timestamp)

Schema

Also known as a keyspace, the schema is akin to a database or schema in RDBMS and contains a set of tables. A schema is also the unit for Cassandra's access control mechanism. When enabled, users must authenticate to access and manipulate data in a schema or table.

Table

A table, also known as a column family, is a map of rows. A table defines the column names and data types. The client application provides rows that conform to the schema. Each row has the same fixed set of columns. As values for these properties, Cassandra provides the following CQL data types for columns.

As Values for these properties, Cassandra provides the following CQL data types for columns.

Type Purpose Storage
ascii Efficient storage for simple ASCII strings. Arbitrary number of ASCII bytes (i.e., values are 0-127).
boolean True or False. Single byte.
blob Arbitrary byte content. Arbitrary number of byes.
CompositeType A single type comprising sub-components each with their own types. An arbitrary number of bytes comprising concatenated values of the subtypes..
counter Used for counters, which are cluster-wide incrementing values. 8 bytes.
timestamp Stores time in milliseconds. 8 bytes.
decimal Stores BigDecimals. 4 bytes to store the scale, plus an arbitrary number of bytes to store the value.
double Stores Doubles. 8 bytes.
float Stores Floats. 4 bytes.
int Stores 4-byte integer. 4 bytes.
varint Stores variable precision integer. An arbitraty number of bytes used to store the value.
bigint Stores Longs. 8 bytes.
text, varchar Stores text as UTF8. UTF8.
uuid Suitable for UUID storage. 16 bytes.

Rows

Cassandra 1.1 supports tables defined with composite primary keys. The first column in a composite key definition is used as the partition key. Remaining columns are automatically clustered. Rows that share a partition key are sorted by the remaining components of the primary key.

Columns

A column is a triplet: key, value, and timestamp. The validation and comparator on the column family define how Cassandra sorts and stores the bytes in column keys.
The timestamp portion of the column is used to sequence mutations. The timestamp is defined and specified by the client and can be anything the client wishes to use.  By convention, the timestamp is typically microseconds since epoch.  If time-based, clients must be careful to synchronize clocks.

Columns may optionally have a time-to-live (TTL), after which Cassandra asynchronously deletes them.

spacer

Originally SuperColumns were one of Cassandra’s data model primitives.  Although they are still supported in the API, we recommend you use CompositeTypes instead.

Cassandra Architecture

Cassandra uses a ring architecture. The ring represents a cyclic range of token values (i.e., the token space).  Each node is assigned a position on the ring based on its token.   A node is responsible for all tokens between its initial token and the initial token of the closest previous node along the ring.

Partitioning

Keys are mapped into the token space by a partitioner. The important distinction between the partitioners is order preservation (OP). Users can define their own partitioners by implementing IPartitioner, or they can use one of the native partitioners:

  Map Function Token Space OP
RandomPartitioner MD5 BigInteger No
BytesOrderPartitioner Identity Bytes Yes

The following examples illustrate this point.

Random Partitioner

Since the Random Partitioner uses an MD5 hash function to map keys into tokens, on average those keys will evenly distribute across the cluster. For this reason, RandomPartitioner is the default partitioner.

The row key determines the node placement:

Row Key      
Lisa state: CA graduated: 2008 gender: F
Owen state: TX gender: M  
Collin state: UT gender: M  

This may result in following ring formation, where "collin", "owen", and "lisa" are rowkeys.

spacer

With Cassandra’s storage model, where each node owns the preceding token space, this results in the following storage allocation based on the tokens.

Row Key MD5 Hash Node
collin CC982736AD62AB 3
owen 9567238FF72635 2
lisa 001AB62DE123FF 1

Notice that the keys are not in order. With RandomPartitioner, the keys are evenly distributed across the ring using hashes, but you sacrifice order, which means any range query needs to query all nodes in the ring.

Order Preserving Partitioners (OPP)

The Order Preserving Partitioners preserve the order of the row keys as they are mapped into the token space. 

In our example, since:

"collin" < "lisa" < "owen"

then,

token("collin") < token("lisa") < token("owen")

With OPP, range queries are simplified and a query may not need to consult each node in the ring.  This seems like an advantage, but it comes at a price.  Since the partitioner is preserving order, the ring may become unbalance unless the rowkeys are naturally distributed across the token space. 

This is illustrated below.

spacer

To manually balance the cluster, you can set the initial token for each node in the Cassandra configuration.

spacer

If possible, it is best to design your data model to use RandomPartitioner to take advantage of the automatic load balancing and decreased administrative overhead of manually managing token assignment.

Replication

Cassandra provides high availability and fault tolerance through data replication.  The replication uses the ring to determine nodes used for replication.   Each keyspace has an independent replication factor, n.  When writing information, the data is written to the target node as determined by the partitioner and n-1 subsequent nodes along the ring.

There are two replication strategies: SimpleStrategy and NetworkTopologyStrategy.

SimpleStrategy

The SimpleStrategy is the default strategy and blindly writes the data to subsequent nodes along the ring.  In the previous example with a replication factor of 2, this would result in the following storage allocation.

Row Key Replica 1
(as determined by partitioner)
Replica 2
(found by traversing the ring)
collin 3 1
owen 2 3
lisa 1 2

NetworkTopologyStrategy

The NetworkTopologyStrategy is useful when deploying to multiple data centers. It ensures data is replicated across data centers.

Effectively, the NetworkTopologyStrategy executes the SimpleStrategy independently for each data center, spreading replicas across distant racks. Cassandra writes a copy in each data center as determined by the partitioner. Data is written simultaneously along the ring to subsequent nodes within that data center with preference for nodes in different racks to offer resilience to hardware failure. All nodes are peers and data files can be loaded through any node in the cluster, eliminating the single point of failure inherent in master-slave architecture and making Cassandra fully fault-tolerant and highly available.

Given the following ring and deployment topology:

spacer

With blue nodes (N1-N3) deployed to one data center (DC1), red nodes (N4-N6) deployed to another data center (DC2), and a replication factor of 4, Cassandra would write a row with key “lisa” as follows.

NOTE: Cassandra attempts to write data simultaneously to all target nodes then waits for confirmation from the relevant number of nodes needed to satisfy the specified consistency level.

Consistency Levels

One of the unique characteristics of Cassandra that sets it apart from other databases is its approach to consistency.  Clients can specify the consistency level on both read and write operations trading off between high availability, consistency, and performance.

Write

Level Expectation
ANY The write was logged, but the data may not be available for reads immediately. This is useful where you need high availability for writes but only eventual consistency on reads.
ONE Data is committed to at least one replica and is available for reads.
TWO Data is committed to at least two replicas and is available for reads.
THREE Data is committed to at least three replicas and is available for reads.
QUORUM Data is committed to at least n/2+1 replicas and is available for reads, where n is the replication factor.
LOCAL_QUORUM Data is committed to at least n/2+1 replicas within the local data center.
EACH_QUORUM Data is committed to at least n/2+1 replicas within each data center.
ALL Data is committed to and available from all n replicas. This is useful when absolute read consistency and/or fault tolerance are necessary (e.g., online disaster recovery).

Read

Level Expectation
ONE The client receives data from the first replica to respond.
TWO The client receives the most current data between two replicas based on the timestamps.
THREE The client receives the most current data between three replicas based on the timestamps.
QUORUM The client receives the most current data once n/2+1 replicas have responded.
LOCAL_QUORUM The client receives the most current data once n/2+1 replicas have responded within the local data center.
EACH_QUORUM The client receives the most current data once n/2+1 replicas have responded within each data center.
ALL The client receives the most current data once all replicas have responded

Network Topology

As input into the replication strategy and to efficiently route communication, Cassandra uses a snitch to determine the data center and rack of the nodes in the cluster.  A snitch is a component that detects and informs Cassandra about the network topology of the deployment. 

The snitch dictates what is used in the strategy options to identify replication groups when configuring replication for a keyspace.

Nodes Rack DC Reason
N4 3 2 As determined by partitioner in DC1.
N2 1 1 As determined by partitioner in DC2.
N6 4 2 Preference shown for Rack 4 (over Rack 3).
N3 1 1 Written to same rack hosting N2 since no other rack was available.
.

The following table shows the four snitches provided by Cassandra and what you should use in your keyspace configuration for each snitch.

Snitch Specify
SimpleSnitch Specify only the replication factor in your strategy options.
PropertyFileSnitch Specify the data center names from your properties file in the keyspace strategy options.
RackInferringSnitch Specify the second octet of the IPv4 address in your keyspace strategy options.
EC2Snitch Specify the region name in the keyspace strategy options.

SimpleSnitch

The SimpleSnitch provides Cassandra no information regarding racks or data centers.  It is the default setting and is useful for simple deployments where all servers are collocated.

PropertyFileSnitch

The PropertyFileSnitch allows users to be explicit about their network topology.  The user specifies the topology in a properties file, cassandra-topology.properties.  The file specifies which nodes belong to which racks and data centers.  Below is an example property file for our sample cluster.

# DC1
192.168.0.1=DC1:RAC1
192.168.0.2=DC1:RAC1
192.168.0.3=DC1:RAC2

# DC2
192.168.1.4=DC2:RAC3
192.168.1.5=DC2:RAC3
192.168.1.6=DC2:RAC4

# Default for nodes
default=DC3:RAC5

RackInferringSnitch

The RackInferringSnitch infers network topology by convention.  From the IPv4 address (e.g., 9.100.47.75), the snitch uses the following convention to identify the data center and rack:

Octet Example Indicates
1 9 Nothing
2 100 Data Center
3 47 Rack
4 75 Node

EC2Snitch

The EC2Snitch is useful for deployments to Amazon's EC2. It uses Amazon's API to examine the regions to which nodes are deployed. It then treats each region as a separate data center.

EC2MultiRegionSnitch

Use this snitch for deployments on Amazon EC2 where the cluster spans multiple regions. This snitch treats data centers and availability zones as racks within a data center and uses public IPs as broadcast_address to allow cross-region connectivity. Cassandra nodes in one EC2 region can bind to nodes in another region, thus enabling multi-data center support.

Querying/Indexing

Cassandra provides simple primitives. Its simplicity allows it to scale linearly with high availability and very little performance degradation.   That simplicity allows for extremely fast read and write operations for specific keys, but servicing more sophisticated queries that span keys requires pre-planning.

Using the primitives that Cassandra provides, you can construct indexes that support exactly the query patterns of your application.  Note, however, that queries may not perform well without properly designing your schema.

Secondary Indexes

To satisfy simple query patterns, Cassandra provides a native indexing capability called Secondary Indexes. A column family may have multiple secondary indexes. A secondary index is hash-based and uses specific columns to provide a reverse lookup mechanism from a specific column value to the relevant row keys. Under the hood, Cassandra maintains hidden column families that store the index. The strength of Secondary Indexes is allowing queries by value. Secondary indexes are built in the background automatically without blocking reads or writes. To create a Secondary Index using CQL is straight-forward. For example, define a table of data about movie fans, and then create a secondary index of states where they live:

CREATE TABLE fans ( watcherID uuid, favorite_actor text, address text, zip int, state text PRIMARY KEY (watcherID) );

CREATE INDEX watcher_state ON fans (state);

Range Queries

It is important to consider partitioning when designing your schema to support range queries.

Range Queries with Order Preservation

Since order is preserved, order preserving partitioners better supports range queries across a range of rows.  Cassandra only needs to retrieve data from the subset of nodes responsible for that range.  For example, if we are querying against a column family keyed by phone number and we want to find all phone numbers between that begin with 215-555, we could create a range query with start key 215-555-0000 and end key 215-555-9999.

To service this request with OrderPreservingPartitioning, it’s possible for Cassandra to compute the two relevant tokens: token(215-555-0000) and token(215-555-9999).

Then satisfying that querying simply means consulting nodes responsible for that token range and retrieving the rows/tokens in that range.

Range Queries with Random Partitioning

The RandomPartitioner provides no guarantees of any kind between keys and tokens.  In fact, ideally row keys are distributed around the token ring evenly.  Thus, the corresponding tokens for a start key and end key are not useful when trying to retrieve the relevant rows

gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.