English

SINDI: an Efficient Index for Approximate Maximum Inner Product Search on Sparse Vectors

Databases 2026-03-13 v3

Abstract

Sparse vector Maximum Inner Product Search (MIPS) is crucial in multi-path retrieval for Retrieval-Augmented Generation (RAG). Recent inverted index-based and graph-based algorithms have achieved high search accuracy with practical efficiency. However, their performance in production environments is often limited by redundant distance computations and frequent random memory accesses. Furthermore, the compressed storage format of sparse vectors hinders the use of SIMD acceleration. In this paper, we propose the sparse inverted non-redundant distance index (SINDI), which incorporates three key optimizations: (i) Efficient Inner Product Computation: SINDI leverages SIMD acceleration and eliminates redundant identifier lookups, enabling batched inner product computation; (ii) Memory-Friendly Design: SINDI replaces random memory accesses to original vectors with sequential accesses to inverted lists, substantially reducing memory-bound latency. (iii) Vector Pruning: SINDI retains only the high-magnitude non-zero entries of vectors, improving query throughput while maintaining accuracy. We evaluate SINDI on multiple real-world datasets. Experimental results show that SINDI achieves state-of-the-art performance across datasets of varying scales, languages, and models. On the MsMarco dataset, when Recall@50 exceeds 99%, SINDI delivers single-thread query-per-second (QPS) improvements ranging from 4.2×\times to 26.4×\times compared with SEISMIC and PyANNs. Notably, SINDI has been integrated into Ant Group's open-source vector search library, VSAG.

Cite

@article{arxiv.2509.08395,
  title  = {SINDI: an Efficient Index for Approximate Maximum Inner Product Search on Sparse Vectors},
  author = {Ruoxuan Li and Xiaoyao Zhong and Jiabao Jin and Peng Cheng and Wangze Ni and Zhitao Shen and Wei Jia and Xiangyu Wang and Heng Tao Shen and Jingkuan Song},
  journal= {arXiv preprint arXiv:2509.08395},
  year   = {2026}
}

Comments

18 pages, accepted by ICDE 2026. Due to submission limitation for ICDE 2026 (i.e., maximum 6 submissions per author), Lei Chen and Xuemin Lin are not included as authors

R2 v1 2026-07-01T05:29:44.264Z