Curator: Efficient Vector Search with Low-Selectivity Filters
Yicheng Jin, Yongji Wu, Wenjun Hu, Bruce M. Maggs, Jun Yang, Xiao Zhang, Danyang Zhuo
TL;DR
Curator tackles the challenge of low-selectivity filtered ANNS by introducing a dual-index architecture that pairs a shared base partitioning tree with adaptive per-label indexes embedded inside it. It enables efficient complex predicate support through temporary per-predicate indexes while maintaining low memory and construction overhead, and it complements graph-based indexes to sustain performance where connectivity breaks down. The approach offers adaptive hierarchical partitioning, incremental update support, and efficient integration with graph indexes, achieving substantial latency improvements (up to 20.9x in some scenarios) with modest overhead. This work demonstrates that a partition-based, label-adaptive index can deliver robust, scalable, and practical filtered ANNS for large-scale systems.
Abstract
Embedding-based dense retrieval has become the cornerstone of many critical applications, where approximate nearest neighbor search (ANNS) queries are often combined with filters on labels such as dates and price ranges. Graph-based indexes achieve state-of-the-art performance on unfiltered ANNS but encounter connectivity breakdown on low-selectivity filtered queries, where qualifying vectors become sparse and the graph structure among them fragments. Recent research proposes specialized graph indexes that address this issue by expanding graph degree, which incurs prohibitively high construction costs. Given these inherent limitations of graph-based methods, we argue for a dual-index architecture and present Curator, a partition-based index that complements existing graph-based approaches for low-selectivity filtered ANNS. Curator builds specialized indexes for different labels within a shared clustering tree, where each index adapts to the distribution of its qualifying vectors to ensure efficient search while sharing structure to minimize memory overhead. The system also supports incremental updates and handles arbitrary complex predicates beyond single-label filters by efficiently constructing temporary indexes on the fly. Our evaluation demonstrates that integrating Curator with state-of-the-art graph indexes reduces low-selectivity query latency by up to 20.9x compared to pre-filtering fallback, while increasing construction time and memory footprint by only 5.5% and 4.3%, respectively.
