Versions Compared

Key

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

...

  • Starting from Releases 1.7 we introduced a new microscheduling, a new and more efficient mechanism for job starts.
  • In the mean time we had knowledge of some customers running into problems with this feature.
  • In response to this this 
    • we added some fixes and
    • we modified the default behavior for this feature with Release 1.7.4274 (1.7.3),
      Jira
      serverSOS JIRA
      columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
      serverId6dc67751-9d67-34cd-985b-194a8cdc9602
      keyJS-1235

How to disable microscheduling for releases before 1.7.3

 

You can disable the microscheduling in your JobScheduler environment manually by setting the following parameter in ./config/scheduler.xml: 

Code Block
languagexml
titleConfiguration for scheduler.xml
<config>
...
	<params>
    	<param name="scheduler.old_microscheduling.enable_for_jobs" value="false"/>
	</params>
...
</config>

...