Giter VIP home page Giter VIP logo

data_modeling_cassandra's Introduction

Data Modeling with Apache Cassandra


Sparkify, a startup, wants to analyze the data they've been collecting on songs and user activity on their new music streaming app. Their data is in in a directory of CSV files on user activity on the app. The goal of this project is to build a data model in Cassandra Keyspace using python that allow analytics team to optimize specific queries that is important to business.

DataSet

Imgur Image

Goals/Queries to Be Optimized


Goal 1. Get the song information of specific item in specific session.

Example query: SELECT artist, song, length FROM session_library WHERE sessionId = 338 AND itemInSession = 4

Goal 2. Get songs information order by listening sequence for a specific user during a specific session.

Example query: SELECT artist, song, firstName, lastName FROM user_library WHERE userId = 10 AND sessionId =182

Goal 3. Who listen to specific song.

Example query: SELECT firstName, lastName FROM song_library WHERE song = 'All Hands Against His Own'

Table Structure


1. session_library:

  • Partition Key: sessionId
  • Clustering Columns: itemInsession

2. user_library:

  • Partition Key: userId, sessionId
  • Clustering Columns: itemInsession

3. song_library:

  • Partition Key: song

data_modeling_cassandra's People

Contributors

xwilchen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.