Replies: 2 comments
-
Thanks for opening your first issue here! Be sure to follow the issue template! |
Beta Was this translation helpful? Give feedback.
0 replies
-
I don't think Airflow should have timezone column as default in the DAG list page. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Display schedule timezone in web UI for timezone-aware DAGs
Use case / motivation
We use Airflow to orchestrate tasks in a variety of different systems, some of which contain timezone-dependent data and others work in UTC. Additionally, some DAGs must be run at certain times in our local timezone while others require fixed intervals which should not be affected by daylight savings. Using only UTC or only local is not an option for us and in the future it is likely that some DAGs will depend on a third timezone entirely.
Looking at the cron expressions in the DAG list, there is no way to quickly tell which DAGs are timezone-dependent. This can be confusing, especially for beginners or less frequent Airflow users. For example two DAGs can appear to be scheduled to run in parallel, but their actual start time will be 3 hours apart because one is timezone-aware.
Changing the UI timezone does not affect the cron expressions - I assume that this is intentional and it seems to be reasonable. However, it would be a lot easier to interpret the expressions if the timezone was also displayed next to them.
Beta Was this translation helpful? Give feedback.
All reactions