打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Learn Cassandra Data Modeling with Simple Example
userphoto

2019.01.10

关注

Although Cassandra query language resembles with SQL language, their data modelling methods are totally different.

In Cassandra, a bad data model can degrade performance, especially when users try to implement the RDBMS concepts on Cassandra. It is best to keep in mind few rules detailed below.

In this tutorial, you will learn-

Cassandra Data Model Rules

In Cassandra, writes are not expensive. Cassandra does not support joins, group by, OR clause, aggregations, etc. So you have to store your data in such a way that it should be completely retrievable. So these rules must be kept in mind while modelling data in Cassandra.

  1. Maximize the number of writes

    In Cassandra, writes are very cheap. Cassandra is optimized for high write performance. So try to maximize your writes for better read performance and data availability. There is a tradeoff between data write and data read. So, optimize you data read performance by maximizing the number of data writes.

  2. Maximize Data Duplication

    Data denormalization and data duplication are defacto of Cassandra. Disk space is not more expensive than memory, CPU processing and IOs operation. As Cassandra is a distributed database, so data duplication provides instant data availability and no single point of failure.

Data Modeling Goals

You should have following goals while modelling data in Cassandra.

  1. Spread Data Evenly Around the Cluster

    You want an equal amount of data on each node of Cassandra cluster. Data is spread to different nodes based on partition keys that is the first part of the primary key. So, try to choose integers as a primary key for spreading data evenly around the cluster.

  2. Minimize number of partitions read while querying data

    Partition are a group of records with the same partition key. When the read query is issued, it collects data from different nodes from different partitions.

    If there will be many partitions, then all these partitions need to be visited for collecting the query data.

    It does not mean that partitions should not be created. If your data is very large, you can’t keep that huge amount of data on the single partition. The single partition will be slowed down.

    So try to choose a balanced number of partitions.

Good Primary Key

Let’s take an example and find which primary key is good.

Here is the table MusicPlaylist.

Create table MusicPlaylist    (        SongId int,        SongName text,        Year int,        Singer text,        Primary key(SongId, SongName)    );

In above example, table MusicPlaylist,

  • Songid is the partition key, and
  • SongName is the clustering column
  • Data will be clustered on the basis of SongName. Only one partition will be created with the SongId. There will not be any other partition in the table MusicPlaylist.

Data retrieval will be slow by this data model due to the bad primary key.

Here is another table MusicPlaylist.

Create table MusicPlaylist    (        SongId int,        SongName text,        Year int,        Singer text,        Primary key((SongId, Year), SongName)    );

In above example, table MusicPlaylist,

  • Songid and Year are the partition key, and
  • SongName is the clustering column.
  • Data will be clustered on the basis of SongName. In this table, each year, a new partition will be created. All the songs of the year will be on the same node. This primary key will be very useful for the data.

Our data retrieval will be fast by this data model.

Model Your Data in Cassandra

Following things should be kept in mind while modelling your queries.

  1. Determine what queries you want to support
  2. First of all, determine what queries you want.

    For example, do you need?

    • Joins
    • Group by
    • Filtering on which column etc.
  3. Create table according to your queries

    Create table according to your queries. Create a table that will satisfy your queries. Try to create a table in such a way that a minimum number of partitions needs to be read.

Handling One to One Relationship

One to one relationship means two tables have one to one correspondence. For example, the student can register only one course, and I want to search on a student that in which course a particular student is registered in.

So in this case, your table schema should encompass all the details of the student in corresponding to that particular course like the name of the course, roll no of the student, student name, etc.

Create table Student_Course    (        Student rollno int primary key,        Student_name text,        Course_name text,    );

Handling one to many relationships

One to many relationships means having one to many correspondence between two tables.

For example, a course can be studied by many students. I want to search all the students that are studying a particular course.

So by querying on course name, I will have many student names that will be studying a particular course.

Create table Student_Course    (        Student_rollno int,        Student_name text,        Course_name text,    );

I can retrieve all the students for a particular course by the following query.

Select * from Student_Course where Course_name='Course Name';

Handling Many to Many Relationship

Many to many relationships means having many to many correspondence between two tables.

For example, a course can be studied by many students, and a student can also study many courses.

I want to search all the students that are studying a particular course. Also, I want to search all the course that a particular student is studying.

So in this case, I will have two tables i.e. divide the problem into two cases.

First, I will create a table by which you can find courses by a particular student.

Create table Student_Course    (        Student_rollno int primary key,        Student_name text,        Course_name text,    );

I can find all the courses by a particular student by the following query.

Select * from Student_Course where student_rollno=rollno;

Second, I will create a table by which you can find how many students are studying a particular course.

Create table Course_Student    (        Course_name text primary key,        Student_name text,        student_rollno int    );

I can find a student in a particular course by the following query.

Select * from Course_Student where Course_name=CourseName;

Difference between RDBMS and Cassandra Data Modelling

RDBMS

Cassandra

Stores data in normalized form

Stores data in denormalized form

Legacy dbms; structured data

Wide row store,Dynamic; structured & unstructured data

Summary

Data modelling in Cassandra is different than other RDBMS databases. Cassandra data modelling has some rules. These rules must be followed for good data modelling. Besides these rules, we saw three different data modelling cases and how to deal with them.

 

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
HBase vs Cassandra: why we moved ? Bits and B...
Quiz: SAP BI/BW — Windows Live
AJET 20(2) Williams and Jacobs (2004) - exploring blogs as learning spaces in higher education
高考英语语法填空专项训练及答案word版(二)
《计算机专业英语》Unit 10 Database
如何请教授写推荐信
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服