├── README.md ├── airflow_installation.txt └── dags ├── full_load_dag.py ├── incremental_load_dag.py ├── operators ├── s3_to_postgres_operator.py └── soda_to_s3_operator.py └── sql ├── full_load.sql ├── incremental_load.sql ├── init_db_schema.sql └── trunc_target_tables.sql /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/README.md -------------------------------------------------------------------------------- /airflow_installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/airflow_installation.txt -------------------------------------------------------------------------------- /dags/full_load_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/full_load_dag.py -------------------------------------------------------------------------------- /dags/incremental_load_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/incremental_load_dag.py -------------------------------------------------------------------------------- /dags/operators/s3_to_postgres_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/operators/s3_to_postgres_operator.py -------------------------------------------------------------------------------- /dags/operators/soda_to_s3_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/operators/soda_to_s3_operator.py -------------------------------------------------------------------------------- /dags/sql/full_load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/sql/full_load.sql -------------------------------------------------------------------------------- /dags/sql/incremental_load.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/sql/incremental_load.sql -------------------------------------------------------------------------------- /dags/sql/init_db_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/sql/init_db_schema.sql -------------------------------------------------------------------------------- /dags/sql/trunc_target_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-galperin/SF-EvictionTracker/HEAD/dags/sql/trunc_target_tables.sql --------------------------------------------------------------------------------