Weaviate · JSON Structure

Weaviate Shard Progress Structure

Progress information for exporting a single shard

Type: object Properties: 4
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Weaviate Shard Progress Structure is a JSON Structure definition published by Weaviate, describing 4 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

status objectsExported error skipReason

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "$id": "https://api-evangelist.github.io/weaviate/json-structure/weaviate-shard-progress-structure.json",
  "title": "ShardProgress",
  "description": "Progress information for exporting a single shard",
  "type": "object",
  "properties": {
    "status": {
      "type": "str",
      "description": "Status of this shard's export"
    },
    "objectsExported": {
      "type": "int64",
      "description": "Number of objects exported from this shard"
    },
    "error": {
      "type": "str",
      "description": "Error message if this shard's export failed"
    },
    "skipReason": {
      "type": "str",
      "description": "Reason why this shard was skipped (e.g. tenant status)"
    }
  }
}