├── .astro └── config.yaml ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── airflow_settings.yaml ├── dags └── dag_stack_dag.py ├── data ├── .DS_Store ├── taxi_zone_lookup.csv └── yellow_tripdata_sample_2019-01.csv ├── data_small ├── taxi_zone_lookup.csv ├── yellow_tripdata_sample_2019_01.csv └── yellow_tripdata_sample_2019_02.csv ├── dbt ├── .gitignore ├── README.md ├── analysis │ └── .gitkeep ├── dbt_project.yml ├── macros │ └── .gitkeep ├── models │ └── taxi_demo │ │ ├── pickup_dropoff_borough_counts.sql │ │ ├── schema.yml │ │ ├── stg_taxi_trips.sql │ │ ├── stg_taxi_zone_lookup.sql │ │ └── trips_with_borough_name.sql ├── snapshots │ └── .gitkeep └── tests │ └── .gitkeep ├── great_expectations ├── .gitignore ├── expectations │ ├── .ge_store_backend_id │ ├── analytical_output │ │ └── final.json │ ├── taxi_trips │ │ └── source.json │ └── taxi_zone │ │ └── source.json ├── great_expectations.yml ├── notebooks │ ├── pandas │ │ └── validation_playground.ipynb │ ├── spark │ │ └── validation_playground.ipynb │ └── sql │ │ └── validation_playground.ipynb └── plugins │ └── custom_data_docs │ └── styles │ └── data_docs_custom_styles.css ├── include └── great_expectations_docs │ └── data_docs │ └── local_site │ ├── expectations │ ├── analytical_output.html │ ├── analytical_output │ │ └── final.html │ ├── taxi_trips │ │ └── source.html │ └── taxi_zone │ │ └── source.html │ ├── index.html │ ├── static │ ├── fonts │ │ └── HKGrotesk │ │ │ ├── HKGrotesk-Bold.otf │ │ │ ├── HKGrotesk-BoldItalic.otf │ │ │ ├── HKGrotesk-Italic.otf │ │ │ ├── HKGrotesk-Light.otf │ │ │ ├── HKGrotesk-LightItalic.otf │ │ │ ├── HKGrotesk-Medium.otf │ │ │ ├── HKGrotesk-MediumItalic.otf │ │ │ ├── HKGrotesk-Regular.otf │ │ │ ├── HKGrotesk-SemiBold.otf │ │ │ └── HKGrotesk-SemiBoldItalic.otf │ ├── images │ │ ├── favicon.ico │ │ ├── glossary_scroller.gif │ │ ├── iterative-dev-loop.png │ │ ├── logo-long-vector.svg │ │ ├── logo-long.png │ │ ├── short-logo-vector.svg │ │ ├── short-logo.png │ │ └── validation_failed_unexpected_values.gif │ └── styles │ │ ├── data_docs_custom_styles_template.css │ │ └── data_docs_default_styles.css │ └── validations │ ├── analytical_output │ ├── 20210330T104254.822131Z │ │ └── 20210330T104254.822131Z │ │ │ └── 00298405c2fde1ee9bca2e019dc1ab31.html │ ├── 20210330T104531.257898Z │ │ └── 20210330T104531.257898Z │ │ │ └── 00298405c2fde1ee9bca2e019dc1ab31.html │ ├── 20210331T003457.881134Z │ │ └── 20210331T003457.881134Z │ │ │ └── f0d7c4db18cf9e581489ce296da0a97f.html │ └── final │ │ └── 20210331T013057.379419Z │ │ └── 20210331T013057.379419Z │ │ └── fd22a4dc6a6ec759e4365fd4dcb2a460.html │ ├── taxi_trips │ └── source │ │ ├── 20210331T012849.203099Z │ │ └── 20210331T012849.203099Z │ │ │ └── 8a0b7b44bab15dd7ba25522bb4f1d0df.html │ │ └── 20210331T013012.257087Z │ │ └── 20210331T013012.257087Z │ │ └── 102ba36299ddd1a012500a4c0939e244.html │ └── taxi_zone │ └── source │ ├── 20210330T102948.221112Z │ └── 20210330T102948.221112Z │ │ └── a36745f64117b5c093d1cff85e1f642f.html │ ├── 20210331T003349.128069Z │ └── 20210331T003349.128069Z │ │ └── 34f18df911daba760747b6dc75bef869.html │ ├── 20210331T003426.200856Z │ └── 20210331T003426.200856Z │ │ └── 3f9c1c540adeb726ecc797b48f0a7f96.html │ ├── 20210331T012849.203099Z │ └── 20210331T012849.203099Z │ │ └── 34f18df911daba760747b6dc75bef869.html │ └── 20210331T013012.257087Z │ └── 20210331T013012.257087Z │ └── 1fec248d947ec39531fc20254aee97a2.html ├── packages.txt ├── plugins └── example-plugin.py ├── profiles.yml ├── requirements.txt ├── screenshots ├── Screen Shot 2021-03-30 at 3.48.11 PM.png ├── Screen Shot 2021-03-31 at 3.56.02 PM.png ├── Screen Shot 2021-03-31 at 3.59.13 PM.png ├── Screen Shot 2021-03-31 at 4.06.36 PM.png ├── Screen Shot 2021-03-31 at 4.19.33 PM.png ├── Screen Shot 2021-03-31 at 4.25.38 PM.png ├── Screen Shot 2021-03-31 at 4.29.44 PM.png ├── Screen Shot 2021-03-31 at 4.32.29 PM.png ├── Screen Shot 2021-03-31 at 8.33.57 PM.png └── Screen Shot 2021-03-31 at 8.50.28 PM.png └── slides_dag_stack_odsc_east_april2021.pdf /.astro/config.yaml: -------------------------------------------------------------------------------- 1 | project: 2 | name: dag-stack 3 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .astro 2 | .git 3 | .env 4 | airflow_settings.yaml 5 | logs/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/README.md -------------------------------------------------------------------------------- /airflow_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/airflow_settings.yaml -------------------------------------------------------------------------------- /dags/dag_stack_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dags/dag_stack_dag.py -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/taxi_zone_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data/taxi_zone_lookup.csv -------------------------------------------------------------------------------- /data/yellow_tripdata_sample_2019-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data/yellow_tripdata_sample_2019-01.csv -------------------------------------------------------------------------------- /data_small/taxi_zone_lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data_small/taxi_zone_lookup.csv -------------------------------------------------------------------------------- /data_small/yellow_tripdata_sample_2019_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data_small/yellow_tripdata_sample_2019_01.csv -------------------------------------------------------------------------------- /data_small/yellow_tripdata_sample_2019_02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/data_small/yellow_tripdata_sample_2019_02.csv -------------------------------------------------------------------------------- /dbt/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_modules/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/README.md -------------------------------------------------------------------------------- /dbt/analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/dbt_project.yml -------------------------------------------------------------------------------- /dbt/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt/models/taxi_demo/pickup_dropoff_borough_counts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/models/taxi_demo/pickup_dropoff_borough_counts.sql -------------------------------------------------------------------------------- /dbt/models/taxi_demo/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/models/taxi_demo/schema.yml -------------------------------------------------------------------------------- /dbt/models/taxi_demo/stg_taxi_trips.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/models/taxi_demo/stg_taxi_trips.sql -------------------------------------------------------------------------------- /dbt/models/taxi_demo/stg_taxi_zone_lookup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/models/taxi_demo/stg_taxi_zone_lookup.sql -------------------------------------------------------------------------------- /dbt/models/taxi_demo/trips_with_borough_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/dbt/models/taxi_demo/trips_with_borough_name.sql -------------------------------------------------------------------------------- /dbt/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /great_expectations/.gitignore: -------------------------------------------------------------------------------- 1 | uncommitted/ -------------------------------------------------------------------------------- /great_expectations/expectations/.ge_store_backend_id: -------------------------------------------------------------------------------- 1 | store_backend_id = 257bb581-4bf7-4080-9faa-f7475f72807a -------------------------------------------------------------------------------- /great_expectations/expectations/analytical_output/final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/expectations/analytical_output/final.json -------------------------------------------------------------------------------- /great_expectations/expectations/taxi_trips/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/expectations/taxi_trips/source.json -------------------------------------------------------------------------------- /great_expectations/expectations/taxi_zone/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/expectations/taxi_zone/source.json -------------------------------------------------------------------------------- /great_expectations/great_expectations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/great_expectations.yml -------------------------------------------------------------------------------- /great_expectations/notebooks/pandas/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/notebooks/pandas/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/notebooks/spark/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/notebooks/spark/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/notebooks/sql/validation_playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/notebooks/sql/validation_playground.ipynb -------------------------------------------------------------------------------- /great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/great_expectations/plugins/custom_data_docs/styles/data_docs_custom_styles.css -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/expectations/analytical_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/expectations/analytical_output.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/expectations/analytical_output/final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/expectations/analytical_output/final.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/expectations/taxi_trips/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/expectations/taxi_trips/source.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/expectations/taxi_zone/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/expectations/taxi_zone/source.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/index.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Bold.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Italic.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Light.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Medium.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-Regular.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/favicon.ico -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/glossary_scroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/glossary_scroller.gif -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/iterative-dev-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/iterative-dev-loop.png -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/logo-long-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/logo-long-vector.svg -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/logo-long.png -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/short-logo-vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/short-logo-vector.svg -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/short-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/short-logo.png -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/images/validation_failed_unexpected_values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/images/validation_failed_unexpected_values.gif -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/styles/data_docs_custom_styles_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/styles/data_docs_custom_styles_template.css -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/static/styles/data_docs_default_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/static/styles/data_docs_default_styles.css -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210330T104254.822131Z/20210330T104254.822131Z/00298405c2fde1ee9bca2e019dc1ab31.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210330T104254.822131Z/20210330T104254.822131Z/00298405c2fde1ee9bca2e019dc1ab31.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210330T104531.257898Z/20210330T104531.257898Z/00298405c2fde1ee9bca2e019dc1ab31.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210330T104531.257898Z/20210330T104531.257898Z/00298405c2fde1ee9bca2e019dc1ab31.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210331T003457.881134Z/20210331T003457.881134Z/f0d7c4db18cf9e581489ce296da0a97f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/analytical_output/20210331T003457.881134Z/20210331T003457.881134Z/f0d7c4db18cf9e581489ce296da0a97f.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/analytical_output/final/20210331T013057.379419Z/20210331T013057.379419Z/fd22a4dc6a6ec759e4365fd4dcb2a460.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/analytical_output/final/20210331T013057.379419Z/20210331T013057.379419Z/fd22a4dc6a6ec759e4365fd4dcb2a460.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_trips/source/20210331T012849.203099Z/20210331T012849.203099Z/8a0b7b44bab15dd7ba25522bb4f1d0df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_trips/source/20210331T012849.203099Z/20210331T012849.203099Z/8a0b7b44bab15dd7ba25522bb4f1d0df.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_trips/source/20210331T013012.257087Z/20210331T013012.257087Z/102ba36299ddd1a012500a4c0939e244.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_trips/source/20210331T013012.257087Z/20210331T013012.257087Z/102ba36299ddd1a012500a4c0939e244.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210330T102948.221112Z/20210330T102948.221112Z/a36745f64117b5c093d1cff85e1f642f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210330T102948.221112Z/20210330T102948.221112Z/a36745f64117b5c093d1cff85e1f642f.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T003349.128069Z/20210331T003349.128069Z/34f18df911daba760747b6dc75bef869.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T003349.128069Z/20210331T003349.128069Z/34f18df911daba760747b6dc75bef869.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T003426.200856Z/20210331T003426.200856Z/3f9c1c540adeb726ecc797b48f0a7f96.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T003426.200856Z/20210331T003426.200856Z/3f9c1c540adeb726ecc797b48f0a7f96.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T012849.203099Z/20210331T012849.203099Z/34f18df911daba760747b6dc75bef869.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T012849.203099Z/20210331T012849.203099Z/34f18df911daba760747b6dc75bef869.html -------------------------------------------------------------------------------- /include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T013012.257087Z/20210331T013012.257087Z/1fec248d947ec39531fc20254aee97a2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/include/great_expectations_docs/data_docs/local_site/validations/taxi_zone/source/20210331T013012.257087Z/20210331T013012.257087Z/1fec248d947ec39531fc20254aee97a2.html -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /plugins/example-plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/plugins/example-plugin.py -------------------------------------------------------------------------------- /profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/profiles.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-30 at 3.48.11 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-30 at 3.48.11 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 3.56.02 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 3.56.02 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 3.59.13 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 3.59.13 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 4.06.36 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 4.06.36 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 4.19.33 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 4.19.33 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 4.25.38 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 4.25.38 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 4.29.44 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 4.29.44 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 4.32.29 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 4.32.29 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 8.33.57 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 8.33.57 PM.png -------------------------------------------------------------------------------- /screenshots/Screen Shot 2021-03-31 at 8.50.28 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/screenshots/Screen Shot 2021-03-31 at 8.50.28 PM.png -------------------------------------------------------------------------------- /slides_dag_stack_odsc_east_april2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spbail/dag-stack/HEAD/slides_dag_stack_odsc_east_april2021.pdf --------------------------------------------------------------------------------