Weaviate · Schema

ClusterStatisticsResponse

The cluster statistics of all of the Weaviate nodes

Vector DatabaseArtificial IntelligenceMachine-LearningSemantic SearchOpen-SourceGraphQLKubernetes

Properties

Name Type Description
statistics array
synchronized boolean
View JSON Schema on GitHub

JSON Schema

weaviate-clusterstatisticsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterStatisticsResponse",
  "title": "ClusterStatisticsResponse",
  "type": "object",
  "description": "The cluster statistics of all of the Weaviate nodes",
  "properties": {
    "statistics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Statistics"
      }
    },
    "synchronized": {
      "type": "boolean"
    }
  }
}