Qdrant · Schema

CollectionStatus

Current state of 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-collectionstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollectionStatus",
  "title": "CollectionStatus",
  "description": "Current state of the collection. `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"
  ]
}