This project is submission for the Nanodegree Data Engineering Program. In this project consists of putting into practice the following titles:
- Created Data modeling with CASSANDRA
- Processing ETL pipeline on Python
A startup called Sparkify wants to analyze the data they have been collecting on songs and user activity on their new music streaming app. The analysis team is particularly interested in understanding what songs users are listening to. Currently, there is no easy way to query the data to generate the results, since the data reside in a directory of CSV files on user activity on the app.
They'd like a data engineer to create an Apache Cassandra database which can create queries on song play data to answer the questions, and wish to bring you on the project. Your role is to create a database for this analysis. You'll be able to test your database by running queries given to you by the analytics team from Sparkify to create the results.
In this project, you'll apply what you've learned on data modeling with Apache Cassandra and complete an ETL pipeline using Python. To complete the project, you will need to model your data by creating tables in Apache Cassandra to run queries. You are provided with part of the ETL pipeline that transfers data from a set of CSV files within a directory to create a streamlined CSV file to model and insert data into Apache Cassandra tables.
We have provided you with a project template that takes care of all the imports and provides a structure for ETL pipeline you'd need to process this data.
For this project, you will be working with one dataset: event_data. The directory of CSV files partitioned by date. Here are examples of filepaths to two files in the dataset:
event_data/2018-11-01-events.csv
event_data/2018-11-02-events.csv
event_data/2018-11-03-events.csv
There is one dataset called event_data which is in a directory of CSV files partitioned by date. The filepaths are given as **event_data/yyyy-mm-dd-events.csv ** where yyyy indicates the year, mm indicates the month and dd indicates the year. The folder of event_data are:
- artist (string)
- auth (string)
- firstName (string)
- gender (char)
- itemInSession (int)
- lastName (string)
- length (float)
- level (string)
- location (string)
- method (string)
- page (string)
- registration (float)
- sessionId (int)
- song (string)
- status (int)
- ts (float)
- userId (int)
To get started with the project, go to the workspace on the next page, where you'll find the project template (a Jupyter notebook file). You can work on your project and submit your work through this workspace.
The project template includes one Jupyter Notebook file, in which:
- you will process the event_datafile_new.csv dataset to create a denormalized dataset
- you will model the data tables keeping in mind the queries you need to run
- you have been provided queries that you will need to model your data tables for
- you will load the data into tables you create in Apache Cassandra and run your queries
Below are steps you can follow to complete each component of this project.
- Design tables to answer the queries outlined in the project template
- Write Apache Cassandra
CREATE KEYSPACEandSET KEYSPACEstatements - Develop your
CREATEstatement for each of the tables to address each question - Load the data with
INSERTstatement for each of the tables - Include
IF NOT EXISTSclauses in yourCREATEstatements to create tables only if the tables do not already exist. We recommend you also include DROP TABLE statement for each table, this way you can run drop and create tables whenever you want to reset your database and test your ETL pipeline - Test by running the proper select statements with the correct
WHEREclause
For NoSQL databases, we design the schema based on the queries we know we want to perform. For this project, we have three queries:
- Find artist, song title and song length that was heard during sessionId=338, and itemInSession=4.
SELECT artist, song, length from music_app_history
WHERE sessionId=338 AND itemInSession=4- Find name of artist, song (sorted by itemInSession) and user (first and last name) for userid=10, sessionId=182.
SELECT artist, song, firstName, lastName FROM user_session_history
WHERE userId=10 and sessionId=182- Find every user name (first and last) who listened to the song 'All Hands Against His Own'.
SELECT firstName, lastName FROM user_song_history
WHERE song='All Hands Againgst His Own'For the first query:
- Column 1 = sessionId
- Column 2 = itemInSession
- Column 3 = artist
- Column 4 = song
- Column 5 = length
- Primary key = (sessionId, itemInSession)
For the second query:
- Column 1 = userId
- Column 2 = sessionId
- Column 3 = artist
- Column 4 = song
- Column 5 = itemInSession
- Column 6 = firstName
- Column 7 = lastName
- Primary key = (userId, sessionId) with clustering column itemInSession
For the third query:
- Column 1 = song
- Column 2 = firstName
- Column 3 = lastName
- Primary key = (song) with clustering column artist, userId
- Implement the logic in section Part I of the notebook template to iterate through each event file in event_data to process and create a new CSV file in Python
- Make necessary edits to Part II of the notebook template to include** Apache Cassandra**
CREATEandINSERTstatements to load processed records into relevant tables in your data model - Test by running
SELECTstatements after running the queries on your database
Run each portion of Project_1B_Project.ipynb.
The Source owner is Sparkify
The data In this project is OpenSource and owner is Sparkify. Also, if you plan to use this database in your article research or else you must taken and read main Source in the Sparkify Dataset repository.
Huseyin ELCI | Github | Kaggle | Linkedin |
Thanks to Sparkify for providing cool data with which we can create a cutting edge project.
