Live data from Hacker News

Ask HN: Which Vector Database do you recommend for LLM applications?

news.ycombinator.com

1–10 of 10 posts

Ask HN: Which Vector Database do you recommend for LLM applications?

#1
There are many options out there:

- FAISS

- Pinecone

- Milvus

- Qdrant

- Weaviate

- Elasticsearch

- Vespa

- pgvector

- ScaNN

- Vald

I wonder which one is production-ready and has better features. I'm trying to stay away from Langchain, so if there are no integrations with Langchain that's fine.

Re: Ask HN: Which Vector Database do you recommend for LLM applications?

#4
Qdrant Team here. It depends on you use case. For smaller data amount and just vector similarity search you can use libraries like FAISS, ScaNN, etc. If you are looking for a simple solution without high requirements on performance and just maybe a few millions of vectors you can use traditional solutions like Elastic or Postgres. Dedicated vector db solutions like Qdrant become relevant when you are looking for real-time performance, scalability up to billions and dedicated features that make your life easier. Qdrant works standalone in local (in memory), docker and (managed) cloud mode by just exchanging the host url. Best available performance https://qdrant.tech/benchmarks/ Easy to start with https://qdrant.tech/documentation/quick-start/ And there is a managed Cloud with 1GB free plan. https://cloud.qdrant.ok You are welcome to join our vibrant community on Discord http://qdrant.to/discord

Re: Ask HN: Which Vector Database do you recommend for LLM applications?

#6

Milvus seems to be the most popular one.

It the oldest project, correct. Regarding popularity, 20K GitHub stars in >6 years, Qdrant 11K stars in https://github.com/topics/vector-database Written entirely in Rust, zero legacy.

Re: Ask HN: Which Vector Database do you recommend for LLM applications?

#9
post #6

Milvus seems to be the most popular one.

It the oldest project, correct. Regarding popularity, 20K GitHub stars in >6 years, Qdrant 11K stars in https://github.com/topics/vector-database Written entirely in Rust, zero legacy.

From the star history, Qdrant started Nov 2020, only 1 year later than Milvus. And the stars gap was 4K that time, now is 9K. I am not a big fan of anyone but how can you get this unsolid conclusion without any research?