1. Learn
  2. /
  3. Courses
  4. /
  5. Designing Forecasting Pipelines for Production

Connected

Exercise

Creating the DAG

After setting the default arguments, it's time to define your DAG and create the first task that checks the API. This step is essential for automating your data and machine learning workflows. The following modules were imported: DAG, PythonOperator, and datetime. You also have a custom check_updates_api function available. Time to build your DAG!

Instructions

100 XP
  • Define the DAG using the right function.
  • Set the schedule to run daily.
  • Create the check_api task using a Python operator.
  • Provide the check_updates_api function as the callable.