Cluster

URL:
https://<clusters-url>/<cluster>
Methods:
GET
Version Introduced:
10.1

Description

This resource returns the properties of an individual cluster.

A Cluster is a group of server machines that host a collection of GIS services. Grouping server machines into a cluster allows you to treat them as a single unit to which you can publish GIS services. A cluster with more than one server machine provides a level of fault tolerance to the services. At the same time, having more than one machine increases the computing power of your cluster, hence increasing the overall throughput. A cluster is dynamic with respect to the list of server machines. New server machines can be added to increase computing power without affecting the already running GIS services. You can also remove machines from a cluster and re-assign them to another cluster.

Request parameters

ParameterDetails

f

The response format. The default response format is html .

Values: html | json | pjson

Example usage

Below is a sample request URL for an individual cluster resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/admin/clusters/MapsCluster?f=json

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
{
  "clusterName": "<name>",
  "clusterProtocol": <protocol>,
  "machineNames": [ "<machine1>", "<machine2>", ...]
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "clusterName": "MapsCluster",
  "clusterProtocol": {
    "type": "TCP",
    "tcpClusterPort": "4014",
  }
  "machineNames": [ "SERVER1.DOMAIN.COM", "SERVER2.DOMAIN.COM"]
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.