From 8cd5baaf12a93791705d1fbd7ad5bf7a080911ac Mon Sep 17 00:00:00 2001 From: John Donalson Date: Sun, 25 Jan 2026 23:29:30 -0500 Subject: [PATCH] Update qdrant.py --- scripts/ingest/qdrant.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ingest/qdrant.py b/scripts/ingest/qdrant.py index 8a899216..73daf2f2 100644 --- a/scripts/ingest/qdrant.py +++ b/scripts/ingest/qdrant.py @@ -280,6 +280,7 @@ def _ensure_collection_with_mode( sparse_vectors_config=sparse_cfg, hnsw_config=models.HnswConfigDiff(m=16, ef_construct=256), quantization_config=quant_cfg, + on_disk_payload=True, # Enable zstd compression for 50-70% storage savings ) sparse_info = f", sparse: [{LEX_SPARSE_NAME}]" if sparse_cfg else "" quant_info = f", quantization: {os.environ.get('QDRANT_QUANTIZATION', 'none')}" if quant_cfg else ""