Skip to content

Tracking and measuring neighborhood and district-level eviction rates in the city of San Francisco.

Notifications You must be signed in to change notification settings

anthonywong611/SF-EvictionTracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

SF-EvictionTracker

Tracking eviction trends in San Francisco across filing reasons, districts, neighborhoods, and demographics in the months following COVID-19. Data warehouse infrastructure is housed in the AWS ecosystem and uses Apache Airflow for orchestration with public-facing dashboards created using Metabase.

Questions? Feel free to reach me at ilya.glprn@gmail.com.

Public Dashboard Link: http://sf-evictiontracker-metabase.us-east-1.elasticbeanstalk.com/public/dashboard/f637e470-8ea9-4b03-af80-53988e5b6a9b

ARCHITECTURE:

Architecture Data is sourced from San Francisco Open Data's API and csv's containing San Francisco district and neighborhood aggregate census results. Airflow orchestrates its movement to an S3 bucket and into a data warehouse hosted in RDS. SQL scripts are then ran to transform the data from its raw form through a staging schema and into production target tables. The presentation layer is created using Metabase, an open-source data visualization tool, and deployed using Elastic Beanstalk.

DATA MODEL:

Dimension Tables: dim_district dim_neighborhood dim_location dim_reason dim_date br_reason_group

Fact Tables: fact_evictions

The data model is implemented using a star schema with a bridge table to accomodate any new permutations for the reason dimension. More information on bridge tables can be found here: https://www.kimballgroup.com/2012/02/design-tip-142-building-bridges/

Model

ETL FLOW:

General Overview -

  • Evictions data is collected from the SODA API and moved into an S3 Bucket
  • Neighborhood/district census data is stored as a CSV in S3
  • Once the API load to S3 is complete, data is moved into RDS into a "raw" schema and moves through a staging schema for processing
  • ETL job execution is complete once data is moved from the staging schema into the final production tables

DAGs and Custom Airflow Operators -

Ops Dag

There are 2 DAGs (Directed Acyclic Graphs) used for this project - full load which should be executed on initial setup and incremental load which is scheduled to run daily and pull new data from the Socrata Open Data API.

The incremental load DAG uses XCom to pass the filesize of the load between the API call task and a ShortCircuitOperator to skip downstream tasks if the API call produces no results.

The DAGs use two customer operators. They have been purpose built for this project but are easily expandable to be used in other data pipelines.

  1. soda_to_s3_operator: Queries the Socrata Open Data API using a SoQL string and uploads the results to an S3 bucket. Includes optional function to check source data size and abort ETL if filesize exceeds user-defined limit.

  2. s3_to_postges_operator: Collects data from a file hosted on AWS S3 and loads it into a Postgres table. Current version supports JSON and CSV source data types.

INFRASTRUCTURE:

This project is hosted in the AWS ecosystem and uses the following resources:

EC2

EC2 -

  • t2.medium - dedicated resource for Airflow, managed by AWS Instance Scheduler to complete the daily DAG run and shut off after execution
  • t2.small - used to host Metabase, always online

RDS -

  • t2.small - hosts application database for Metabase and the data warehouse

Elastic Beanstalk is used to deploy the Metabase web application.

DASHBOARD:

The dashboard is publicly accessible here: http://sf-evictiontracker-metabase.us-east-1.elasticbeanstalk.com/public/dashboard/f637e470-8ea9-4b03-af80-53988e5b6a9b

Some examples screengrabs below!

Dash1 Dash2 Dash3

About

Tracking and measuring neighborhood and district-level eviction rates in the city of San Francisco.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 71.1%
  • TSQL 28.9%