├── .devcontainer └── devcontainer.json ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── airflow └── dags │ └── .gitkeep ├── create_challenge_table.sql ├── create_table.sql ├── data ├── README.md ├── constituents.csv └── top-level-domain-names.csv ├── install_airflow.sh ├── lab ├── challenge │ └── .gitkeep ├── end-to-end │ └── .gitkeep ├── manual │ └── .gitkeep ├── orchestrated │ └── .gitkeep └── temp │ └── .gitkeep ├── lab_setup.sh ├── run_airflow.sh └── stop_airflow.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log 5 | *~ 6 | lab/ 7 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/README.md -------------------------------------------------------------------------------- /airflow/dags/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_challenge_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/create_challenge_table.sql -------------------------------------------------------------------------------- /create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/create_table.sql -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/data/README.md -------------------------------------------------------------------------------- /data/constituents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/data/constituents.csv -------------------------------------------------------------------------------- /data/top-level-domain-names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/data/top-level-domain-names.csv -------------------------------------------------------------------------------- /install_airflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/install_airflow.sh -------------------------------------------------------------------------------- /lab/challenge/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab/end-to-end/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab/manual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab/orchestrated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/lab_setup.sh -------------------------------------------------------------------------------- /run_airflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/run_airflow.sh -------------------------------------------------------------------------------- /stop_airflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinkedInLearning/hands-on-introduction-data-engineering-4395021/HEAD/stop_airflow.sh --------------------------------------------------------------------------------