Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/JobManagerConfiguration"

(Configuring the Job Manager)
Line 2: Line 2:
  
 
== Configuring the Job Manager ==
 
== Configuring the Job Manager ==
 
<span style="color:#ff0000">'''This page is work in progress.'''</span>
 
  
 
The Job Manager comes with a simple configuration file located in <tt>SMILA/configuration/org.eclipse.smila.jobmanager/jobmanager.properties</tt>. By default it looks like this:
 
The Job Manager comes with a simple configuration file located in <tt>SMILA/configuration/org.eclipse.smila.jobmanager/jobmanager.properties</tt>. By default it looks like this:

Revision as of 08:22, 5 September 2011

Note.png
Available since SMILA 0.9!


Configuring the Job Manager

The Job Manager comes with a simple configuration file located in SMILA/configuration/org.eclipse.smila.jobmanager/jobmanager.properties. By default it looks like this:

jobmanager.task.max.retries.recoverable.error=10
jobmanager.task.max.retries.recoverable.error
Defines the maximum number of retries for tasks finished with a RECOVERABLE_ERROR result, either explicity sent by the worker or by the task monitoring of the Task Manager due to the worker not having sent keepAlive signals anymore for a configured period of time. As long as this retry limit is not reached, the Job Manager will recreate the task with a new task ID but the same settings, so that it can be processed by another worker. If the retry count is reached, however, the RECOVERABLE_ERROR will be handled as a FATAL_ERROR. Default: 10.

Back to the top