Versions Compared

Key

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

...

Let's assume the following configuration for a job chain with a file order source:

Code Block
languagexml
titleJob Chain
<?xml version="1.0" encoding="ISO-8859-1"?>
<job_chain>
    <file_order_source remote_scheduler="http://agent_host:4445" directory="/srv/files/in"/>

    <job_chain_node state="start"    job="job1" next_state="continue" error_state="error"/>
    <job_chain_node state="continue" job="job2" next_state="success"  error_state="error"/>

    <file_order_sink  state="success" move_to="/tmp/jobscheduler/file/success" remove="no"/>
    <file_order_sink  state="error" move_to="/tmp/jobscheduler/file/error" remove="no"/>
</job_chain>

...