Vald: A Highly Scalable Distributed Vector Search Engine

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. Weaviate

    Weaviate is an open-source vector database that stores both objects and vectors, allowing for the combination of vector search with structured filtering with the fault tolerance and scalability of a cloud-native database​.

    You might be interested in checking out Weaviate (https://github.com/semi-technologies/weaviate) which supports combining vector search with boolean filters. In Weaviate, the vector index is stored alongside an inverted index, so you get the best of both worlds. At the moment on a filtered search, the inverted index is hit first, so you essentially end up with an allow-list of IDs which are then fed to the vector index. If the id isn't on the allow list the next neighbor is selected and so on.

    There are also plans to further optimize this based on how restrictive the boolean filter is. For example, if the filter still matches a lot of of ids (e.g. 50% of all candidates) the approach outlined above works really well. But if if your filter is extremely restrictive and maybe only matches 1k out of 100M results, then this approach is no longer ideal, as the vector index will discard most of the ids it sees. However, in this case it would be more efficient to actually perform a brute-force search on those 1k vectors. This and other optimizations around combined vector and scalar search are on the roadmap.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. vald

    Vald. A Highly Scalable Distributed Vector Search Engine

  4. annoy

    Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk

    With only 100k vectors, why didn’t you just use Annoy? It’s been around for many years and it is fast, reliable, super easy to use and handles pretty large data quite well too.

    https://github.com/spotify/annoy

  5. alvd

    alvd = A Lightweight Vald. A lightweight distributed vector search engine works without K8s.

    This might be of interest to some - Vald without the Kubernetes requirement (or integration): https://github.com/rinx/alvd

  6. faiss

    A library for efficient similarity search and clustering of dense vectors.

    Dense vectors are pervasive in Neural Networks. Take a layer's activations and you have a new one (which is what NN embeddings are).

    Indexing them is really hard: The local neighborhood's volume to be searched grows by radius^dimension; you need a specialized engine.

    Now, say you are a three letter agency and have Facebook's image data (2B faces, 100B images). You train a deep learning image classification network to identify faces. But for training time reasons you only can do it on a dataset of about 10k different faces, 10M images. The NN will identify characteristic visual features to make its classification, available at the n-1 layer as activations.

    But you need to have the rest of the dataset searchable! You now index the activations of all the 100B remaining images. And with this you can search by similarity of visual features. If you have an image of someone you want to to track, get its activations and search for other images that have similar vectors.

    This works for everything that a NN can model: speech, words, words in sentences, videos, etc.

    ----

    On a another note Facebook has a feature-rich, GPU-powered, scalable indexation engine called FAISS:

    https://github.com/facebookresearch/faiss

  7. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to choose a vector database: Pinecone, Weaviate, MongoDB Atlas, SemaDB

    3 projects | dev.to | 11 Sep 2024
  • [P] Embeddinghub: A vector database built for ML embeddings

    4 projects | /r/MachineLearning | 14 Sep 2021
  • Vector Search Indexes

    5 projects | news.ycombinator.com | 11 Aug 2021
  • Hann: A Fast Approximate Nearest Neighbor Search Library for Go

    2 projects | news.ycombinator.com | 25 Mar 2025
  • 7 Vector Databases Every Developer Should Know!

    4 projects | dev.to | 8 Feb 2024

Did you know that Go is
the 4th most popular programming language
based on number of references?