├── .astro └── config.yaml ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── dags ├── task_flow_ray_pandas_example.py ├── task_flow_xgboost_modin.py └── xgboost_pandas_breast_cancer_tune.py ├── notebooks ├── .ipynb_checkpoints │ ├── Process-2-ray-checkpoint.ipynb │ ├── Ray-Astro-POC-1-checkpoint.ipynb │ └── XGBoost-Tune-Example-checkpoint.ipynb ├── Process-2-ray.ipynb ├── Ray-Astro-POC-1.ipynb └── XGBoost-Tune-Example.ipynb ├── packages.txt └── requirements.txt /.astro/config.yaml: -------------------------------------------------------------------------------- 1 | project: 2 | name: ray-airflow-alpha 3 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .astro 2 | .git 3 | .env 4 | airflow_settings.yaml 5 | logs/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .idea 3 | .env 4 | airflow_settings.yaml 5 | *.pyc 6 | */__pycache__/* 7 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/README.md -------------------------------------------------------------------------------- /dags/task_flow_ray_pandas_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/dags/task_flow_ray_pandas_example.py -------------------------------------------------------------------------------- /dags/task_flow_xgboost_modin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/dags/task_flow_xgboost_modin.py -------------------------------------------------------------------------------- /dags/xgboost_pandas_breast_cancer_tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/dags/xgboost_pandas_breast_cancer_tune.py -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Process-2-ray-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/.ipynb_checkpoints/Process-2-ray-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/Ray-Astro-POC-1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/.ipynb_checkpoints/Ray-Astro-POC-1-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/XGBoost-Tune-Example-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/.ipynb_checkpoints/XGBoost-Tune-Example-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/Process-2-ray.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/Process-2-ray.ipynb -------------------------------------------------------------------------------- /notebooks/Ray-Astro-POC-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/Ray-Astro-POC-1.ipynb -------------------------------------------------------------------------------- /notebooks/XGBoost-Tune-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/notebooks/XGBoost-Tune-Example.ipynb -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astronomer/ray-airflow-demo/HEAD/requirements.txt --------------------------------------------------------------------------------