Skip to content

pawanit17/cassandra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 

Repository files navigation

cassandra

  • Note: Most screenshots are from DataStax YouTube videos.

Goal

  • :target: Get a good idea by 15th of October.

Why - what problem does Cassandra solve?

  • RDBMS are written when memory was costly. Hence Normal Forms are built around reducing duplication.
  • This means that application metadata will be divided into tables that are then joined to yield the needed results.
  • Joins become expensive as the data grows exponentially.
  • RDBMS are more oriented towards deployment onto a single server. They do support partitioning & with indexing they may offer some performance respite.
  • But with distributed applications also come a need for replication/fault tolerance, which RDBMS are not capable of doing. The replication schemes offered are actually asynchronous in nature. Serving users world wide becomes a challenge. and would result in returning stale results. This means it is not longer A'C'ID compliant.
  • This is where NoSQL databases come into picture. In this case, Cassandra.
  • RDBMs do not scale linearly, Cassandra does.
  • Another crucial difference is that with Cassandra, your table is organized around the data access pattern i.e., usecase. With RDBMS you design db and then think about access patterns and build joins.
    • Ex: comments_by_video and comments_by_user would be two different tables in Cassandra, but in RDBMS, it would be managed by few database tables using joins.

What is Cassandra

  • Apache Cassandra is an open source, distributed NoSQL database that began internally at Facebook and was released as an open-source project in July 2008. Cassandra delivers continuous availability (zero downtime), high performance, and linear scalability that modern applications require, while also offering operational simplicity and effortless replication across data centers and geographies. Cassandra can handle petabytes of information and thousands of concurrent operations per second, enabling organizations to manage large amounts of data across hybrid cloud and multi cloud environments.
  • Inspired from Amazon DynamoDB and Google's BigTable.

What does Cassandra offer?

  • High Availability
    • Peer to peer architecture with no single point of failure ( masterless architecture )
  • Scalability ( Linear scale )
    • image
  • Zero-downtime
  • High performance
    • Very fast WRITES ( micro to milli seconds ) and READS ( milli seconds ) / Single digit millisecond response times at any scale.
    • Writes are very fast because it just appends information to the commitLog & is persisted to SSTable asynchronously.
    • Reads are faster because the partition key is used in identifying which data has the information stored.
  • Fault tolerant
    • Via Replication and Tunable consistency
  • Infra agnostic ( Cloud, OnPremise, Hybrid )
  • Global Distribution of content ( Rings )

When to use Cassandra

  • Applications where data is heavy - petabytes
  • When data is columnar - different fields for different products

When not to use Cassandra

  • Cassandra provides tunable consistency.
    • Configuration parameter that clients must specify on every operation and that allows you to decide how many replicas in the cluster must acknowledge a write operation or respond to a read operation in order to be considered successful.
    • ❓ Try this!.
  • When data is to be instantly read
  • Data managed on a single system
  • Ideal for catalog management system and not for order management system.
  • Avoiding usage as described in anti-pattern.

Resources

Course Description
Datastax Cassandra Basic Playlist https://www.youtube.com/watch?v=YjYWsN1vek8&list=PL2g2h-wyI4SqCdxdiyi8enEyWvACcUa9R
Datastax Cassandra Course https://www.datastax.com/learn/cassandra-fundamentals/
Cloud Native Workshop - Cassandra Introduction https://www.youtube.com/watch?v=VaLwHqAHNtE&list=PLQwtlCoREyoHJDTVHbixHeuJEjXs5E2vO&index=1
Nasser - Discord Movement to Cassandra https://www.youtube.com/watch?v=86olupkuLlU
Running Apache Cassandra on Docker https://www.youtube.com/watch?v=fKV_j7i8KCI
Cassandra Data Modeling - Consideration @ Netflix https://www.youtube.com/watch?v=-zyZ35YyT_8
SprintBoot Data + Cassandra https://www.youtube.com/watch?v=nBoHQOcwPS4
Cassandra: The definitive guide https://github.com/sunilsoni/Cassandra-Data-Modeling/blob/master/books/Cassandra%20The%20Definitive%20Guide%20Eben%20Hewit.pdf
Introduction to Apache Cassandra https://www.youtube.com/watch?v=B_HTdrTgGNs
Best practices for migrating to Apache Cassandra https://www.datastax.com/blog/best-practices-migrating-relational-data-platform-apache-cassandratm
Datastax Academy: Introduction to Apache Cassandra https://academy.datastax.com/#/online-courses/0da20519-364d-47a9-9916-b59c02175393
⭐Datastax Youtube: DS220* https://www.youtube.com/watch?v=mhHM3K-gjeA&list=PL2g2h-wyI4SqIigskyJNAeL2vSTJZU_Qp
⭐Datastax Modelling https://www.youtube.com/watch?v=4D39wJu5Too
⭐Datstax CQL https://www.datastax.com/dev/scenario/try-it-out-cassandra-query-language-cql
⭐Datastax Interactive Modeling Course https://www.datastax.com/node/3272

