Airflow macros have three variables that we can access to get the dates related to the previous DAG runs.
Table of Contents
First, we can access the previous execution date by using the {{ prev_execution_date }}
macro. In my opinion, it has limited usage because, in general, we know how often the DAG runs and what should be the previous execution date.
A way more useful variable is the {{ prev_execution_date_success }}
, which gives us the previous successful DAG run’s execution date. We can use it to filter the data and retrieve only the values that were not available during the last successful run.
If we use the current date as a filter while retrieving the data, we may also need the {{ prev_start_date_success }}
variable, which returns the start time of the previous successful run.
Get Weekly AI Implementation Insights
Join engineering leaders who receive my analysis of common AI production failures and how to prevent them. No fluff, just actionable techniques.