pgvecto.rs VS faiss

Compare pgvecto.rs vs faiss and see what are their differences.

pgvecto.rs

Scalable, Low-latency and Hybrid-enabled Vector Search in Postgres. Revolutionize Vector Search, not Database. (by tensorchord)

faiss

A library for efficient similarity search and clustering of dense vectors. (by facebookresearch)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pgvecto.rs faiss
17 71
1,429 28,431
14.3% 2.7%
9.3 9.4
1 day ago 5 days ago
Rust C++
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pgvecto.rs

Posts with mentions or reviews of pgvecto.rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-13.
  • My binary vector search is better than your FP32 vectors
    1 project | dev.to | 25 Mar 2024
    To evaluate the performance metrics in comparison to the original vector approach, we conducted benchmarking using the dbpedia-entities-openai3-text-embedding-3-large-3072-1M dataset. The benchmark was performed on a Google Cloud virtual machine (VM) with specifications of n2-standard-8, which includes 8 virtual CPUs and 32GB of memory. We used pgvecto.rs v0.2.1 as the vector database.
  • pgvecto.rs 0.2: Unifying Relational Queries and Vector Search in PostgreSQL
    2 projects | dev.to | 13 Mar 2024
    Please check out our documentation for more details. We encourage you to try out pgvecto.rs, benchmark it against your workloads, and contribute your indexing innovations. Join our Discord community to connect with the developers and other users working to improve pgvecto.rs!
  • pgvecto.rs alternatives - qdrant and Weaviate
    3 projects | 13 Mar 2024
  • Milvus VS pgvecto.rs - a user suggested alternative
    2 projects | 13 Mar 2024
  • You Shouldn't Invest in Vector Databases?
    4 projects | news.ycombinator.com | 25 Nov 2023
    It's kind of a tradeoff. Performance is just one factor when choosing the vector database. In pgvecto.rs https://github.com/tensorchord/pgvecto.rs, we store the index separately from PostgreSQL's internal storage, unlike pgvector's approach. This enable us to get multi-threaded indexing, async indexing without blocking the insertion, and faster search speed comparing to pgvector.

    I don't see any fundamental reason why the index in Postgres would be slower than a specialized vector database. The query pattern of the vector database is simply a point query using an index, similar to other queries in an OLTP system.

    The only limitation I see is scalability. It's not easy to make PostgreSQL distributed, but solutions like Citus exist, making it still possible.

    (I'm the author of pgvecto.rs)

  • How We Made PostgreSQL a Better Vector Database
    2 projects | news.ycombinator.com | 25 Sep 2023
    Hi, we've solved the problem you mentioned! Please take a look on our open source postgres vector extension https://github.com/tensorchord/pgvecto.rs.

    Our index building process is significantly faster than pgvector on hnsw because we can utilize all the cores, whereas pgvector can only use one core. And for the filter support, we do support pre-filtering, which will guarantee enough results no matter the condition is.

  • First Postgres Vector Extension with Filtering Support
    1 project | news.ycombinator.com | 28 Aug 2023
    Hi,

    In our previous post titled “Do we really need a specialized vector database?” on HN (https://news.ycombinator.com/item?id=37097004) we discussed the importance of using a Postgres-based solution for vector search. However, we acknowledged that existing Postgres vector extensions lack support for metadata filtering.

    We are excited to announce that we have now addressed this limitation. We are proud to be the first (https://github.com/tensorchord/pgvecto.rs) to enable conditional filtering directly on HNSW indexes within Postgres. This breakthrough allows for efficient and effective metadata filtering in combination with vector search, eliminating the tradeoff previously associated with using Postgres for this purpose.

    We invite you to explore our updated offering and experience the benefits of seamless metadata filtering within a Postgres-based vector search system.

  • A Summary of LLMOps
    2 projects | news.ycombinator.com | 10 Aug 2023
    Yeah, I think in many cases you just need a vector search lib, instead of a DB.

    And in some other cases, you may want postgres vector extension e.g. https://github.com/tensorchord/pgvecto.rs instead of a specialized vector db.

  • An early look at HNSW performance with pgvector
    2 projects | news.ycombinator.com | 10 Aug 2023
    Seems that pgvector has a viable competitor extension: https://github.com/tensorchord/pgvecto.rs
  • 20x Faster as the Beginning: Introducing pgvecto.rs extension written in Rust
    1 project | /r/rust | 8 Aug 2023
    We are thrilled to announce the release of https://github.com/tensorchord/pgvecto.rs, a powerful Postgres extension for vector similarity search written in Rust. Its HNSW algorithm is 20x faster than pgvector at 90% recall. But speed is just the start - pgvecto.rs is architected to add new algorithms easily. We've made it an extensible architecture for contributors to implement the new indexes quickly, and we look forward to the open-source community driving pgvecto.rs to new heights!

faiss

Posts with mentions or reviews of faiss. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-28.
  • Haystack DB – 10x faster than FAISS with binary embeddings by default
    3 projects | news.ycombinator.com | 28 Apr 2024
    There are also FAISS binary indexes[0], so it'd be great to compare binary index vs binary index. Otherwise it seems a little misleading to say it is a FAISS vs not FAISS comparison, since really it would be a binary index vs not binary index comparison. I'm not too familiar with binary indexes, so if there's a significant difference between the types of binary index then it'd be great to explain what that is too.

    [0] https://github.com/facebookresearch/faiss/wiki/Binary-indexe...

  • Show HN: Chromem-go – Embeddable vector database for Go
    4 projects | news.ycombinator.com | 5 Apr 2024
    Or just use FAISS https://github.com/facebookresearch/faiss
  • OpenAI: New embedding models and API updates
    1 project | news.ycombinator.com | 25 Jan 2024
  • You Shouldn't Invest in Vector Databases?
    4 projects | news.ycombinator.com | 25 Nov 2023
    You can try txtai (https://github.com/neuml/txtai) with a Faiss backend.

    This Faiss wiki article might help (https://github.com/facebookresearch/faiss/wiki/Indexing-1G-v...).

    For example, a partial Faiss configuration with 4-bit PQ quantization and only using 5% of the data to train an IVF index is shown below.

    faiss={"components": "IVF,PQ384x4fs", "sample": 0.05}

  • Approximate Nearest Neighbors Oh Yeah
    5 projects | news.ycombinator.com | 30 Oct 2023
    If you want to experiment with vector stores, you can do that locally with something like faiss which has good platform support: https://github.com/facebookresearch/faiss

    Doing full retrieval-augmented generation (RAG) and getting LLMs to interpret the results has more steps but you get a lot of flexibility, and there's no standard best-practice. When you use a vector DB you get the most similar texts back (or an index integer in the case of faiss), you then feed those to an LLM like a normal prompt.

    The codifer for the RAG workflow is LangChain, but their demo is substantially more complex and harder-to-use than even a homegrown implementation: https://news.ycombinator.com/item?id=36725982

  • Can someone please help me with this problem?
    2 projects | /r/learnprogramming | 24 Sep 2023
    According to this documentation page, faiss-gpu is only supported on Linux, not on Windows.
  • Ask HN: Are there any unsolved problems with vector databases
    1 project | news.ycombinator.com | 16 Sep 2023
    Indexes for vector databases in high dimensions are nowhere near are effective as the 2-d indexes used in GIS or the 1-d B-tree indexes that are commonly used in databases.

    Back around 2005 I was interested in similarity search and read a lot of conference proceedings on the top and was basically depressed at the state of vector database indexes and felt that at least for the systems I was prototyping I was OK with a full scan and later in 2013 I had the assignment of getting a search engine for patents using vector embeddings in front of customers and we got performance we found acceptable with full scan.

    My impression today is that the scene is not too different than it was in 2005 but I can't say I haven't missed anything. That is, you have tradeoffs between faster algorithms that miss some results and slower algorithms that are more correct.

    I think it's already a competitive business. You have Pinecone which had the good fortune of starting before the gold rush. Many established databases are adding vector extension. I know so many engineering managers who love postgresql and they're just going to load a vector extension and go. My RSS reader YOShInOn uses SBERT embeddings to cluster and classify text and certainly More Like This and semantic search are on the agenda, I'd expect it to take about an hour to get

    https://github.com/facebookresearch/faiss

    up and working, I could spend more time stuck on some "little" front end problem like getting something to look right in Bootstrap than it would take to get working.

    I can totally believe somebody could make a better vector db than what's out there but will it be better enough? A startup going through YC now could spend 2-3 to get a really good product and find customers and that is forever in a world where everybody wants to build AI applications right now.

  • Code Search with Vector Embeddings: A Transformer's Approach
    3 projects | dev.to | 27 Aug 2023
    As the size of the codebase grows, storing and searching through embeddings in memory becomes inefficient. This is where vector databases come into play. Tools like Milvus, Faiss, and others are designed to handle large-scale vector data and provide efficient similarity search capabilities. I've wrtten about how to also use sqlite to store vector embeddings. By integrating a vector database, you can scale your code search tool to handle much larger codebases without compromising on search speed.
  • Unum: Vector Search engine in a single file
    8 projects | news.ycombinator.com | 31 Jul 2023
    But FAISS has their own version ("FastScan") https://github.com/facebookresearch/faiss/wiki/Fast-accumula...
  • Introduction to Vector Similarity Search
    4 projects | news.ycombinator.com | 11 Jul 2023
    https://github.com/facebookresearch/faiss

What are some alternatives?

When comparing pgvecto.rs and faiss you can also consider the following projects:

pgvector - Open-source vector similarity search for Postgres

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

modelz-llm - OpenAI compatible API for LLMs and embeddings (LLaMA, Vicuna, ChatGLM and many others)

Milvus - A cloud-native vector database, storage for next generation AI applications

pgvecto.rs-bench

hnswlib - Header-only C++/python library for fast approximate nearest neighbors

Awesome-LLMOps - An awesome & curated list of best LLMOps tools for developers

faiss-rs - Rust language bindings for Faiss

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​.

DocumentGPT - DocumentGPT is a web application that allows you to chat over your research document using OpenAI's chat API and perform semantic search using vector databases. This tool provides a seamless interface for interacting with your research document, exploring search results, and engaging in a conversation with an AI chatbot.

qdrant - Qdrant - High-performance, massive-scale Vector Database for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/