Questions

  • Read more on columnar storage
  • Read: https://www.igvita.com/2012/02/06/sstable-and-log-structured-storage-leveldb/
  • How to read this: https://cassandraring.com/
  • Snitch
  • Read on Compaction
  • cassandra.yaml and logback.xml
  • What are tokens
  • Are all the records with same partition key stores adjacent in disk space?.
  • How to CRUD using API
    • CRUD on AtrixDB as well.
  • What is the concept of Tombstones
  • Replication factor vs Replication strategy
  • Why are WRITES faster than READS in Cassandra?. How is this dependent on consistency setting?.
  • What are commit logs and memtables.
  • How do you run Apache Cassandra on Docker?.
  • Why is Cassandra fast?.
  • How are nodes that are not in sync aligned?. What if majority of them are wrong?.
  • Consistency level & Replication Factors dependency
    • All
    • 1
    • Quorum
  • If Cassandra uses hashing for identifying where to store data / retrieve data from, then how does it know where to push the data to during replication?.
  • What happens if a request reaches a node that does not have the information requested for?.
  • How is it different from MongoDB
  • How are different databases placed in terms of speed, availability and scalability & replication?.
  • What all can you use in SQL where clause.

Experiments

  • Build a simple application like KillrVideo and get acquanted with the Data Model building part.
  • Few examples are Inventory List & Comments system
    • image
  • Build/Understand the application listed in the Cassandra reference book
  • Experiment with various data types in Cassandra and understand when you would use them.
  • Deploy a small application with Cassandra containerized with Docker.
  • Use REST API to CRUD Data in Cassandra instance.
    • How is the information of the Cassandra node made aware to the client/routing process.
  • Integrate with SpringBoot.

Usecases

  • image

Architecture

  • Cassandra is a distributed database. It means that there are several nodes over which the data is split using some criteria.

  • However, unlike HBASE, there is no master node which tells information on which node has what data. Any node in the Cassandra cluster can work with a request.

  • In this sense, because there is no master node, there is no single point of failure. In other words, a decentralized system.

  • Data is then updated from this node to the other nodes.

  • This also means it is horizontally scalable.

  • Data stored in Cassandra is stored in more than one nodes, making it fault-tolerant.

    • ❓ Is this by default?.
  • Cassandra is column-oriented.

  • D:\Development\apache-cassandra-3.11.10\conf\logback.xml

  • 1000s of operations per core.

  • Each Node has a full installation of Cassandra.

  • Each code has a capacity of 2-4TB.

  • All the Nodes are connected and together form a Datacenter/Ring.

  • Each Node communicates with other nodes using a protocol called Gossip - to get the status of a node.

  • These Datacenters can be put whereever they are needed in the world and can be served. image

  • Data in a traditional RDBMs is stored in rows in Tables.

  • The Data is partitioned in Cassandra using a partition key - nodes with same partition key stay together. image

  • The result of one such partitioning can be visualized below. image

  • Each node has a number assigned to it. This also determines token values. The partition key is basically hashed to obtain a token value.

  • This helps during storage and retrieval of data from Nodes. image

  • To help with fault tolerance, replication is used. image

  • Availability, Performance and Consistency image

  • With a Replication Factor of 3, WRITEs are stored in 3 different Nodes. Consistency tuning plays a major role here. With a Quorum consistency, if 2 out of 3 nodes succeed in writing, the WRITE request succeeds otherwise, it fails. This is Immediate Consistency. image

  • The same is the case with READs. image

  • Geographic distribution works well with Cassandra. So is cloud scheme. image

  • TODO Reorganize this into a good story

