1 / 7

Exploring Apache Cassandra: Performance, Scalability, and the Evolution of NoSQL Databases

This lightning talk delves into the history and evolution of Apache Cassandra, a robust NoSQL database adopted widely since its inception at Facebook, influenced by Amazon Dynamo and Google Bigtable. The session covers key features including distributed design, fault tolerance, and scalability, highlighting Cassandra's unique data model with column families and arbitrary schemas. Performance benchmarks between MySQL and Cassandra showcase superior speed in reads and writes. Attendees will learn when to choose NoSQL over traditional SQL for their projects, emphasizing the importance of database selection based on specific needs.

calla
Download Presentation

Exploring Apache Cassandra: Performance, Scalability, and the Evolution of NoSQL Databases

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lightning Talk: Apache Cassandra Casey Foster Michael Phillips

  2. History Started at Facebook Amazon Dynamo Google BigTable OpenSource, adopted by Apache

  3. Design Distributed Fault tolerance Scalability Unusual Data Model

  4. Data Model One Data Store (associative array) Column Families (like tables) Arbitrary schema within families (super columns) See board!

  5. Facebook Performance Benchmark • MySQL with over 50 GB of Data • - Writes Average: ~300ms • - Reads Average: ~350ms • Cassandra with over 50 GB of Data • - Writes Average: 0.12ms • - Reads Average: 15ms • And this is why…

  6. Facebook Example • To the board!

  7. NoSQL New Hotness? • NoSQL • - Fewer index searches • - Faster reads and writes • - Less expensive to scale (disk space vs CPU) • SQL • - Queries are much more flexible • - Much more mature and stable • The right database depends on the project!!!

More Related