ANN v3: 200ms p99 query latency over 100B vectors
turbopuffer.com
ANN v3: 200ms p99 query latency over 100B vectors
1–10 of 49 posts
Re: ANN v3: 200ms p99 query latency over 100B vectors
#2Re: ANN v3: 200ms p99 query latency over 100B vectors
#3This is legitimately pretty impressive. I think the rule of thumb is now, go with postgres(pgvector) for vector search until it breaks, then go with turbopuffer.
Re: ANN v3: 200ms p99 query latency over 100B vectors
#4Re: ANN v3: 200ms p99 query latency over 100B vectors
#5I was curious given the cloud discussion - a quick search suggests default AWS SSD bandwidth is 250 MB/s, and you can pay more for 1 GB/s. Similar for s3, one http connection is < 100 MB/s, and you can pay for more parallel connections. So the hot binary quantized search index is doing a lot of work to minimize these both for the initial hot queries and pruning later fetches. Very cool!
Re: ANN v3: 200ms p99 query latency over 100B vectors
#6Re: ANN v3: 200ms p99 query latency over 100B vectors
#7Are there vector DBs with 100B vectors in production which work well? There was a paper which showed that there's 12% loss in accuracy at just 1 mln vectors. Maybe some kind of logical sharding is another option, to improve both accuracy and speed.
Re: ANN v3: 200ms p99 query latency over 100B vectors
#8Re: ANN v3: 200ms p99 query latency over 100B vectors
#9Are there vector DBs with 100B vectors in production which work well? There was a paper which showed that there's 12% loss in accuracy at just 1 mln vectors. Maybe some kind of logical sharding is another option, to improve both accuracy and speed.
the solution described in the blog post is currently in production at 100B vectors
Re: ANN v3: 200ms p99 query latency over 100B vectors
#10This is legitimately pretty impressive. I think the rule of thumb is now, go with postgres(pgvector) for vector search until it breaks, then go with turbopuffer.
As a principal eng, side-stepping a migration and having a good local dev experience is too good of a deal to pass up.
That being said, turbopuffer looks interesting. I will check it out. Hopefully their local dev experience is good