Skip To Content
ArcGIS Developer
Dashboard

Clusters

  • URL: https://<site-url>/clusters
  • Version Introduced:10.1

Description

Legacy:
Clusters have been deprecated. The use of clusters for new deployments is strongly discouraged and existing deployments are advised to migrate away from use of clusters as part of ongoing maintenance and upgrades.

This resource returns a list of all the clusters created within your site. The Create Cluster operation lets you define a new cluster configuration.

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 the clusters resource:

https://machine.domain.com/webadaptor/admin/clusters?f=json

JSON Response syntax


{
  "clusters": [
    <cluster1>,
    <cluster2>,
    ...
  ]
}

JSON Response example


{
  "clusters": [
    {
      "clusterName": "DevCluster",
      "clusterProtocol": {
        "type": "TCP",
        "tcpClusterPort": 4014
      },
      "machineNames": [
        "MACHINE1.DOMAIN.COM",
        "MACHINE2.DOMAIN.COM"
      ]
    },
    {
      "clusterName": "ProdCluster",
      "clusterProtocol": {
        "type": "TCP",
        "tcpClusterPort": 5014
      },
      "machineNames": [
        "MACHINE3.DOMAIN.COM",
        "MACHINE4.DOMAIN.COM"
      ]
    }
  ]
}