技能 硬件工程 数据量级扩展与容量规划

数据量级扩展与容量规划

v20260728
qdrant-scaling-data-volume
本指南提供了处理数据集超出单个节点承载容量的综合策略。内容涵盖了多租户隔离、时间窗口管理等多种架构模式。它详细介绍了完整的扩容路径,从提升单节点性能(垂直扩展)到通过分片将数据分散到多个节点(水平扩展),确保系统能够可靠地处理海量增长数据。
获取技能
258 次下载
概览

Scaling Data Volume

This document covers data volume scaling scenarios, where the total size of the dataset exceeds the capacity of a single node.

Tenant Scaling

If the use case is multi-tenant, meaning that each user only has access to a subset of the data, and we never need to query across all the data, then we can use multi-tenancy patterns to scale.

The recommended way is to use multi-tenant workloads with payload partitioning, per-tenant indexes, and tiered multitenancy.

Learn more Tenant Scaling

Sliding Time Window

Some use-cases are based on a sliding time window, where only the most recent data is relevant. For example an index for social media posts, where only the last 6 months of data require fast search.

Learn more Sliding Time Window

Global Search

Most general use-cases require global search across all data. In these situations, we might need to fall back to vertical scaling, and then horizontal scaling when we reach the limits of vertical scaling.

Vertical Scaling

When data doesn't fit in a single node, the first approach is to scale the node itself — more RAM, better disk, quantization, mmap. Exhaust vertical options before going horizontal, as horizontal scaling adds permanent operational complexity.

Learn more Vertical Scaling

Horizontal Scaling

When a single node can't hold the data even with quantization and mmap, distribute data across multiple nodes via sharding.

Learn more Horizontal Scaling

信息
Category 硬件工程
Name qdrant-scaling-data-volume
版本 v20260728
大小 8.01KB
更新时间 2026-07-29
语言