pragnareddye commented on code in PR #32392: URL: https://github.com/apache/airflow/pull/32392#discussion_r1255095975
########## docs/apache-airflow/authoring-and-scheduling/timetable.rst: ########## @@ -217,3 +228,72 @@ is immediately triggered after you re-enable the DAG. By these examples, you see how `CronTriggerTimetable`_ triggers DAG runs is more intuitive and more similar to what people expect cron to behave than how `CronDataIntervalTimetable`_ does. + + +.. _Differences between the cron and delta data interval timetables: + +Differences between the cron and delta data interval timetables: +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Choosing between `DeltaDataIntervalTimetable`_ and `CronDataIntervalTimetable`_ depends on your use case. +The following table summarize the DAG runs created (and the data interval that they cover) if you enable Review Comment: ```suggestion The following table summarizes the DAG runs created (and the data interval that they cover). if you enable ``` ########## docs/apache-airflow/authoring-and-scheduling/timetable.rst: ########## @@ -114,6 +114,11 @@ DeltaDataIntervalTimetable Schedules data intervals with a time delta. Can be selected by providing a :class:`datetime.timedelta` or ``dateutil.relativedelta.relativedelta`` to the ``schedule`` parameter of a DAG. +This timetable is more focused on the data interval value, and does not necessarily aligned execution dates with Review Comment: ```suggestion This timetable is more focused on the data interval value and does not necessarily aligned execution dates with ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
