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/Bundle org.eclipse.smila.clusterconfig.simple"

(Bundle org.eclipse.smila.clusterconfig.simple)
(Description)
 
Line 18: Line 18:
 
<pre>
 
<pre>
 
{
 
{
  "localHost": "node1",
 
  "clusterNodes" : [ "node1", "node2" ],
 
  "zkGcInterval" : 90,
 
  "failsafetyLevel": 1,
 
 
   "taskmanager": {
 
   "taskmanager": {
 
     "maxScaleUp" : 5,
 
     "maxScaleUp" : 5,

Latest revision as of 11:39, 23 January 2012

Bundle org.eclipse.smila.clusterconfig.simple

This page gives only a rough overview of the components. Please refer to the JavaDoc for specific information.

org.eclipse.smila.clusterconfig.simple.SimpleClusterConfigService

JavaDoc

The JavaDoc for the SimpleClusterConfigService API can be found at org.eclipse.smila.clusterconfig.simple.SimpleClusterConfigService.

Description

The SimpleClusterConfigService implements the ClusterConfigService interface.

The interface ClusterConfigService is defined in org.eclipse.smila.clusterconfig.

The SimpleClusterConfigService reads a json file named clusterconfig.json from the configuration directory configuration/org.eclipse.smila.clusterconfig.simple. If no such file exists or not all configuration options are found, it will provide defaults as defined in the ClusterConfigService interface.

Example configuration file:

{
  "taskmanager": {
    "maxScaleUp" : 5,
    "maxRetries": 10,
    "timeToLive": 120
  },
  "workers" : {
    "worker1" : {
       "maxScaleUp" : 1
    } ,
    "worker2" : {
       "maxScaleUp" : 2
    },
    "worker3" : {
    }
  },
  "services" : {
    "smila" : {
      "httpPort" : 8080
    }
  }
}

Back to the top