Architecture Deep Dive

  • Mainly used for geographically distributed applications.

  • Racks are basically Nodes that reside on the same rack and Data Center is typically a collection of racks with a single building.

  • image.

  • OOTB Cassandra comes with a default configuration of a single data center ("DC1") containing a single rack ("RAC1").

  • image

  • To achieve decentralization and partition tolerance, Cassandra uses a gossip protocol. This protocol is mainly by each node to keep track of state information about the other nodes in the cluster and runs every second on the timer.

  • image

  • Unlike most application monitorings, Cassandra directly does not rely on a Heartbeat and decide if a server/node is down. Instead, the Gosipper will mark the server/node as down with a suspicion level. ( Accural Failure Detection Model - non binary assessment just by consulting Heartbeat ).

  • What are Snitches?

    • Snitches are components that determine which node to read from when a READ request arrives at a co-ordinator Cassandra node.
    • Basically it monitors how fast nodes are replying to requests and optionally using the knowledge of Topology, determines which node to consult for getting the complete data.
    • Note that during READs, the coordinator node READs complete data from actual node and hash of data from replica. This is to save bandwidth.
      • If they do not match, coordinator gets the actual data from the replica and does the merge process by issuing a read-repair.
      • Merge process considers the timestamp associated with columns to decide which is latest WRITE.
  • The data being stored into Cassandra is hashed on its partition key ( by Partitioners ) and the resulting token determines which node the data gets saved to.

  • Once data gets persisted into Cassandra node as hashed out by the Partitioner, the Replication Factor aspect comes into picture. RF is the number of nodes in your cluster that will receive copies of the same data. If the RF is 3, then three nodes in the ring will have copies of each row.

  • There are replication (placement) strategies that determine where the data is supposed to get replicated to.

    • For example, in the SimpleStrategy, replicas are placed at consecutive nodes around the ring starting from the node identified by Partitioners.
    • In NetworkTopologyStrategy we can specify a different RF for each data center. Within a DC, it allocates replicas to different racks in order to maximize availability.
    • Replication strategy is set independently for each keyspace and is a mandatory option in order to create a keyspace.
  • Consistency Levels determine how many nodes needs to agree on a READ or a WRITE.

    • If CL is set to more nodes, it means that more nodes have to agree for that READ/WRITE. So if few of them go down, the system cannot concur and becomes unavailable. System configured towards Consisteny.
    • If CL is set to less nodes, it means that lesser nodes have to agree and if few of them go down, the system can still function and is still available. System configured towards Availability.
  • image

  • Consistency Level is specified during READs/WRITEs per client. Replication factor is per Keyspace.

  • Consistency level is based on replication factor, not on the number of nodes in the system.

  • image

  • Each time you write data into Cassandra, a timestamp is generated for each column value that is updated. Internally, Cassandra uses these timestamps for resolving any conflicting changes that are made to the same value. Generally, the last timestamp wins.

  • All WRITES are first done to the Commit Log, which is a crash recoverable mechanism.

    • There is only one commit log, per machine.
  • From the commit log the data is pushed to Memtables.

    • It is an In-memory data structure and has one MemTable per table.
    • When the number of objects in Memtable reaches a threshold, the data is flushed to a file called an SSTable.
  • SSTable is the disk file.

    • Immutable
    • Has a Bloom Filter associated with it that tells whether parition key is present or not with probability.
  • TODO: https://stackoverflow.com/questions/34592948/what-is-the-purpose-of-cassandras-commit-log

  • Row Cache and Key cache help in performance.

  • Partition Index File and Partition Index Summary File.

  • image

  • image

  • image

  • image

  • Hinted Handoff is a feature in Cassandra where the attempt to WRITE some data that is hashed to a node is offline. In this case, instead of not failing the request, the information is pinned by the Coordinator node so that if it detects that the node has come up during Gossip, it would process that WRITE action. The advantage here is that because a node is temporarily down, the requests are not flooded to the other existing servers thereby creating uneven load.

  • org.apache.casandra.db.HintedHandOffManager is the class that manages hinted handoffs internally.

  • Anti-entropy

  • Merkel Trees

  • Compaction

    • Since SSTables are immutable, every time a change occurs, a new SSTable is created.
    • So the Flushing of data from memtable to SSTable is continous and may create many SSTables.
    • This may decrease READ performance and so compaction is needed where new SSTable is created after merging these existing SSTables.
    • Also, tombstones shall be removed.
  • Tombstones is a concept in Cassandra whereby the Delete operation does not delete the data - column or row etc.Instead, a marker called Tombstone in its place. This tombstone will have a lifetime after which the data gets deleted. This settings is called Gabage Collection Grace Seconds. By default it is 864,000 - 10 days. The purpose of this delay is to give a node that is unavailable, some time to recover.

  • Bloom Filters Very fast way to test if an element is in a given set. Catch here is that they are probabilistic data structures and may give false positives, but never a false negative. Org.apache.cassandra.utils.BloomFilter class implements this data structure. When a query is performed, Bloom filter is checked first to see if the data exists. If it determines that the element does not exist, then disk is not accessed. Otherwise, disk check is done, thereby acting as a cache and reducing READ times. Bloom filters are on SSTables.

  • Secondary Indexes

  • image

  • image

