How to check the next execution date of an Airflow DAG

As far as I know, there is no way to check the next execution date in the Airflow web interface. It may be possible if you make some customizations of your Airflow instance or use a plugin.

If you are quite desperate, you may try to copy the cron expression to https://crontab.guru/ and check the execution date using that website.

In this article, I will use something way simpler. All we need is the airflow command-line interface.

We have to copy the DAG id and use the next_execution command like this:

airflow next_execution dag_id

In the output, we are going to get the next execution date.

Older post

Doing data quality checks using the SQLCheckOperator

How to use SQLCheckOperator to verify that the database contains an expected number of rows

Newer post

How to render an Airflow template for testing

How to generate the code of an Airflow task from a template and a given execution date