Class Lucene99HnswScalarQuantizedVectorsFormat
- java.lang.Object
-
- org.apache.lucene.codecs.KnnVectorsFormat
-
- org.apache.lucene.codecs.lucene99.Lucene99HnswScalarQuantizedVectorsFormat
-
- All Implemented Interfaces:
NamedSPILoader.NamedSPI
public class Lucene99HnswScalarQuantizedVectorsFormat extends KnnVectorsFormat
Lucene 9.9 vector format, which encodes numeric vector values into an associated graph connecting the documents having values. The graph is used to power HNSW search. The format consists of two files, and usesLucene99ScalarQuantizedVectorsFormat
to store the actual vectors: For details on graph storage and file extensions, seeLucene99HnswVectorsFormat
.- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
-
Field Summary
Fields Modifier and Type Field Description static String
NAME
-
Fields inherited from class org.apache.lucene.codecs.KnnVectorsFormat
DEFAULT_MAX_DIMENSIONS, EMPTY
-
-
Constructor Summary
Constructors Constructor Description Lucene99HnswScalarQuantizedVectorsFormat()
Constructs a format using default graph construction parametersLucene99HnswScalarQuantizedVectorsFormat(int maxConn, int beamWidth)
Constructs a format using the given graph construction parameters.Lucene99HnswScalarQuantizedVectorsFormat(int maxConn, int beamWidth, int numMergeWorkers, int bits, boolean compress, Float confidenceInterval, ExecutorService mergeExec)
Constructs a format using the given graph construction parameters and scalar quantization.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KnnVectorsReader
fieldsReader(SegmentReadState state)
Returns aKnnVectorsReader
to read the vectors from the index.KnnVectorsWriter
fieldsWriter(SegmentWriteState state)
Returns aKnnVectorsWriter
to write the vectors to the index.int
getMaxDimensions(String fieldName)
Returns the maximum number of vector dimensions supported by this codec for the given field nameString
toString()
-
Methods inherited from class org.apache.lucene.codecs.KnnVectorsFormat
availableKnnVectorsFormats, forName, getName, reloadKnnVectorsFormat
-
-
-
-
Field Detail
-
NAME
public static final String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Lucene99HnswScalarQuantizedVectorsFormat
public Lucene99HnswScalarQuantizedVectorsFormat()
Constructs a format using default graph construction parameters
-
Lucene99HnswScalarQuantizedVectorsFormat
public Lucene99HnswScalarQuantizedVectorsFormat(int maxConn, int beamWidth)
Constructs a format using the given graph construction parameters.- Parameters:
maxConn
- the maximum number of connections to a node in the HNSW graphbeamWidth
- the size of the queue maintained during graph construction.
-
Lucene99HnswScalarQuantizedVectorsFormat
public Lucene99HnswScalarQuantizedVectorsFormat(int maxConn, int beamWidth, int numMergeWorkers, int bits, boolean compress, Float confidenceInterval, ExecutorService mergeExec)
Constructs a format using the given graph construction parameters and scalar quantization.- Parameters:
maxConn
- the maximum number of connections to a node in the HNSW graphbeamWidth
- the size of the queue maintained during graph construction.numMergeWorkers
- number of workers (threads) that will be used when doing merge. If larger than 1, a non-nullExecutorService
must be passed as mergeExecbits
- the number of bits to use for scalar quantization (must be between 1 and 8, inclusive)compress
- whether to compress the vectors, if true, the vectors that are quantized with lte 4 bits will be compressed into a single byte. If false, the vectors will be stored as is. This provides a trade-off of memory usage and speed.confidenceInterval
- the confidenceInterval for scalar quantizing the vectors, when `null` it is calculated based on the vector field dimensions. When `0`, the quantiles are dynamically determined by sampling many confidence intervals and determining the most accurate pair.mergeExec
- theExecutorService
that will be used by ALL vector writers that are generated by this format to do the merge
-
-
Method Detail
-
fieldsWriter
public KnnVectorsWriter fieldsWriter(SegmentWriteState state) throws IOException
Description copied from class:KnnVectorsFormat
Returns aKnnVectorsWriter
to write the vectors to the index.- Specified by:
fieldsWriter
in classKnnVectorsFormat
- Throws:
IOException
-
fieldsReader
public KnnVectorsReader fieldsReader(SegmentReadState state) throws IOException
Description copied from class:KnnVectorsFormat
Returns aKnnVectorsReader
to read the vectors from the index.- Specified by:
fieldsReader
in classKnnVectorsFormat
- Throws:
IOException
-
getMaxDimensions
public int getMaxDimensions(String fieldName)
Description copied from class:KnnVectorsFormat
Returns the maximum number of vector dimensions supported by this codec for the given field nameCodecs should override this method to specify the maximum number of dimensions they support.
- Overrides:
getMaxDimensions
in classKnnVectorsFormat
- Parameters:
fieldName
- the field name- Returns:
- the maximum number of vector dimensions.
-
-