What to Do When Scaling Multi-Tenant Qdrant

SkillDev tools

This skill teaches your AI how to scale a Qdrant vector database that serves many tenants. Once added, your AI can recommend collection layouts, sharding choices, and fixes for tenant performance problems so your setup holds up as you add more tenants.

Available today. Use it from your connected AI after setup.

After adding the skill, ask your AI a question like how should I scale tenants, or describe the tenant performance problem you are seeing, and it will walk you through your options.

Then ask your AI: use the What to Do When Scaling Multi-Tenant Qdrant skill

What your AI can do with it

  • Recommend whether each tenant needs its own collection or tenants can share one
  • Plan tenant isolation using dedicated shards
  • Advise when shared infrastructure is no longer enough for your workload
  • Help troubleshoot tenant performance issues in Qdrant
  • Guide collection and sharding choices as tenant workloads grow

What this skill tells your AI

The instructions your AI receives, as published by qdrant/skills in skills/qdrant-scaling/scaling-data-volume/tenant-scaling/SKILL.md and read by ahel’s review.

Do not create one collection per tenant. Does not scale past a few hundred and wastes resources. One company hit the 1000 collection limit after a year of collection-per-repo and had to migrate to payload partitioning. Use a shared collection with a tenant key.

Here is a short summary of the patterns:

Number of Tenants is around 10k

Use the default multitenancy strategy via payload filtering.

Read about Partition by payload and Calibrate performance for best practices on indexing and query performance.

Number of Tenants is around 100k and more

At this scale, the cluster may consist of several peers. To localize tenant data and improve performance, use custom sharding to assign tenants to specific shards based on tenant ID hash. This will localize tenant requests to specific nodes instead of broadcasting them to all nodes, improving performance and reducing load on each node.

If tenants are unevenly sized

If some tenants are much larger than others, use tiered multitenancy to promote large tenants to dedicated shards while keeping small tenants on shared shards. This optimizes resource allocation and performance for tenants of varying sizes.

Need Strict Tenant Isolation

Use when: legal/compliance requirements demand per-tenant encryption or strict isolation beyond what payload filtering provides.

  • Multiple collections may be necessary for per-tenant encryption keys
  • Limit collection count and use payload filtering within each collection
  • This is the exception, not the default. Only use when compliance requires it.

What NOT to Do

  • Do not create one collection per tenant without compliance justification (does not scale past hundreds)
  • Do not skip is_tenant=true on the tenant index (kills sequential read performance)
  • Do not build global HNSW for multi-tenant collections (wasteful, use payload_m instead)

Signals

GitHub stars
232
Forks
27
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
qdrant-tenant-scaling
Source
github.com/qdrant/skills