Skip to content

In this project, I demonstrate creating a data pipeline from NYC Taxi data using Mage.ai for ETL, GCP for storage and BigQuery, and Looker Studio for analytics.

Notifications You must be signed in to change notification settings

ruru-lyy/NYC-Taxi-Service-Pipeline

Repository files navigation

NYC Taxi Service Pipeline and Dashboard

In this project, I will be showing you how I created a data pipeline from the New York City Taxi Service data (TLC Trip Record Data) utilizing tools such as Jupyter for an initial test code, Mage.ai for building the ETL pipeline, GCP for data storage and running BigQuery, and finally, loading the transformed data into Looker Studio for analytics.

About the Dataset

TLC Trip Record Data

In this dataset, Yellow and green taxi trip records include fields capturing pick-up and drop-off dates/times, pick-up and drop-off locations, trip distances, itemized fares, rate types, payment types, and driver-reported passenger counts.

Note: The data used in the attached datasets were collected and provided to the NYC Taxi and Limousine Commission (TLC) by technology providers authorized under the Taxicab & Livery Passenger Enhancement Programs (TPEP/LPEP). The trip data was not created by the TLC, and TLC makes no representations as to the accuracy of these data.

You may access the dataset through the following link: https://storage.googleapis.com/taxi-service-data-engineering-niru/nyc_taxi_data.csv

Dataset

For reference, we will be using the data dictionary that is available at: https://www.nyc.gov/assets/tlc/downloads/pdf/data_dictionary_trip_records_yellow.pdf which is also attached here-

Data Dictionary

Technologies Used

Programming Language: Python 3.9.19

Cloud Services:

  1. Google Cloud Storage
  2. Compute Engine Instance for mage to create an ETL pipeline
  3. BigQuery
  4. Looker Studio

Data Pipeine Tool - https://www.mage.ai/

Data Architecture

This shows the entire architecture of the project from data ingestion, data storage, ETL, querying and finally a basic interactive dashboard.

Data Architecture

The process follows the following steps:

  1. Data Ingestion and Storage: Obtain the data from nyc.gov and upload it onto Google Cloud Storage and set it to public access to obtain URL.
  2. ETL Processing: Mage.ai extracts the data using the URL that was saved earlier, transformation code to perform data cleaning and data modeling (sometimes, data training when required) and afterwards, it is being loaded into BigQuery through Google Cloud API credentials.
  3. Data Analysis and Querying: The transformed data is then loaded into BigQuery where SQL queries are run to obtain insights.
  4. Data Visualization: Finally, Looker Studio is used to create a simple interactive dashboard and a report.

Data Modeling

Following is the data model that was referenced in the entire data engineering process-

Data Modeling

Note: Some of these columns like trip_distance or fare_amount may seem like measures but for learning purposes they are placed in dimension tables here. It’s all about making it easier to understand relationships in the data.

Tutorial

  • Step 1: First step is to upload the data onto cloud and here in this project, we are using GCP. You need to register and set up a Cloud Account if you dont have one. It provides you $300 free credits which translates to roughly 25k indian rupees. You can track how much your GCP expenses are (which depends on the type of VM instance you're using, hours, etc) using a GCP Pricing Calculater
  • Step 2: From the Compute Engine, create a VM instance and we'll be using SSH browser to run Mage on it. I've used e2-standard-8, 8vCPU and 32GB memory because my mage server kept crashing when running the transformation code. On the SSH terminal, make sure to install python alongwith libs like pandas, dbt (data build tool) and mage to build the ETL pipeline.
  • Step 3: For this next step, you can take a quick look at the Mage documentation in case you're not familiar with how it works. It is a cloud-based data pipeline builder similar to tools like Airflow but is powered by AI.
  • Step 4: Mage provides templates for data loader, transform code, and data exporter all which are essential for this project. I think it is a good practice to have your initial test code in Jupyter notebook especially data cleaning and data modeling in this case so it makes it easier to modify the rest of the transformer code.
  • Step 5: The output of the transformer code serves as input to the data exporter and that's how we will load the transformed code onto BigQuery. Just make sure to download the JSON file from GCP containing the API credentials for authentication. This file includes details like your project ID, private key, and client email, which are used to securely access and modify resources in your GCP account.

The tree created looks like this-

Tree

  • Step 6: Finally, after loading the data onto BigQuery, we can perform data analysis and run SQL queries to extract insights. You may refer the dashboard to retrieve actionable insights.

About

In this project, I demonstrate creating a data pipeline from NYC Taxi data using Mage.ai for ETL, GCP for storage and BigQuery, and Looker Studio for analytics.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published