2.6 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | restart Stanza - Job Specification | docs-job-specification-restart | The "restart" stanza configures a group's behavior on task failure. |
restart
Stanza
Placement |
job -> group -> **restart**
|
---|
The restart
stanza configures a group's behavior on task failure.
job "docs" {
group "example" {
restart {
attempts = 3
delay = "30s"
}
}
}
restart
Parameters
-
attempts
(int: <varies>)
- Specifies the number of restarts allowed in the configured interval. Defaults vary by job type, see below for more information. -
delay
(string: "15s")
- Specifies the duration to wait before restarting a task. This is specified using a label suffix like "30s" or "1h". A random jitter of up to 25% is added to the delay. -
interval
(string: <varies>)
- Specifies the duration which begins when the first task starts and ensures that onlyattempts
number of restarts happens within it. If more thanattempts
number of failures happen, behavior is controlled bymode
. This is specified using a label suffix like "30s" or "1h". Defaults vary by job type, see below for more information. -
mode
(string: "delay")
- Controls the behavior when the task fails more thanattempts
times in an interval. For a detailed explanation of these values and their behavior, please see the mode values section.
restart
Parameter Defaults
The values for many of the restart
parameters vary by job type. Here are the
defaults by job type:
-
The default batch restart policy is:
restart { attempts = 15 delay = "15s" interval = "168h" mode = "delay" }
-
The default non-batch restart policy is:
restart { interval = "1m" attempts = 2 delay = "15s" mode = "delay" }
mode
Values
This section details the specific values for the "mode" parameter in the Nomad job specification for constraints. The mode is always specified as a string
restart {
mode = "..."
}
-
"delay"
- Instructs the scheduler to delay the next restart until the nextinterval
is reached. This is the default behavior. -
"fail"
- Instructs the scheduler to not attempt to restart the task on failure. This mode is useful for non-idempotent jobs which are unlikely to succeed after a few failures.