I think the whole field of vector databases is mostly just one huge misunderstanding. Most of you are not Google or any other big tech company so so won't have billions of embeddings. It's crazy how people add bloat and complexity to their stuff just because they want to do medium scale RAG with ca. 2 million embeddings. Here comes the punchline, you do not need a fancy vector database in this case. I stumbled over h…
There’s vss as duckdb extension too that builds a hnsw index. https://github.com/duckdb/duckdb-vss Since duckdb is already columnar, it goes brrrrr with single digit millisecond vector similarly lookups.
Vector database that can index 1B vectors in 48M
61–66 of 66 posts
Re: Vector database that can index 1B vectors in 48M
#62I think the whole field of vector databases is mostly just one huge misunderstanding. Most of you are not Google or any other big tech company so so won't have billions of embeddings. It's crazy how people add bloat and complexity to their stuff just because they want to do medium scale RAG with ca. 2 million embeddings. Here comes the punchline, you do not need a fancy vector database in this case. I stumbled over h…
Might be all you need, except an open source licence: > For production or managed service use, please contact SQLite Cloud, Inc for a commercial license.
Re: Vector database that can index 1B vectors in 48M
#63Earlier quoted context omitted.
Might be all you need, except an open source licence: > For production or managed service use, please contact SQLite Cloud, Inc for a commercial license.
Try https://github.com/asg017/sqlite-vec - Apache 2, Mozilla backed!
Re: Vector database that can index 1B vectors in 48M
#64I think the whole field of vector databases is mostly just one huge misunderstanding. Most of you are not Google or any other big tech company so so won't have billions of embeddings. It's crazy how people add bloat and complexity to their stuff just because they want to do medium scale RAG with ca. 2 million embeddings. Here comes the punchline, you do not need a fancy vector database in this case. I stumbled over h…
There’s vss as duckdb extension too that builds a hnsw index. https://github.com/duckdb/duckdb-vss Since duckdb is already columnar, it goes brrrrr with single digit millisecond vector similarly lookups.
Re: Vector database that can index 1B vectors in 48M
#65Earlier quoted context omitted.
Yeah, the SI symbol for minutes is min, if you're going to abbreviate it in a technical context. Super funky using M.
Agree the correct abbreviation is min. Nitpick: could be wrong but I don’t think minutes is an SI derived unit.
Re: Vector database that can index 1B vectors in 48M
#66Earlier quoted context omitted.
Lucene is tough to deal with. About 15 hours ago — right when this comment was posted — I was giving a talk at Databricks comparing the world’s most widely used search engines. I’ve never run into as many issues with any other similar tool as I did with Lucene. To be fair, it’s been around for ~26 years and has aged remarkably well... but it’s the last thing I’d choose today.
Can I ask you which alternatives exist at the layer Lucene occupies? I went looking around last year and couldn’t really find many options, but I might have been looking in the wrong places.