Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Monitor class updated

...

  • This article describes how the substitution of parameter values works in JobScheduler. It also describes how to use parameters in shell scriptscripts, API Jobs and pre- and postprocessing scripts.
  • JobScheduler ships with a Monitor that performs substitution for Node Parameters:
    • The "classic" current implementation makes use of the following monitor configuration monitor:
      • <monitor name="configuration_monitor">
            <script java_class="com.sos.schedulerjitl.managedjobchainnodeparameter.configurationmonitor.ConfigurationOrderMonitorJobchainNodeSubstituteMonitor" language="java"/>
        </monitor>

      • The implementation remains became available throughout with release 1.11 and will be discontinued with release 1.12.:
      • Jira
        serverSOS JIRA
        columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
        serverId6dc67751-9d67-34cd-985b-194a8cdc9602
        keyJITL-
        411
        276
      • Display feature availability
        EndingWithRelease1.12
        StartingFromRelease1.
        6
        11
    • The optimized "classic" implementation makes use of the following configuration monitor configuration:
      • <monitor name="configuration_monitor">
            <script java_class="com.sos.jitlscheduler.jobchainnodeparametermanaged.monitorconfiguration.JobchainNodeSubstituteMonitorConfigurationOrderMonitor" language="java"/>
        </monitor>

      • The implementation becomes available remains available throughout release 1.11 and will be discontinued with release 1.11:12.
        • Jira
          serverSOS JIRA
          columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
          serverId6dc67751-9d67-34cd-985b-194a8cdc9602
          keyJITL-
        276
        • 411
        • Display feature availability
          EndingWithRelease1.12
          StartingFromRelease1.
        11
        • 6

Substitution of parameter values by the JobScheduler

...

  • ${test} has been substituted to an empty value as this environment variable has not prevously previously been set.
  • To access the value of the parameter in a shell script, the parameter name has to be prefixed. The default value of the prefix is:
    • SCHEDULER_PARAM_
    • This prefix can be set by the scheduler.variable_name_prefix parameter which is configured in the $scheduler_data/config/scheduler.xml file. JobScheduler has to be restarted after the value of the prefix has been changed.

...

An additional substitution mechanism for jobs running in a job chain is provided by the com.sos.schedulerjitl.managedjobchainnodeparameter.configurationmonitor.ConfigurationOrderMonitorJobchainNodeSubstituteMonitor preprocessing Java class that is added as a Monitor to jobs.

...

Display feature availability
EndingWithRelease1.10

  • Performance of parameter subsitution substitution is an issue:
    • 10 node parameter: 4s
    • 20 node parameter: 6s

...

The following patterns are recognized as parameters to be substituted:

  • %param%
  • \${param}

Where param can be

  • a task parameter
  • an order parameter
  • a node parameter
  • a JobScheduler parameter
  • some special parameter (see below list)

Note: Substitution applies exclusively to the current job run. This means that the values of the parameters will be unchanged after the execution of the job. If you have an order parameter param_x whose value is value is \${param_y} and there are two steps in the job chain, the value of param_x after the execution of the first node will still be value is is \${param_y}

Handling of substitution up to release 1.10

...