Apache Pinot · Schema

ClusterInfo

ClusterInfo schema from Apache Pinot

AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

Properties

Name Type Description
clusterName string
version string
numOnlineControllers integer
numOnlineBrokers integer
numOnlineServers integer
View JSON Schema on GitHub

JSON Schema

apache-pinot-cluster-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pinot/refs/heads/main/json-schema/apache-pinot-cluster-info-schema.json",
  "title": "ClusterInfo",
  "description": "ClusterInfo schema from Apache Pinot",
  "type": "object",
  "properties": {
    "clusterName": {
      "type": "string",
      "example": "PinotCluster"
    },
    "version": {
      "type": "string",
      "example": "1.0.0"
    },
    "numOnlineControllers": {
      "type": "integer",
      "example": 1
    },
    "numOnlineBrokers": {
      "type": "integer",
      "example": 2
    },
    "numOnlineServers": {
      "type": "integer",
      "example": 4
    }
  }
}