What happens during WRITE

  • The client picks a coordinator node & eventually makes it to the specific node.
  • There, the data is written to the commitLog, which is an append only data structure => fast I/O.
  • Once we achieve this durability, it merges the content onto an in-memory data structure called MemTable.
  • It can now respond back to the client that the data is written.
  • Every column that is updated/written will have a timestamp updated against it. This is used for compaction later.
  • Memtable is in-memory, so they are flushed to Disk asynchronously called SSTable.
  • Cassandra does not do updates or deletes. SSTable, CommitLog are immutable. So deletes are marked as Tombstones. Tombstones also get a timestamp.
  • Once Memtable becomes full, it flushes to Disk as an SSTable and so over the time, the SSTables increase.
  • Usually SSTables are small and so Compaction kicks in and does the update/merge to discard unnecessary SSTables.
  • Row2 written later than Row1 wins priority. Last Write Wins. This is where column timestamp comes into picture.
  • This optimization makes Cassandra faster. Back ups are also faster, all you need to do is to copy SSTables. There are commands to flush content from CommitLog and MemTable to SSTables and this copy can happen after that. image image

What happens during READ

  • Reads are similar, they are coordinated in the same way.
  • But after reaching a server, it may have to look at multiple SSTables for the data.
  • This is because although compaction is a background process, there could be some rows which are scattered across multiple SSTables and are not processed yet by Compaction.
  • So it loads them into memory, merges them using the timestamp and also if there is any relevant data in MemTables, that gets merged in as well and the client is notified.
  • Cassandra can issue Read Repair Change if not all replicas dont agree on data. Here Last Write Wins. There is a configuration for this, with a default setting of 10%.
    • If 10% of nodes do not agree, it does a Read Repair Change.
  • If the usecase is READ heavy, the type of disk has impact - SSD or Spinning disk. For WRITE, this is not the case as we just append to Commit Log.
  • image

How is data stored

Element Description
Keyspace Similar to schema in RDBMS, keeps group of tables together. RF is needed for Keyspace
Column Families Are tables in RDBMS
Partitions Partitioning
Partition Key This field will be how paritioning is done
Clustering Columns Collections of columns that are unique. A natural sorting is implictly done by Cassandra during WRITE
Data Columns Every other field other than Clustering Columns

image image

Rules for a Good Partition

  • Store what you want to retrieve together.
    • Primary Key ((video_id), created_at, comment_id);
      • Most usecases are something like retrieve the comments for a specific video. In this case, partitioning by video_id is logical.
  • Avoid large partitions
    • 100k rows per partition or 100MB per partition
    • image
  • Avoid unbounded partitions
    • image
  • Avoid hot partitions
    • image

