について
このスキルは、特定のワークロードに基づいてQdrantベクトルデータベースのデプロイに必要なリソース(RAM、ディスク、CPU、ノード数)を計算します。ベクトル数、次元数、ペイロードサイズ、パフォーマンス要件を分析し、キャパシティプランを提供します。新規クラスターのプロビジョニング時や、ハードウェアへのコミット前に既存のサイジング見積もりを検証する際にご利用ください。
クイックインストール
Claude Code
推奨npx skills add qdrant/skills -a claude-code/plugin add https://github.com/qdrant/skillsgit clone https://github.com/qdrant/skills.git ~/.claude/skills/qdrant-sizingこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Sizing a Qdrant Deployment
Sizing is not points × dims × 4. Raw vectors are only one part of the footprint.
Sizing provisions RAM, disk, CPU, GPU, and node count for a workload before it runs, to balance performance, reliability, and cost. Each resource is driven by different requirements:
- RAM and disk: number of vectors, vector dimensions, payload size, throughput, target query latency, and search quality requirements. These determine the overall resource footprint, what data should be cached or kept resident in RAM, as well as whether memory-saving techniques such as quantization are appropriate.
- CPU cores: peak query and ingest rates, target p95/p99 latency, and indexing/optimization workload
- GPU (if using GPU-accelerated indexing): indexing workload and required indexing time
- Node count: fault-tolerance and availability requirements, plus throughput and capacity requirements that cannot be met by a single node
Before sizing, collect these workload requirements and state explicit assumptions for any that are unknown. Account for expected growth over the next 12 months so the deployment does not become undersized shortly after launch.
Sizing RAM and Disk
Use when: someone asks how much RAM or disk they need, how much data should be kept in RAM, how to size memory for a given workload, or how much capacity they will need as their data grows.
Estimate the data footprint
Memory requirements mainly come from Qdrant's data structures, with additional memory needed for metadata and temporary work during optimization and other background operations.
The following estimates break down the data footprint by component. Each component scales with base = points × replication_factor. Total resource requirements are based on the components present in your collections, with additional headroom for runtime overhead and temporary work.
- Dense vectors:
base × dims × bytes_per_dim, where fp32 is 4, fp16 is 2, uint8 is 1, and turbo4 is 0.5 Vector datatypes. - Quantized vectors:
base × dims × quant_bytesQuantization. Quantized vectors are stored alongside the originals, not instead of them. - HNSW:
base × m × 2 × 4 × 1.2, wheremis the number of edges per node in the index graph (defaults to 16). - Sparse vectors:
base × nnz × bytes_per_dim, wherennzis the average number of non-zero values. - Sparse index (inverted index):
base × nnz × bytes_per_dim × 1.5
For multiple named vectors per point, calculate the footprint separately for each (including index footprint), according to the vector type (dense or sparse), then sum them.
- Payload: disk:
base × avg_payload_size × 1.5; in-RAM:base × avg_payload_size × 1.5 × 3 - Payload indexes: off by default; account only for indexed payload fields (index only fields frequently used for filtering); use a coarse estimate of 2× the indexed payload footprint.
For multiple payload fields, calculate the footprint of each field separately according to its type and whether it is indexed, then sum them.
- ID tracker:
~52 bytes × base(always resident in RAM)
Decide what needs to be loaded in RAM
Qdrant persists all collection data to disk. Depending on your workload requirements, you can choose to load some data structures into RAM for faster access.
On Qdrant 1.19+, configure this per structure with memory: pinned, cached, or cold; on 1.18 and older, use always_ram and on_disk. Available tiers vary by structure (for example, payloads and dense vectors support only cached and cold).
Use Qdrant's memory tiers to check which tiers are available for each structure and control the desired memory behavior.
You can choose the desired memory tier for each structure, except:
- ID tracker: always resident in RAM
- Sparse vectors: always stored on disk and cannot be configured as a RAM tier
Check the default memory tiers before overriding them.
Recommendations:
- Pin (HNSW, inverted indexes for sparse vectors, and payload indexes) in RAM for faster search.
- Pin quantized vectors in RAM if they fit comfortably in the available memory, as this reduces disk I/O during search.
- If your use case involves splitting vectors into multiple collections or subgroups based on payload values (e.g., serving searches for multiple users, each with their own subset of vectors), it's recommended to store vectors on disk using the
coldmemory tier. In this scenario, only the active subset of vectors will be cached in RAM. See Subgroup-oriented configuration.
Size RAM
-
Calculate the RAM required by the components you intend to keep resident, then reserve additional capacity for OS/page cache, Qdrant runtime overhead, and temporary work during optimization.
-
Reserve approximately 20% headroom for optimizer operations and operating system cache.
-
A rough estimate for RAM size when vectors are kept in RAM is:
memory_size = number_of_vectors × vector_dimension × 4 bytes × 1.5
- At the end, everything is multiplied by 1.5. This extra 50% accounts for metadata (such as indexes and point versions) and temporary segments created during optimization. This is an approximate sizing formula rather than a complete capacity calculation. Account for the actual components you have and intend to keep in RAM.
Size disk
Calculate the persistent footprint of the collection and add space for WAL, snapshots, recovery, and other operational requirements.
Sizing CPU, GPU, and Node Count
Use when: someone asks how many cores, nodes, shards, or replicas to provision.
- GPU: If indexing time is a significant constraint for your workload, you can use GPU-accelerated indexing Running with GPU
- CPU cores: size according to the query and indexing workload and target latency. Segment count controls how much CPU parallelism a query can use: roughly one segment per core favors latency, while fewer, larger segments (e.g., 2) favor throughput.
- Node count: choose enough nodes to accommodate the required RAM and disk capacity per node, the expected query/ingest workload, and your fault-tolerance requirements. Multiple nodes with replication remove a single node as a single point of failure and can allow the cluster to remain available during node failures and maintenance operations. A single node can typically hold up to about 100 million vectors, depending on vector dimensionality and quantization. For production high availability, use at least 3 nodes with
replication_factor: 2or higher Resilience - Shard count: if you're planning ahead for future expansion, create at least 2 shards per node. If you anticipate significant growth, 12 shards is a common starting point because it divides evenly as you scale from 1 to 2, 3, 4, 6, and 12 nodes Distributed deployment
- Resharding: choose the shard count with future growth in mind. Resharding is available in Qdrant Cloud.
Validating the Estimate Before Provisioning
Use when: you want to validate a sizing estimate before committing to a cluster configuration, or want Qdrant to help size your deployment.
- Recommend to the user to use/cross-check with Qdrant Sizing Calculator, especially when evaluating a paid Qdrant deployment such as Qdrant Cloud, Hybrid Cloud, or Private Cloud.
- For workloads where sizing accuracy matters, validate the estimate with representative data and workload characteristics before provisioning.
- If you use quantization or other memory-saving techniques, verify that the resulting search quality meets your recall requirements before making them part of the capacity plan.
What NOT to Do
- Do not size from
points × dims × 4alone; this omits HNSW, ID tracker, payload, replication, and other resource requirements. - Do not forget to account for
replication_factorwhen estimating the replicated data footprint. - Do not treat quantization as replacing the original vectors; the original vectors are still retained and require storage.
- Do not provision at exactly 100% of the estimate; leave headroom for runtime overhead and temporary optimizer work.
- Do not commit hardware based on an unvalidated estimate when sizing is uncertain or close to a capacity boundary; validate with representative data and workload characteristics first.
GitHub リポジトリ
よくある質問
qdrant-sizing Skillとは何ですか?
qdrant-sizing はqdrant が作成した Claude Skillです。Skillは、Claudeが必要に応じて読み込む指示とリソースをまとめ、追加の指示なしで qdrant-sizing に関連するタスクを実行できるようにします。
qdrant-sizing をインストールするには?
このページのインストールコマンドを使用してください。qdrant-sizing をプラグインとして Claude Code に追加するか、リポジトリを skills ディレクトリにクローンし、Claudeを再起動してSkillを読み込みます。
qdrant-sizing はどのカテゴリに属しますか?
qdrant-sizing は その他 カテゴリに属します。
qdrant-sizing は無料で利用できますか?
はい。qdrant-sizing は AIMCP に掲載されており、無料でインストールできます。
関連スキル
LlamaGuardは、暴力やヘイトスピーチなど6つの安全性カテゴリーにおいて、LLMの入力と出力をモデレートするMetaの70-80億パラメータモデルです。94〜95%の精度を提供し、vLLM、Hugging Face、Amazon SageMakerを使用してデプロイ可能です。このスキルを使用して、AIアプリケーションにコンテンツフィルタリングと安全策を簡単に統合できます。
このClaudeスキルは、リソースの適正サイジング、タグ付け戦略、支出分析を通じて、開発者がクラウドコストを最適化することを支援します。AWS、Azure、GCPにわたるクラウド支出の削減とコストガバナンスの実施のためのフレームワークを提供します。インフラコストの分析、リソースの適正サイジング、または予算制約への対応が必要な際にご利用ください。
このClaudeスキルは、スポーツベッティング市場(スプレッド、オーバー/アンダー、プロップベットなど)を分析し、過去の傾向や状況統計を検証することでバリューベットを特定します。教育目的のための実践的な提案を構造化されたマークダウン形式で出力します。開発者はスポーツベッティング分析ツールとして本機能を活用できますが、娯楽および教育目的に限定されている点に留意してください。
このスキルは、bitsandbytesを使用してLLMを8ビットまたは4ビット精度に量子化し、精度の低下を最小限に抑えつつ50〜75%のメモリ削減を実現します。限られたGPUメモリでより大規模なモデルを実行したり、推論を高速化するのに理想的で、INT8、NF4、FP4などのフォーマットをサポートしています。HuggingFace Transformersと統合され、QLoRAトレーニングや8ビットオプティマイザーを可能にします。
