Weaviate · Schema

ShardStatusGetResponse

Response body of shard status get request

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
name string Name of the shard
status string Status of the shard
vectorQueueSize integer Size of the vector queue of the shard
View JSON Schema on GitHub

JSON Schema

weaviate-shard-status-get-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-shard-status-get-response-schema.json",
  "title": "ShardStatusGetResponse",
  "description": "Response body of shard status get request",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the shard"
    },
    "status": {
      "type": "string",
      "description": "Status of the shard"
    },
    "vectorQueueSize": {
      "type": "integer",
      "description": "Size of the vector queue of the shard"
    }
  }
}