Qdrant · Schema

SnapshotPriority

Defines source of truth for snapshot recovery: `NoSync` means - restore snapshot without *any* additional synchronization. `Snapshot` means - prefer snapshot data over the current state. `Replica` means - prefer existing data over the snapshot.

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-snapshotpriority-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SnapshotPriority",
  "title": "SnapshotPriority",
  "description": "Defines source of truth for snapshot recovery:\n\n`NoSync` means - restore snapshot without *any* additional synchronization. `Snapshot` means - prefer snapshot data over the current state. `Replica` means - prefer existing data over the snapshot.",
  "type": "string",
  "enum": [
    "no_sync",
    "snapshot",
    "replica"
  ]
}