Airflow on Kubernetes: Get started in 10 mins
How to run Airflow on Kubernetes? Kubernetes is a popular open-source container orchestration system widely used in the industry. It…
How to run Airflow on Kubernetes? Kubernetes is a popular open-source container orchestration system widely used in the industry. It…
The ShortCircuitOperator in Apache Airflow is simple but powerful. It allows skipping tasks based on the result of a condition. There…
Templates and Macros in Apache Airflow allow passing data to your DAGs at runtime. Imagine that you want to execute…
Do you wonder how to use the DockerOperator in Airflow to kick off a docker image? Or how to run…
Are you looking for a way to choose one task or another? Do you want to execute a task based…
Airflow Variables are easy to use but easy to misuse as well. In this tutorial, you will learn everything you…
Airflow Sensors are one of the most common tasks in data pipelines. Why? Because a Sensor waits for a condition…
DuckDB is an in-process OLAP DBMS written in C++ blah blah blah, too complicated. Let’s start simple, shall we? DuckDB…
At the end of this introduction to Airflow, you will be all set for getting started with Airflow. You will…
An Airflow TaskGroup helps make a complex DAG easier to organize and read. Airflow taskgroups are meant to replace SubDAGs,…