What problem does it solve? Qdrant deployments can consume excessive RAM, causing out-of-memory crashes, growing resident memory, and confusion when actual usage doesn't match capacity calculations. This Skill helps diagnose whether memory pressure comes from resident memory or OS page cache and applies the right reduction techniques. ## Core Features & Use Cases - Memory Diagnosis: Distinguishes resident memory (RSSAnon) from OS page cache, interprets the /metrics endpoint, and flags resident memory above 80% of total RAM as a problem. - Footprint Reduction: Applies quantization, float16/int8/turbo4 datatypes, Matryoshka Representation Learning, and on-disk storage for HNSW indexes, payload indexes, and sparse vectors. - Version-Aware Configuration: Maps settings to the correct Qdrant version, using memory: pinned/cached/cold on 1.19+ and always_ram/on_disk booleans on 1.18 or older. - Use Case: A multi-tenant deployment keeps crashing during recovery. Use this Skill to move cold tenants' vectors and payload indexes to disk, enable quantization, and leave headroom for segment optimization. ## Quick Start Ask the assistant to diagnose why your Qdrant node's memory usage is so high and recommend configuration changes to reduce RAM consumption.