Sponsored Links

Selasa, 31 Oktober 2017

Sponsored Links

Definicion de la Base de Datos Apache Cassandra - YouTube
photo src: i.ytimg.com

Apache Cassandra is a free and open-source distributed 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 robust support for clusters spanning multiple datacenters, with asynchronous masterless replication allowing low latency operations for all clients.

Cassandra also places a high value on performance. In 2012, University of Toronto researchers studying NoSQL systems concluded that "In terms of scalability, there is a clear winner throughout our experiments. Cassandra achieves the highest throughput for the maximum number of nodes in all experiments" although "this comes at the price of high write and read latencies."


Video Apache Cassandra



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 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.

Maps Apache Cassandra



Main features

Decentralized
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
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.
MapReduce support
Cassandra has Hadoop integration, with MapReduce support. There is support also for Apache Pig and Apache Hive.
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 (Helenus), Go (gocql) and C++.

Below an example of keyspace creation, including a column family in CQL 3.0:

Which gives:


Apache Cassandra Architecture Design Decorating Classy Simple At ...
photo src: llxtb.com


Known issues

Cassandra is 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.


DataStax Cassandra Tutorials - Apache Cassandra Overview - YouTube
photo src: i.ytimg.com


Data model

Cassandra is essentially a hybrid between a key-value and a column-oriented (or 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. 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.


Cassandra Architecture | Home Interior Ekterior Ideas
photo src: bppmalta.com


Clustering

When the cluster for Apache Cassandra is designed, an important point is to select the right partitioner. Two partitioners exist:

  1. OrderPreservingPartitioner (OPP): This partitioner distributes the key-value pairs in a natural way so that similar keys are not far apart. The advantage is that fewer nodes have to be accessed. The drawback is the uneven distribution of the key-value pairs.
  2. RandomPartitioner (RP): This partitioner randomly distributes the key-value pairs over the network, resulting in a good load balancing. Compared to OPP, more nodes have to be accessed to get a number of keys.

CQL performance with Apache Cassandra 3.0 (Aaron Morton, The Last ...
photo src: i.ytimg.com


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. Additional metrics are available via JMX tools such as JConsole and via pluggable metrics reporters for external monitoring tools, which became available with Cassandra version 2.0.2.


Mastering Apache Cassandra Developer and Admin from Scratch ...
photo src: s-media-cache-ak0.pinimg.com


Prominent users

Cassandra is the most popular wide column store, and in September 2014 surpassed Sybase to become the 9th most popular database, close behind Microsoft Access and SQLite.

  • @WalmartLabs (previously Kosmix) uses Cassandra with SSD
  • Amadeus IT Group uses Cassandra for some of their back-end systems.
  • Apple uses 100,000 Cassandra nodes, as revealed at Cassandra Summit San Francisco 2015, although it has not elaborated for which products, services or features.
  • AppScale uses Cassandra as a back-end for Google App Engine applications
  • BlackRock uses Cassandra in their Aladdin investment management platform
  • CERN used Cassandra-based prototype for its ATLAS experiment to archive the online DAQ system's monitoring information
  • Cisco's WebEx uses Cassandra to store user feed and activity in near real time.
  • Cloudkick uses Cassandra to store the server metrics of their users.
  • Constant Contact uses Cassandra in their email and social media marketing applications. Over 200 nodes are deployed.
  • Digg, a large social news website, announced on Sep 9th, 2009 that it is rolling out its use of Cassandra and confirmed this on March 8, 2010. TechCrunch has since linked Cassandra to Digg v4 reliability criticisms and recent company struggles. Lead engineers at Digg later rebuked these criticisms as red herring and blamed a lack of load testing.
  • Discord uses Cassandra to store over 120 million messages per day.
  • Facebook used Cassandra to power Inbox Search, with over 200 nodes deployed. This was abandoned in late 2010 when they built Facebook Messaging platform on HBase as they "found Cassandra's eventual consistency model to be a difficult pattern". Facebook moved off its pre-Apache Cassandra deployment in late 2010 when they replaced Inbox Search with the Facebook Messaging platform. In 2012, Facebook began using Apache Cassandra in its Instagram unit.
  • Formspring uses Cassandra to count responses, as well as store Social Graph data (followers, following, blockers, blocking) for 26 Million accounts with 10 million responses a day
  • Globo.com uses Cassandra as a back-end database for their streaming services
  • IBM has done research in building a scalable email system based on Cassandra.
  • Mahalo.com uses Cassandra to record user activity logs and topics for their Q&A website
  • Netflix uses Cassandra as their back-end database for their streaming services
  • Nutanix appliances use Cassandra to store metadata and stats.
  • Ooyala built a scalable, flexible, real-time analytics engine using Cassandra
  • Openwave uses Cassandra as a distributed database and as a distributed storage mechanism for their next generation messaging platform
  • OpenX is running over 130 nodes on Cassandra for their OpenX Enterprise product to store and replicate advertisements and targeting data for ad delivery
  • Plaxo has "reviewed 3 billion contacts in [their] database, compared them with publicly available data sources, and identified approximately 600 million unique people with contact info."
  • Plexistor for Apache Cassandra delivers high capacity storage at near-memory speed, reducing the need for expensive memory and dedicated servers. Plexistor can be used in Amazon AWS as well as on premise, running on Linux OS or on Docker containers.
  • PostRank used Cassandra as their backend database
  • Rackspace uses Cassandra internally.
  • Reddit switched to Cassandra from memcacheDB on March 12, 2010 and experienced some problems in May due to insufficient nodes in their cluster.
  • RockYou uses Cassandra to record every single click for 50 million Monthly Active Users in real-time for their online games
  • SoundCloud uses Cassandra to store the dashboard of their users
  • Talentica Software uses Cassandra as a back-end for Analytics Application with Cassandra cluster of 30 nodes and inserting around 200GB data on a daily basis.
  • Tibbo Systems uses Cassandra as configuration and event storage for AggreGate Platform.
  • Twitter announced it was planning to move entirely from MySQL to Cassandra, though soon after retracted this, keeping Tweets in MySQL while using Cassandra for analytics.
  • Urban Airship uses Cassandra with the mobile service hosting for over 160 million application installs across 80 million unique devices
  • Wikimedia uses Cassandra as backend storage for its public-facing REST Content API.

Apache Cassandra Performance Tuning - YouTube
photo src: i.ytimg.com


See also

Academic background

  • Bigtable - Original distributed database by Google
  • Distributed database
  • Distributed hash table (DHT)
  • Dynamo (storage system) - Cassandra borrows many elements from Dynamo
  • NoSQL

Commercial companies

  • DataStax
  • Impetus Technologies
  • Cubet Techno Labs
  • Instaclustr

Alternatives

  • Apache Accumulo--Secure Apache Hadoop based distributed database.
  • Aerospike
  • Berkeley DB
  • Bigtable, available as part of Google Cloud Platform
  • Couchbase
  • CouchDB
  • Druid (open-source data store)
  • Amazon DynamoDB, part of Amazon Web Services
  • Apache HBase--Apache Hadoop based distributed database; very similar to Bigtable
  • HyperDex
  • Hypertable--Apache Hadoop based distributed database; very similar to Bigtable
  • MongoDB
  • Riak
  • Scylla Apache Cassandra compatible alternative written in C++

New Apache Cassandra and DataStax ODBC and JDBC Connectors
photo src: d117h1jjiq768j.cloudfront.net


References




Bibliography




External links

  • Lakshman, Avinash (2008-08-25). "Cassandra - A structured storage system on a P2P Network". Engineering @ Facebook's Notes. Retrieved 2014-06-17. 
  • "The Apache Cassandra Project". Forest Hill, MD, USA: The Apache Software Foundation. Retrieved 2014-06-17. 
  • "Project Wiki". Forest Hill, MD, USA: The Apache Software Foundation. Retrieved 2014-06-17. 
  • Hewitt, Eben (2010-12-01). "Adopting Apache Cassandra". infoq.com. InfoQ, C4Media Inc. Retrieved 2014-06-17. 
  • Lakshman, Avinash; Malik, Prashant (2009-08-15). "Cassandra - A Decentralized Structured Storage System" (PDF). cs.cornell.edu. The authors are from Facebook. Retrieved 2014-06-17. 
  • Ellis, Jonathan (2009-07-29). "What Every Developer Should Know About Database Scalability". slideshare.net. Retrieved 2014-06-17.  From the OSCON 2009 talk on RDBMS vs. Dynamo, Bigtable, and Cassandra.
  • "Cassandra-RPM - Red Hat Package Manager (RPM) build for the Apache Cassandra project". code.google.com. Menlo Park, CA, USA: Google Project Hosting. Retrieved 2014-06-17. 
  • Roth, Gregor (2012-10-14). "Cassandra by example - the path of read and write requests". slideshare.net. Retrieved 2014-06-17. 
  • Mansoor, Umer (2012-11-04). "A collection of Cassandra tutorials". Retrieved 2015-02-08. 
  • Bushik, Sergey (2012-10-22). "A vendor-independent comparison of NoSQL databases: Cassandra, HBase, MongoDB, Riak". NetworkWorld. Framingham, MA, USA and Staines, Middlesex, UK: IDG. Archived from the original on 2014-05-28. Retrieved 2014-06-17. 

Source of the article : Wikipedia

Comments
0 Comments