CQL

  • Subset of SQL
  • desc KEYSPACES;
  • use killrvideo;
  • // Users keyed by city CREATE TABLE IF NOT EXISTS users_by_city ( city text, last_name text, first_name text, address text, email text, PRIMARY KEY ((city), last_name, first_name, email));

Data Modelling

  • In a traditional RDBMS, the relationships between entities are established first and at the end of the design, queries access patterns will probably be considered. Entities and their constraints, relationships have more importance during design phase.

  • image

  • image

  • In Cassandra, the usecase is also to be considered first. Queries are driving factor in Cassandra data model design.

  • image

  • image

  • image

  • Convention in Cassandra is to use x_by_y.

  • image

  • Optimization by combining Time + ID image

  • You can do a single read to get the data that answers the questions. Cassandra is denormalized to achieve faster reads.

  • image

  • The advantage is if we retrieve it, not only we get the relevant partitioned data, but also the ordering is intact.

  • One query per one table.

  • Deep Dive

    • Data Modelling example for a simple usecase.
    • We use Cassandra to build an application called KillrVideos. We first start off by identifying all possible application flows.
    • image
    • Users Flow
    • image
      • Registration
        • image
        • During Registration, the application writes a row onto two tables - user_credentials and users.
        • This is denormalization.
      • Login
        • image
    • Q: Planning future queries and use cases
      • Adding features is always ok - adding columns, addming columns.
      • But if you end up changing the primary key, it is a non trivial process. If you want to change the primary key, typically you would create a new table, do some migration (WRITE) via python scripts from old table to new table and finally change the API and redirect READs to new table, decomission old table.
    • Videos Flow
    • image
    • Find Video by ID
    • Q: BLOB Storage
      • Usually videos are stored in S3 buckets with meta data references in Cassandra
    • Q: How to tag videos
      • Use collections to include Dynamic data. This skips having to set a join condition. Refer to hastags in the screenshot above.
    • Q: Avoiding joins
      • image
      • image
    • Q: Counters
      • For Like, View count.
      • image
      • Counters can only be included in tables where only columns are of type counters and primary key.
      • Also try using OOTB stored procedures / utility functions like avg, sum, max etc.
    • Q: Time series Usecases
      • These are usally modelled for IOT.
      • image
      • If there are too many videos per day, break it further.
    • Q: How to know if your design scales
    • Few hundreds of MB per partition.
    • Test the data model for performance.
    • Design may be wrong, usecase may be updated, hardware choice may be poor.
    • Q: Foreign keys?
      • Not possible in NoSQL databases.
    • Q: How to model usecases where you remove a video that is not watched in last 30 days
      • Update TTL on the table each time the video is accessed ( only one field update ) or have a Last Accessed Column & have a reaper process remove the data.
  • Udemy

  • Query first design

  • No Joins

  • Uniform distribution across clusters ( 10MB to 200MB )

Anti Patterns

  • Using like a Queue
  • Too many updates and too many deletes
  • Changing the schema frequently
  • Collections for large objects
  • Partitions should not be wide
  • Columns and Blob/Text ( < 1 MB is recommended )
  • Selection without Primary Key ( invokes full table scan )
  • SimpleStrategy in Production is not recommended.

Basic Data Types

Element Description
Text UTF8 encoded string
Int Signed 32bit integer
UUID Uses Random Numbers ( Function - uuid() )
TIMEUUID Sortable, Uses time information ( Function - now() )
TIMESTAMP Stores date and time

Commands

Command Description
Create a Keyspace Create Keyspace DEMO with replication = {'class':'SimpleStrategy', 'replication_factor':1};
List Keyspaces select * from system_schema.keyspaces;
Use a Keyspace use killrvideo
Get all tables from a Keyspace describe tables;
Describe a Keyspace describe ;
Create Table CREATE TABLE IF NOT EXISTS comments_by_user (
userid uuid,
commentid timeuuid,
videoid uuid,
comment text,
PRIMARY KEY ((userid), commentid)
) WITH CLUSTERING ORDER BY (commentid DESC); |

| Describe a Keyspace | describe ; | | Describe a Keyspace | describe ; | | Describe a Keyspace | describe ; |

