reschedule Stanza
Placement | job -> reschedule job -> group -> reschedule |
The reschedule
stanza specifies the group's rescheduling strategy. If specified at the job
level, the configuration will apply to all groups within the job. If the
reschedule stanza is present on both the job and the group, they are merged with
the group stanza taking the highest precedence and then the job.
Nomad will attempt to schedule the task on another node if any of its allocation statuses become "failed". It prefers to create a replacement allocation on a node that hasn't previously been used.
The reschedule stanza does not apply to system
jobs because they run on
every node.
reschedule
Parameters
attempts
(int: <varies>)
- Specifies the number of reschedule attempts allowed in the configured interval. Defaults vary by job type, see below for more information.interval
(string: <varies>)
- Specifies the sliding window which begins when the first reschedule attempt starts and ensures that onlyattempts
number of reschedule happen within it. If more thanattempts
number of failures happen with this interval, Nomad will not reschedule any more.delay
(string: <varies>)
- Specifies the duration to wait before attempting to reschedule a failed task. This is specified using a label suffix like "30s" or "1h". Delay cannot be less than 5 seconds.delay_function
(string: <varies>)
- Specifies the function that is used to calculate subsequent reschedule delays. The initial delay is specified by the delay parameter.delay_function
has three possible values which are described below.constant
- The delay between reschedule attempts stays constant at thedelay
value.exponential
- The delay between reschedule attempts doubles.fibonacci
- The delay between reschedule attempts is calculated by adding the two most recent delays applied. For example ifdelay
is set to 5 seconds, the next five reschedule attempts will be delayed by 5 seconds, 5 seconds, 10 seconds, 15 seconds, and 25 seconds respectively.
max_delay
(string: <varies>)
- is an upper bound on the delay beyond which it will not increase. This parameter is used whendelay_function
isexponential
orfibonacci
, and is ignored whenconstant
delay is used.unlimited
(boolean:<varies>)
-unlimited
enables unlimited reschedule attempts. If this is set to true theattempts
andinterval
fields are not used.
Information about reschedule attempts are displayed in the CLI and API for allocations. Rescheduling is enabled by default for service and batch jobs with the options shown below.
reschedule
Parameter Defaults
The values for the reschedule
parameters vary by job type. Below are the
defaults by job type:
The default batch reschedule policy is:
The default service reschedule policy is:
Disabling rescheduling
To disable rescheduling, set the attempts
parameter to zero and unlimited
to false.