Skip to content

Commit

Permalink
[ISSUE 661] Add documentation about timeouts for DAG tasks (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiyo510 authored Aug 12, 2024
1 parent a756068 commit 807d3f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/yaml_format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ This section provides a comprehensive list of available fields that can be used
- ``logDir``: The directory where the standard output is written. The default value is ``${HOME}/.local/share/logs``.
- ``restartWaitSec``: The number of seconds to wait after the DAG process stops before restarting it.
- ``histRetentionDays``: The number of days to retain execution history (not for log files).
- ``timeout``: The timeout of the DAG, which is optional. Unit is seconds.
- ``delaySec``: The interval time in seconds between steps.
- ``maxActiveRuns``: The maximum number of parallel running steps.
- ``params``: The default parameters that can be referred to by ``$1``, ``$2``, and so on.
Expand All @@ -342,7 +343,8 @@ Example:
- PATH: /usr/local/bin:${PATH}
logDir: ${LOG_DIR}
restartWaitSec: 60
histRetentionDays: 3
histRetentionDays: 3
timeout: 3600
delaySec: 1
maxActiveRuns: 1
params: param1 param2
Expand Down

0 comments on commit 807d3f9

Please sign in to comment.