Weaviate · Schema

ShardProgress

Progress information for exporting a single shard

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
status string Status of this shard's export
objectsExported integer Number of objects exported from this shard
error string Error message if this shard's export failed
skipReason string Reason why this shard was skipped (e.g. tenant status)
View JSON Schema on GitHub

JSON Schema

weaviate-shardprogress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShardProgress",
  "title": "ShardProgress",
  "type": "object",
  "description": "Progress information for exporting a single shard",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of this shard's export",
      "enum": [
        "TRANSFERRING",
        "SUCCESS",
        "FAILED",
        "SKIPPED"
      ]
    },
    "objectsExported": {
      "type": "integer",
      "format": "int64",
      "description": "Number of objects exported from this shard"
    },
    "error": {
      "type": "string",
      "description": "Error message if this shard's export failed"
    },
    "skipReason": {
      "type": "string",
      "description": "Reason why this shard was skipped (e.g. tenant status)"
    }
  }
}