Closed benwtrent closed 11 months ago
I am not sure we can create the HNSW graph until all vectors are quantized. Some experimentation will have to be done here. It may be that creating the graph in a streaming fashion and then quantizing the vectors later works fine.
That appears to be a sound approach. Generally, I believe we can separate the process of constructing the graph from the graph traversal itself. As an example, take DiskANN, which constructs the graph based on the original vectors and subsequently conducts graph traversal for search using quantized vectors via Product Quantization (PQ). This approach seems reasonable because the graph exclusively holds neighbors, enhancing precision due to its origination from the original vectors. During search, it might be suitable to employ an alternate strategy for computing similarity.
The primary challenge I foresee is if we were to apply distinct quantization boundaries for each segment. Merging the similarities resulting from these varied quantizations could be intricate, given their operation on differing scales. Perhaps we could mitigate these disparities by implementing rescoring using the original vectors at a segment level? That might be too costly though. Another possibility would be to compute the boundaries regularly but not on every segment/merge or using half-float instead of bytes so that we can apply the same reduction for all segments?
Q: have we considered choosing an initial quantization based on the first segment seen and using that for all subsequent segments? Or: providing an API where quantization parameters can be provided? These kinds of approaches would seem to offer increased benefits in that we would not need to store the original vectors (since re-quantization would never be required). Looking at product-quantization schemes based on kmeans clustering this seems to be the usual approach (train the kmeans offline on a subset of the vectors, and then use them for all the vectors).
have we considered choosing an initial quantization based on the first segment seen and using that for all subsequent segments?
This may not be possible. What if they flush the first segment only after 10 docs? We need a representative random sample for this to at least work. I am not sure how to make sure that happens.
providing an API where quantization parameters can be provided?
This assumes that the user already knows about their vectors (or at least many of them) and built quantization well ahead of time.
Having it in segments directly allows the data to evolve over time without users having to worry about it.
IMO, this is no different than somebody just doing quantization outside of Lucene and indexing the byte values directly.
These kinds of approaches would seem to offer increased benefits in that we would not need to store the original vectors (since re-quantization would never be required)
I don't think these ideas make any such guarantees. We just don't bother with doing any work for the user. And thus just say "y'all handle it user". Either by making sure they give us a nice representative random sample in the first segment or by just quantizing outside of lucene.
Looking at product-quantization schemes based on kmeans clustering this seems to be the usual approach
Correct, using Lloyd's algorithm. As the dataset becomes stable as more data is seen, Lloyds could run more efficiently as better initial centroids are known from previous runs. It lends itself to distributed work over time.
But, I want to focus on scalar quantization first if possible :).
I have done a poor job of linking against the related work for bringing vector lossy-compression.
The initial implementation of adding int8 (really, its int7 because of signed bytes...): https://github.com/apache/lucene/pull/12582
A significant refactor to make adding new quantized storage easier: https://github.com/apache/lucene/pull/12729
This was shipped in Lucene 9.9 as the Lucene99HnswScalarQuantizedVectorsFormat
codec format!
Description
Having copy-on-write segments lends itself nicely with quantization. I propose we add a new "scalar" or "linear" quantization codec. This will be a simple quantization codec provided in addition to the existing HNSW codec.
So, why a new codec?
What would be required for the new codec:
Index time concerns:
1e-5
), re-quantization wouldn't be required.What would happen at search:
Some open questions:
byte[]
searches & vectors?Useful resources: https://qdrant.tech/articles/scalar-quantization/ https://zilliz.com/blog/scalar-quantization-and-product-quantization