English

Manu: A Cloud Native Vector Database Management System

Databases 2022-06-29 v1

Abstract

With the development of learning-based embedding models, embedding vectors are widely used for analyzing and searching unstructured data. As vector collections exceed billion-scale, fully managed and horizontally scalable vector databases are necessary. In the past three years, through interaction with our 1200+ industry users, we have sketched a vision for the features that next-generation vector databases should have, which include long-term evolvability, tunable consistency, good elasticity, and high performance. We present Manu, a cloud native vector database that implements these features. It is difficult to integrate all these features if we follow traditional DBMS design rules. As most vector data applications do not require complex data models and strong data consistency, our design philosophy is to relax the data model and consistency constraints in exchange for the aforementioned features. Specifically, Manu firstly exposes the write-ahead log (WAL) and binlog as backbone services. Secondly, write components are designed as log publishers while all read-only analytic and search components are designed as independent subscribers to the log services. Finally, we utilize multi-version concurrency control (MVCC) and a delta consistency model to simplify the communication and cooperation among the system components. These designs achieve a low coupling among the system components, which is essential for elasticity and evolution. We also extensively optimize Manu for performance and usability with hardware-aware implementations and support for complex search semantics.

Keywords

Cite

@article{arxiv.2206.13843,
  title  = {Manu: A Cloud Native Vector Database Management System},
  author = {Rentong Guo and Xiaofan Luan and Long Xiang and Xiao Yan and Xiaomeng Yi and Jigao Luo and Qianya Cheng and Weizhi Xu and Jiarui Luo and Frank Liu and Zhenshan Cao and Yanliang Qiao and Ting Wang and Bo Tang and Charles Xie},
  journal= {arXiv preprint arXiv:2206.13843},
  year   = {2022}
}

Comments

14 pages, 13 figures

R2 v1 2026-06-24T12:06:34.891Z