• Home
  • Categories
  • Pricing
  • Submit
    Built with
    Ever Works
    Ever Works

    Connect with us

    Stay Updated

    Get the latest updates and exclusive content delivered to your inbox.

    Product

    • Categories
    • Pricing
    • Help

    Clients

    • Sign In
    • Register
    • Forgot password?

    Company

    • About Us
    • Admin
    • Sitemap

    Resources

    • Blog
    • Submit
    • API Documentation
    All product names, logos, and brands are the property of their respective owners. All company, product, and service names used in this repository, related repositories, and associated websites are for identification purposes only. The use of these names, logos, and brands does not imply endorsement, affiliation, or sponsorship. This directory may include content generated by artificial intelligence.
    Copyright © 2025 Awesome Vector Databases. All rights reserved.·Terms of Service·Privacy Policy·Cookies
    Decorative pattern
    Decorative pattern
    1. Home
    2. Vector Database Extensions
    3. Vector LSM

    Vector LSM

    YugabyteDB's pluggable vector indexing architecture that separates vector search logic from the database engine, enabling integration with multiple ANN backends like USearch.

    Overview

    YugabyteDB's Vector LSM is a decoupled, pluggable indexing layer that separates vector search logic from the rest of the database engine, enabling easy integration with multiple ANN (Approximate Nearest Neighbor) backends.

    Architecture

    Vector LSM works like an LSM tree built for vector indexes: vectors are first inserted into an in-memory buffer and indexed using HNSW-based libraries like USearch, then flushed to disk as immutable vector chunks once full, with searches fanning out across all in-memory and on-disk vector indexes, and results filtered using MVCC rules to ensure consistency.

    Key Benefits

    • Pluggability: Easy to swap ANN backends
    • Consistency: MVCC integration ensures transactional guarantees
    • Scalability: Co-partitioned layout enables horizontal scaling
    • Performance: Sub-second query latency at billion-vector scale

    Co-partitioned Vector Index

    YugabyteDB uses a co-partitioned vector index layout, where vector indexes are stored in the same tablets as the corresponding table rows, ensuring tight data locality and operational advantages.

    Benchmark Performance

    In benchmarking with the Deep1B dataset, YugabyteDB successfully indexed 1 billion 96-dimensional vectors, achieving a recall of 96.56% and sub-second query latency.

    Pricing

    Included in YugabyteDB, open-source and commercial versions available.

    Surveys

    Loading more......

    Information

    Websitewww.yugabyte.com
    PublishedMar 24, 2026

    Categories

    1 Item
    Vector Database Extensions

    Tags

    3 Items
    #architecture#indexing#distributed

    Similar Products

    6 result(s)

    Co-partitioned Vector Index

    Indexing strategy where vector indexes are stored in the same partitions as corresponding table rows, ensuring data locality and operational advantages in distributed databases.

    Scalable Distributed Vector Search

    A research paper on accuracy-preserving index construction for distributed vector search systems. Published in 2025, it addresses the challenge of maintaining search quality while distributing vector indexes across multiple nodes.

    Vector Index Comparison Guide (Flat, HNSW, IVF)

    Comprehensive comparison of vector indexing strategies including Flat, HNSW, and IVF approaches. Covers performance characteristics, memory requirements, and use case recommendations for 2026.

    Featured

    Apache Cassandra Vector Search

    Distributed NoSQL database with vector search capabilities via Storage-Attached Indexes (SAI) in Cassandra 5.0+. Uses Lucene HNSW for approximate nearest neighbor search. This is an OSS database under Apache 2.0 license.

    Featured

    Milvus

    Milvus is a high-performance, open-source vector database designed for managing massive-scale embedding vectors in AI applications. It excels in similarity search using advanced indexing like HNSW and IVF, supports distributed deployment for billions of vectors, GPU acceleration, and hybrid search combining vector and scalar filters. Key use cases include RAG pipelines, recommendation engines, and image/video retrieval; it outperforms single-node DBs like Faiss in scalability but requires more setup compared to managed options like Pinecone.

    AtlasDB

    Distributed, transactional key-value store developed by Palantir Technologies, designed for general-purpose data storage with high performance and horizontal scalability across multiple nodes.