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

(New page: = Bundle org.eclipse.smila.clusterconfig.simple = <b>Available since SMILA 0.9.0</b> This page gives only a rough overview of the components. Please refer to the [http://build.eclipse.or...)
 
(Description)
Line 23: Line 23:
 
   "zkGcInterval" : 90,
 
   "zkGcInterval" : 90,
 
   "failsafetyLevel": 1,
 
   "failsafetyLevel": 1,
   "maxScaleUp" : 5,
+
   "taskmanager": {
 +
    "maxScaleUp" : 5,
 +
    "maxRetries": 10,
 +
    "timeToLive": 120
 +
  },
 
   "workers" : {
 
   "workers" : {
 
     "worker1" : {
 
     "worker1" : {

Revision as of 07:22, 4 October 2011

Bundle org.eclipse.smila.clusterconfig.simple

Available since SMILA 0.9.0

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 oüptions are found, it will provide defaults as defined in the ClusterConfigService interface.

Example configuration file:

{
  "localHost": "node1",
  "clusterNodes" : [ "node1", "node2" ],
  "zkGcInterval" : 90,
  "failsafetyLevel": 1,
  "taskmanager": {
    "maxScaleUp" : 5,
    "maxRetries": 10,
    "timeToLive": 120
  },
  "workers" : {
    "worker1" : {
       "maxScaleUp" : 1
    } ,
    "worker2" : {
       "maxScaleUp" : 2
    },
    "worker3" : {
    }
  },
  "services" : {
    "smila" : {
      "httpPort" : 8080
    }
  }
}

Back to the top