Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
1–10 of 12 posts
Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#2Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#3We are building something similar for Cronitor that will work for any kind of scheduled job. If anybody is interested in beta testing or hearing more I would love to chat.
Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#4https://airflow.apache.org/docs/stable/concepts.html
In case you were also wondering what this item is about and came to the comments first.
Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#5Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#6Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#7Airflow is _the worst_
Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#8Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#9Just a thought - one that could involve implementation challenges and/or require too much effort to be worthwhile:
It might be possible to generate iCalendar-format schedules, which could widen compatibility and ease up the access permissions concerns you mention in the readme.
Python has a decent icalendar[1] library - and updates to existing entries be handled by ensuring that the ID for each schedule object is stable when updates are distributed[2].
[1] - https://icalendar.readthedocs.io/en/latest/usage.html#exampl...
[2] - https://en.wikipedia.org/wiki/ICalendar#Distributing_updates
Re: Show HN: Visualize Airflow's schedule by exporting future DAG runs to GCalendar
#10This looks very neat! Just a thought - one that could involve implementation challenges and/or require too much effort to be worthwhile: It might be possible to generate iCalendar-format schedules, which could widen compatibility and ease up the access permissions concerns you mention in the readme. Python has a decent icalendar[1] library - and updates to existing entries be handled by ensuring that the ID for each…