Qdrant · Schema

WalConfig

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
wal_capacity_mb integer Size of a single WAL segment in MB
wal_segments_ahead integer Number of WAL segments to create ahead of actually used ones
wal_retain_closed integer Number of closed WAL segments to keep
View JSON Schema on GitHub

JSON Schema

qdrant-walconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WalConfig",
  "title": "WalConfig",
  "type": "object",
  "required": [
    "wal_capacity_mb",
    "wal_segments_ahead"
  ],
  "properties": {
    "wal_capacity_mb": {
      "description": "Size of a single WAL segment in MB",
      "type": "integer",
      "format": "uint",
      "minimum": 1
    },
    "wal_segments_ahead": {
      "description": "Number of WAL segments to create ahead of actually used ones",
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "wal_retain_closed": {
      "description": "Number of closed WAL segments to keep",
      "default": 1,
      "type": "integer",
      "format": "uint",
      "minimum": 1
    }
  }
}