Locally-Adaptive Quantization for Streaming Vector Search
Cecilia Aguerrebere, Mark Hildebrand, Ishwar Singh Bhati, Theodore Willke, Mariano Tepper
TL;DR
This paper investigates Locally-Adaptive Vector Quantization (LVQ) for streaming similarity search and introduces Turbo LVQ and Multi-Means LVQ (M-LVQ) to improve speed and accuracy in dynamic databases. It analyzes how quantization errors map to search performance, showing LVQ remains robust under data distribution shifts and that both Turbo LVQ and M-LVQ yield substantial, dataset-dependent speedups. The proposed SVS-LVQ system achieves state-of-the-art throughput in IID and distribution-shift scenarios, outperforming FreshVamana and HNSWlib by up to 9.4x and 8.8x, respectively, while maintaining stable recall and efficient index updates. The authors release open-source code and a new dataset for streaming evaluation, underscoring practical impact for real-world retrieval systems and RAG-style pipelines that require fast, up-to-date vector search.
Abstract
Retrieving the most similar vector embeddings to a given query among a massive collection of vectors has long been a key component of countless real-world applications. The recently introduced Retrieval-Augmented Generation is one of the most prominent examples. For many of these applications, the database evolves over time by inserting new data and removing outdated data. In these cases, the retrieval problem is known as streaming similarity search. While Locally-Adaptive Vector Quantization (LVQ), a highly efficient vector compression method, yields state-of-the-art search performance for non-evolving databases, its usefulness in the streaming setting has not been yet established. In this work, we study LVQ in streaming similarity search. In support of our evaluation, we introduce two improvements of LVQ: Turbo LVQ and multi-means LVQ that boost its search performance by up to 28% and 27%, respectively. Our studies show that LVQ and its new variants enable blazing fast vector search, outperforming its closest competitor by up to 9.4x for identically distributed data and by up to 8.8x under the challenging scenario of data distribution shifts (i.e., where the statistical distribution of the data changes over time). We release our contributions as part of Scalable Vector Search, an open-source library for high-performance similarity search.
