Skip to main content

Notice: This Wiki is now read only and edits are no longer 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"

m
Line 1: Line 1:
== Configuration ==
+
{{note| Available since SMILA 0.9!}}
  
There is a simple configuration file in IAS/configuration/org.eclipse.smila.jobmanager named jobmanager.properties. By default it looks like this:
+
== Configuring the Job Manager ==
 +
 
 +
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:
  
 
<pre>
 
<pre>
Line 7: Line 9:
 
</pre>
 
</pre>
  
;jobmanager.task.max.retries.recoverable.error:Number of retries for tasks finished with a RECOVERABLE_ERROR result, either explicity sent by the worker or by the task monitoring of TaskManager, if the worker did not send keepAlives anymore for a configured time. If the retry limit has not yet been reached the jobmanager recreates the task with a new task ID, but same settings else. If the retry count is reached, the RECOVERABLE_ERROR is handled as a FATAL_ERROR. Default: 10.
+
;jobmanager.task.max.retries.recoverable.error: Number of retries for tasks finished with a RECOVERABLE_ERROR result, either explicity sent by the worker or by the task monitoring of TaskManager, if the worker did not send keepAlives anymore for a configured time. If the retry limit has not yet been reached the jobmanager recreates the task with a new task ID, but same settings else. If the retry count is reached, the RECOVERABLE_ERROR is handled as a FATAL_ERROR. Default: 10.

Revision as of 11:28, 11 July 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
Number of retries for tasks finished with a RECOVERABLE_ERROR result, either explicity sent by the worker or by the task monitoring of TaskManager, if the worker did not send keepAlives anymore for a configured time. If the retry limit has not yet been reached the jobmanager recreates the task with a new task ID, but same settings else. If the retry count is reached, the RECOVERABLE_ERROR is handled as a FATAL_ERROR. Default: 10.

Back to the top