Qdrant · Schema

ShardStatus

Current state of the shard (supports same states as the collection) `Green` - all good. `Yellow` - optimization is running, 'Grey' - optimizations are possible but not triggered, `Red` - some operations failed and was not recovered

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-shardstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShardStatus",
  "title": "ShardStatus",
  "description": "Current state of the shard (supports same states as the collection)\n\n`Green` - all good. `Yellow` - optimization is running, 'Grey' - optimizations are possible but not triggered, `Red` - some operations failed and was not recovered",
  "type": "string",
  "enum": [
    "green",
    "yellow",
    "grey",
    "red"
  ]
}