Apache Helix · Schema

ExternalView

Current external view showing actual partition states across instances

ApacheCluster ManagementDistributed SystemsOpen-SourcePartitioningReplication

Properties

Name Type Description
id string Resource name
mapFields object Map of partition to instance state map
View JSON Schema on GitHub

JSON Schema

helix-rest-externalview-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/apache-helix/json-schema/helix-rest-externalview-schema.json",
  "title": "ExternalView",
  "type": "object",
  "description": "Current external view showing actual partition states across instances",
  "properties": {
    "id": {
      "type": "string",
      "description": "Resource name",
      "example": "my-resource"
    },
    "mapFields": {
      "type": "object",
      "description": "Map of partition to instance state map"
    }
  }
}