Versions Compared

Key

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

...

  • Java heap space usage can be modified by JobScheduler settings at job level and at a global level:
    • The -Xmxsize parameter sets the maximum Java heap size
    • The -Xmssize paramter sets the initial Java heap size
      • each job can be assigned an attribute to e.g. specify 64 MB memory consumption like this
        <job java_options="-Xmx64m -Xms64m">
      • The file ./config/sos.ini can be used to specify the memory consumption for all jobs like this
        [java]
        options = -Xmx64m -Xms64m
      • The file ./config/factory.ini can be used to specify memory consumption for jobs executed with Agents like this:
        [java]
        job_options = -Xmx64m -Xms64m
  • For more detailed information see How to increase or decrease the Java heap space

...