Weaviate · Schema

ReplicationShardReplicas

Represents a shard and lists the nodes that currently host its replicas.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
shard string
replicas array
View JSON Schema on GitHub

JSON Schema

weaviate-replicationshardreplicas-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplicationShardReplicas",
  "title": "ReplicationShardReplicas",
  "type": "object",
  "description": "Represents a shard and lists the nodes that currently host its replicas.",
  "properties": {
    "shard": {
      "type": "string"
    },
    "replicas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}