Couchbase · Schema

AnalyticsClusterStatus

Analytics cluster status information

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
state string Overall state of the Analytics cluster
nodes array List of Analytics nodes and their states
View JSON Schema on GitHub

JSON Schema

couchbase-analyticsclusterstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnalyticsClusterStatus",
  "title": "AnalyticsClusterStatus",
  "type": "object",
  "description": "Analytics cluster status information",
  "properties": {
    "state": {
      "type": "string",
      "description": "Overall state of the Analytics cluster",
      "enum": [
        "ACTIVE",
        "UNUSABLE",
        "RECOVERING"
      ]
    },
    "nodes": {
      "type": "array",
      "description": "List of Analytics nodes and their states",
      "items": {
        "type": "object",
        "properties": {
          "nodeId": {
            "type": "string",
            "description": "Node identifier"
          },
          "state": {
            "type": "string",
            "description": "State of the individual node"
          },
          "partitions": {
            "type": "array",
            "description": "Data partitions on the node",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  }
}