Replace pip install with poetry in Apache Airflow

What will you learn? In this tutorial, you will learn how to enhance dependency management in Apache Airflow projects by replacing the conventional use of pip install with Poetry. By integrating Poetry into your workflow, you can ensure consistent environments across different machines and streamline the handling of project dependencies. Introduction to the Problem and … Read more

How to Retrieve Data from Google Cloud SQL into Airflow DAG

What will you learn? By following this tutorial, you will master the process of retrieving data from Google Cloud SQL and incorporating it into an Airflow Directed Acyclic Graph (DAG) for further processing. Introduction to the Problem and Solution Imagine a scenario where you need to extract data from a Google Cloud SQL database and … Read more

Passing a Dictionary to a Custom Operator in Apache Airflow

Introduction to the Topic In this comprehensive guide, we will delve into the process of passing a dictionary to a custom operator in Apache Airflow. As you navigate through the world of Airflow, there comes a time when the standard operators fall short, and you need to customize your workflow. This customization often involves passing … Read more