qdrant-clients-sdk
Qdrant provides client SDKs for various programming languages, allowing easy integration with Qdrant deployments.
Guides Qdrant scaling decisions. Use when someone asks 'how many nodes do I need', 'data doesn't fit on one node', 'need more throughput or QPS', 'CPU is pegged / can't keep up with the request rate', 'one query is slow / p99 or tail latency too high', 'cluster is slow', 'too
$ npx -y skills add qdrant/skills --skill qdrant-scaling --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/qdrant-scalingContext preview
The summary Claude sees to decide when to auto-load this skill.
Guides Qdrant scaling decisions. Use when someone asks 'how many nodes do I need', 'data doesn't fit on one node', 'need more throughput or QPS', 'CPU is pegged / can't keep up with the request rate', 'one query is slow / p99 or tail latency too high', 'cluster is slow', 'too
name: qdrant-scaling description: "Guides Qdrant scaling decisions. Use when someone asks 'how many nodes do I need', 'data doesn't fit on one node', 'need more throughput or QPS', 'CPU is pegged / can't keep up with the request rate', 'one query is slow / p99 or tail latency too high', 'cluster is slow', 'too many tenants', 'vertical or horizontal', 'how to shard', 'need to add capacity', 'large limit / pagination / scroll is slow', or 'only recent data matters / expiring old vectors / retention window'." 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 | |---|---| | Data does not fit on a single node, running out of disk or memory as the dataset grows | `scaling-data-volume/SKILL.md` | | Need to shard the collection across more nodes, data outgrew one node | `scaling-data-volume/SKILL.md` | | Cannot handle enough parallel queries, need higher QPS or throughput | `scaling-qps/SKILL.md` | | Can't hold the request rate, CPU is pegged | `scaling-qps/SKILL.md` | | A single query is too slow, need to cut the tail latency of individual requests | `minimize-latency/SKILL.md` | | p99 or tail latency too high, but traffic/QPS is fine | `minimize-latency/SKILL.md` | | Queries return very large result sets and slow down | `scaling-query-volume/SKILL.md` | | Large `limit`, top-1000 queries, pagination, scroll across shards | `scaling-query-volume/SKILL.md` | | Many tenants or customers, one collection each, tenant isolation | `scaling-data-volume/tenant-scaling/SKILL.md` | | Only recent data matters, retention, expiring old vectors, time-based rotation | `scaling-data-volume/sliding-time-window/SKILL.md` | | Single node no longer fits the workload, before deciding to shard | `scaling-data-volume/vertical-scaling/SKILL.md` | | Already vertically maxed out, need more nodes, resharding | `scaling-data-volume/horizontal-scaling/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…
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…
Guides Qdrant monitoring and observability setup. Use when someone asks 'how to monitor Qdrant', 'what metrics to track', 'is Qdrant healthy', 'optimizer…