Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Holidays for all jobs
    Code Block
    languagexml
    titleHoliday configuration with the scheduler.xml configuration file
      <config>
          <holidays>
              <holiday date="2006-12-25"/>
              ...
              <holiday date="2006-12-26"/>
          </holidays>
          <jobs/>
          <job_chains/>
      </config>
  • Holidays for a specific job
Code Block
languagexml
titleHoliday configuration with the run-time of a specific job
 <job>
    <run_time let_run="no">
        <period single_start = "08:00"/>
        <holidays>
            <holiday date="2006-06-19"/>
            ...
            <holiday date="2006-07-19"/>
        </holidays>
    </run_time>
  </job>

 

...

  • Holidays re-used by a number of jobs
    • A holiday configuration can be written to a specific XML file and includes just the <holidays> element and subsequent elements like this:

...