|
An introduction to Cassandra Database |
|
|
2011-11-02 18:48:36 |
| |
Cassandra - A Decentralized Structured Storage System
Cassandra is one of the most interesting non-relational database out there today. Originally developed by Facebook. Cassandra was open sourced by Facebook in 2008, and is now developed by Apache committers and contributors from many companies. The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamos fully distributed design and Big tables Column Family based data model.
Here are the features and specialties of Cassandra database
Proven technology
Cassandra is in use at Digg, Facebook, Twitter, Reddit, Rackspace, Cloudkick, Cisco, SimpleGeo, Ooyala, OpenX, and more companies that have large, active data sets. The largest production cluster has over 100 TB of data in over 150 machines.
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.
Decentralized
Every node in the cluster is identical. There are no network bottlenecks. There are no single points of failure.
You are in Control
Choose between synchronous or asynchronous replication for each update. Highly available asynchronous operations are optimized with features like Hinted Hand off and Read Repair.
Rich Data Model
Allows efficient use for many applications beyond simple key/value.
Elastic
Read and write throughput both increase linearly as new machines are added, with no downtime or interruption to applications.
Durable
Cassandra is suitable for applications that cant afford to lose data, even when an entire data center goes down.
Professionally Supported
Cassandra support contracts and services are available from third parties. |
|
External References |
|
http://en.wikipedia.org/wiki/Apache_Cassandra
http://en.wikipedia.org/wiki/NoSQL
http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=5778745
http://cassandra.apache.org/
http://www.nosqldatabases.com/main/tag/avinash-lakshman
http://www.eflorenzano.com/blog/post/my-thoughts-nosql/
http://css.dzone.com/articles/cassandra-nosql-database
|
|
Top |