Qdrant · Schema

HnswGlobalConfig

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
healing_threshold number Enable HNSW healing if the ratio of missing points is no more than this value. To disable healing completely, set this value to `0.0`.
View JSON Schema on GitHub

JSON Schema

qdrant-hnswglobalconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HnswGlobalConfig",
  "title": "HnswGlobalConfig",
  "type": "object",
  "properties": {
    "healing_threshold": {
      "description": "Enable HNSW healing if the ratio of missing points is no more than this value. To disable healing completely, set this value to `0.0`.",
      "default": 0.3,
      "type": "number",
      "format": "double",
      "maximum": 1,
      "minimum": 0
    }
  }
}