Create Table


## Insert Data
```INSERT INTO comments_by_user (
    userid, //uuid: unique id for a user
    commentid, //timeuuid: unique uuid + timestamp
    videoid, //uuid: id for a given video
    comment //text: the comment text
    )
    VALUES (
      11111111-1111-1111-1111-111111111111, 
      NOW(), 
      12345678-1234-1111-1111-111111111111, 
      'I so grew up in the 80''s'
    );```
 
## Read Data
```SELECT * FROM comments_by_user WHERE userid = 11111111-1111-1111-1111-111111111111;```
  - **Note that a straight select * without specifying partion key on a realistic production cluster would cause a full scan and is highly discouraged.**
  - Where clause, when specified on a column which is not part of primary key would fail if there are no secondary indices. This is also a costly operation. 

## Truncate
```Truncate table1;```
  - Removes all the rows in the table, leaving the schema intact.

## Altering table
```Alter table table1 ADD another_column;```
```Alter table table1 DROP another_column;```
  - Used to add, remove columns from a table, or to change the data type of a column, rename columns and change table properties.
  - Cannot alter primary keys.

## Update Rows in Table
```UPDATE comments_by_video 
    SET comment = 'OMG that guy Patrick is on fleek' 
    WHERE videoid = 12345678-1234-1111-1111-111111111111 AND commentid = 494a3f00-e966-11ea-84bf-83e48ffdc8ac;```

## Delete Rows in Table
```DELETE FROM comments_by_video 
    WHERE videoid = 12345678-1234-1111-1111-111111111111 AND commentid = 494a3f00-e966-11ea-84bf-83e48ffdc8ac;```
  - In Cassandra, Delete actually uses Insert as it creates a Delete Marker called Tombstone.

## Running commands from an file
```SOURCE './myscript.cql'```; 

## Copy from/to files
  - Import/Export from CSV
    - ```COPY table (column1, column2, column3) FROM 'table1data.csv'```
    - ```COPY table (column1, column2, column3) FROM 'table1data.csv' WITH HEADER=true;```

## Get timestamp of columns
```Select firstname, writetime(firstname), email, writetime(email) from users;```
  - This will not work for primary key column.

# AWC Cloud
- AWC offers Cassandra as a Service called **Amazon Keyspaces**.
  - Serverless, Automatica Scaling, Unlimited Storage, Milli Second Performance, Replication, Encryption at REST.

# SpringBoot + Cassandra

## Loading Project into IDE
- Using the Spring Initializr, create a Spring project & add the following dependencies
  -  Spring Data for Apache Cassandra
  -  Spring Boot Dev Tools
  -  Spring Web
  -  Lombok
  -  Spring Boot Actuator
- Import the project onto InteligIdea.
- By default, when you run this project it will fail as it starts to look for Cassandra on localhost at port 9042.
- Preventing auto configuration of Cassandra - https://stackoverflow.com/questions/43480147/how-to-block-cassandra-from-trying-to-connect-automatically
- ```@SpringBootApplication(exclude = {CassandraDataAutoConfiguration.class, CassandraAutoConfiguration.class})```

## Writing classes to connect to Cassandra
- Create a REST Controller class and map it to ```/``` path.
- ![image](https://user-images.githubusercontent.com/42272776/136999557-31471256-1a90-4e41-9bb6-b3f0c339a5e1.png)
- :octocat: The class that is marked as SpringBootApplication is to be placed at the top of the hierarchy. Check this out: https://stackoverflow.com/a/41749948/815961
- :octocat: RESTController is used in SpringBoot to create RESTFul Webservices using SpringMVC.

Halted at https://www.youtube.com/watch?v=nBoHQOcwPS4&t=52m06s

# SpringBoot + ThymeLeaf + Cassandra
Resumed at https://www.youtube.com/watch?v=waLSHx-VN08


# SprintBoot + StarGate + GraphQL + Cassandra

:pushpin: Learn SpringBoot before we come here.
- SwaggerUI
- RESTAPI
- SpringBoot
  
- Read this: https://stackoverflow.com/a/24953331/815961



About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published