Versions Compared

Key

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

...

  • 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.

...