schedule.[taskType].auto.no-update-window.duration

Specifies the duration of a window during which tasks of the given type will not be automatically scheduled.

Key: schedule.[taskType].auto.no-update-window.duration
Type: java.time.Duration
Can be set in: collection.cfg

Description

This setting declares the duration of a window during which tasks of the given type will not be scheduled, even if the schedule.task-type.auto.desired-time-between-updates setting indicates that they should be started.

Values are in the ISO-8601 duration format PnDTnHnMn.nS with days considered to be exactly 24 hours. Further details on the format accepted and examples are available in Java’s Duration.parse(CharSequence) method documentation.

See: update task scheduler - supported task types for permitted values of the taskType.

Default Value

No values is set by default, meaning updates may be automatically scheduled at any time of day.

Examples

schedule.full-update.auto.no-update-window.duration=PT8H

Prevent full-update tasks being scheduled for 8 hours after the window start time (defined by schedule.full-update.auto.no-update-window.start-time).