An open API service indexing awesome lists of open source software.

https://github.com/martachesnova/data-warehouse--redshift

Built an ETL pipeline that extracts data from S3, stages it in Redshift, and transforms into a set of dimensional tables for the Analytics Team.
https://github.com/martachesnova/data-warehouse--redshift

aws data-warehouse etl etl-pipeline python redshift s3 sql

Last synced: about 1 month ago
JSON representation

Built an ETL pipeline that extracts data from S3, stages it in Redshift, and transforms into a set of dimensional tables for the Analytics Team.

Awesome Lists containing this project

README

          

# Data-Warehouse--Redshift

A music streaming startup has grown their user base and song database. They wanted to move their processes and data onto the cloud. Their data resides in S3, in a directory of JSON logs on user activity on the app, as well as a directory with JSON metadata on the songs in their app.



I've built an ETL pipeline that extracts their data from S3, stages it in Redshift, and transforms data into a set of dimensional tables for their analytics team to continue finding the insights.

## Datasets that reside in S3:
* Song data: `s3://udacity-dend/song_data`
* Log data: `s3://udacity-dend/log_data`

* Log data json path: `s3://udacity-dend/log_json_path.json`

### Song Dataset
The first dataset is a subset of real data from the Million Song Dataset. Each file is in JSON format and contains metadata about a song and the artist of that song. The files are partitioned by the first three letters of each song's track ID. For example, here are filepaths to two files in this dataset:

* song_data/A/B/C/TRABCEI128F424C983.json

* song_data/A/A/B/TRAABJL12903CDCF1A.json


And below is an example of what a single song file, `TRAABJL12903CDCF1A.json`:

`{"num_songs": 1, "artist_id": "ARJIE2Y1187B994AB7", "artist_latitude": null, "artist_longitude": null, "artist_location": "", "artist_name": "Line Renaud", "song_id": "SOUPIRU12A6D4FA1E1", "title": "Der Kleine Dompfaff", "duration": 152.92036, "year": 0}`

### Log Dataset
The second dataset consists of log files in JSON format generated by this event simulator based on the songs in the dataset above. These simulate app activity logs from an imaginary music streaming app based on configuration settings.



The log files in the dataset you'll be working with are partitioned by year and month. Here are filepaths to two files in this dataset:

* log_data/2018/11/2018-11-12-events.json

* log_data/2018/11/2018-11-13-events.json

And below is an example of what the data in a log file, `2018-11-12-events.json`:

![image](images/log-data.png)