Skip to content

Commit

Permalink
Merge pull request #639 from jdanbrown/patch-1
Browse files Browse the repository at this point in the history
docs/scheduler.rst: Fix table formatting

GitOrigin-RevId: f073da4bed714e10ad7dea5504a3c31dd05daf3e
  • Loading branch information
mistercrunch authored and Cloud Composer Team committed Dec 6, 2022
1 parent 9a42900 commit caee8e7
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/scheduler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ preferably a
a ``str``, or a ``datetime.timedelta`` object. Alternatively, you can also
use one of these cron "preset":

+--------------+---------------------------------------------------------------- +---------------+
| preset | Run once a year at midnight of January 1 | cron |
+==============+================================================================ +===============+
| ``@once`` | Schedule once and only once | |
+--------------+---------------------------------------------------------------- +---------------+
| ``@hourly`` | Run once an hour at the beginning of the hour | ``0 * * * *`` |
+--------------+---------------------------------------------------------------- +---------------+
| ``@daily`` | Run once a day at midnight | ``0 0 * * *`` |
+--------------+---------------------------------------------------------------- +---------------+
| ``@weekly`` | Run once a week at midnight on Sunday morning | ``0 0 * * 0`` |
+--------------+---------------------------------------------------------------- +---------------+
| ``@monthly`` | Run once a month at midnight of the first day of the month | ``0 0 1 * *`` |
+--------------+---------------------------------------------------------------- +---------------+
| ``@yearly`` | Run once a year at midnight of January 1 | ``0 0 1 1 *`` |
+--------------+---------------------------------------------------------------- +---------------+
+--------------+----------------------------------------------------------------+---------------+
| preset | Run once a year at midnight of January 1 | cron |
+==============+================================================================+===============+
| ``@once`` | Schedule once and only once | |
+--------------+----------------------------------------------------------------+---------------+
| ``@hourly`` | Run once an hour at the beginning of the hour | ``0 * * * *`` |
+--------------+----------------------------------------------------------------+---------------+
| ``@daily`` | Run once a day at midnight | ``0 0 * * *`` |
+--------------+----------------------------------------------------------------+---------------+
| ``@weekly`` | Run once a week at midnight on Sunday morning | ``0 0 * * 0`` |
+--------------+----------------------------------------------------------------+---------------+
| ``@monthly`` | Run once a month at midnight of the first day of the month | ``0 0 1 * *`` |
+--------------+----------------------------------------------------------------+---------------+
| ``@yearly`` | Run once a year at midnight of January 1 | ``0 0 1 1 *`` |
+--------------+----------------------------------------------------------------+---------------+


Your DAG will be instantiated
Expand Down

0 comments on commit caee8e7

Please sign in to comment.