In airflow, everything is supposed to be UTC (which is not affected by DST).
However, we have workflows that deliver things based on time zones that are affected by DST.
An example scenario:
Is there a way to schedule dags so they run at the correct time after a time change?
This question was asked when airflow was on version 1.8.x.
This functionality is built-in now, as of airflow 1.10.
https://airflow.apache.org/timezone.html
Set the timezone in airflow.cfg
and dst should be handled correctly.