qdrant-clients-sdk
Qdrant provides client SDKs for various programming languages, allowing easy integration with Qdrant deployments.
Navigation hub linking sub-skills for proactive Qdrant tuning: search speed, indexing performance, and memory usage optimization. Use when planning configuration or capacity changes to improve speed and efficiency. For diagnosing an active production slowdown or analyzing live
$ npx -y skills add qdrant/skills --skill qdrant-performance-optimization --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/qdrant-performance-optimizationContext preview
The summary Claude sees to decide when to auto-load this skill.
Navigation hub linking sub-skills for proactive Qdrant tuning: search speed, indexing performance, and memory usage optimization. Use when planning configuration or capacity changes to improve speed and efficiency. For diagnosing an active production slowdown or analyzing live
name: qdrant-performance-optimization description: "Navigation hub linking sub-skills for proactive Qdrant tuning: search speed, indexing performance, and memory usage optimization. Use when planning configuration or capacity changes to improve speed and efficiency. For diagnosing an active production slowdown or analyzing live metrics, use qdrant-monitoring instead." allowed-tools: - Read - Grep - Glob
Route first, then answer. Match the user's symptom in the table, `Read` that file, and answer from it. Do not answer from this page alone: it contains routing only, not the guidance. If two rows match, read both.
| The user says | Read | |---|---| | Filtered queries much slower than unfiltered | `search-speed-optimization/SKILL.md` | | Low QPS, cannot handle the query load | `search-speed-optimization/SKILL.md` | | Individual queries take too long to return | `search-speed-optimization/SKILL.md` | | Index build or HNSW build takes too long, vector upload is slow | `indexing-performance-optimization/SKILL.md` | | Collection stays yellow, optimizer stuck or runs for a long time | `indexing-performance-optimization/SKILL.md` | | Bulk upsert of vectors is slow | `indexing-performance-optimization/SKILL.md` | | RAM usage too high, out-of-memory crashes | `memory-usage-optimization/SKILL.md` | | Want to fit a larger dataset on the same hardware | `memory-usage-optimization/SKILL.md` | | Reducing cost by moving data to disk | `memory-usage-optimization/SKILL.md` |
Latency and throughput pull opposite ways on segment count. For latency, increase segments toward the CPU core count (`default_segment_number: 16`). For throughput, use fewer and larger segments (`default_segment_number: 2`). Applying the wrong direction makes the reported problem worse.
Agent skills for building with Qdrant vector search Skills encode deep Qdrant knowledge so coding agents can make the engineering decisions that determine whether vector search works well: quantization, sharding, tenant isolation, hybrid search, model
Repo: qdrant/skills
Qdrant provides client SDKs for various programming languages, allowing easy integration with Qdrant deployments.
Guides Qdrant deployment selection. Use when someone asks 'how to deploy Qdrant', 'Docker vs Cloud', 'local mode', 'embedded Qdrant', 'Qdrant EDGE', 'which…
Guides building on Qdrant Edge, the embedded in-process shard. Use when someone asks 'how to sync Edge with the server', 'keep a local shard in sync with…
Setting up and running Qdrant Hybrid Cloud on your own Kubernetes cluster (managed, on-prem, or edge): prerequisites, storage/CSI and backups, installing the…
Guides use of the Qdrant Migration Tool CLI to move vectors, metadata, and sparse embeddings from another vector database into Qdrant. Use when someone asks…
Guides embedding model migration in Qdrant without downtime. Use when someone asks 'how to switch embedding models', 'how to migrate vectors', 'how to update…