Skip to content

Scheduling

Scheduling lets a job run automatically instead of only by manual trigger.

What scheduling controls

Scheduling defines when the system should queue the next run for a job. It does not replace worker availability checks or run-mode restrictions.

Good scheduling practice

  • validate the job manually first
  • confirm that the correct worker pool or worker is available
  • avoid overlapping schedules when the same job is expensive or long-running

Run-mode awareness

Run modes are distinct. A running Scan does not mean the job is unavailable for every other mode, but the same mode should not be stacked accidentally.

See also