Module org.apache.lucene.core
Class Lucene99ScalarQuantizedVectorsReader
java.lang.Object
org.apache.lucene.codecs.hnsw.FlatVectorsReader
org.apache.lucene.codecs.lucene99.Lucene99ScalarQuantizedVectorsReader
- All Implemented Interfaces:
Closeable,AutoCloseable,Accountable,QuantizedVectorsReader
public final class Lucene99ScalarQuantizedVectorsReader
extends FlatVectorsReader
implements QuantizedVectorsReader
Reads Scalar Quantized vectors from the index segments along with index data structures.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate static classprivate static final class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Map<String, Lucene99ScalarQuantizedVectorsReader.FieldEntry> private final IndexInputprivate final FlatVectorsReaderprivate static final longFields inherited from class org.apache.lucene.codecs.hnsw.FlatVectorsReader
vectorScorerFields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE -
Constructor Summary
ConstructorsConstructorDescriptionLucene99ScalarQuantizedVectorsReader(SegmentReadState state, FlatVectorsReader rawVectorsReader, FlatVectorsScorer scorer) -
Method Summary
Modifier and TypeMethodDescriptionvoidChecks consistency of this reader.voidclose()getByteVectorValues(String field) Returns theByteVectorValuesfor the givenfield.getFloatVectorValues(String field) Returns theFloatVectorValuesfor the givenfield.getQuantizationState(String fieldName) getQuantizedVectorValues(String fieldName) getRandomVectorScorer(String field, byte[] target) Returns aRandomVectorScorerfor the given field and target vector.getRandomVectorScorer(String field, float[] target) Returns aRandomVectorScorerfor the given field and target vector.private static IndexInputopenDataInput(SegmentReadState state, int versionMeta, String fileExtension, String codecName, IOContext context) longReturn the memory usage of this object in bytes.readField(IndexInput input, int versionMeta, FieldInfo info) private voidreadFields(ChecksumIndexInput meta, int versionMeta, FieldInfos infos) (package private) static voidvalidateFieldEntry(FieldInfo info, Lucene99ScalarQuantizedVectorsReader.FieldEntry fieldEntry) Methods inherited from class org.apache.lucene.codecs.hnsw.FlatVectorsReader
getFlatVectorScorerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
Field Details
-
SHALLOW_SIZE
private static final long SHALLOW_SIZE -
fields
-
quantizedVectorData
-
rawVectorsReader
-
-
Constructor Details
-
Lucene99ScalarQuantizedVectorsReader
public Lucene99ScalarQuantizedVectorsReader(SegmentReadState state, FlatVectorsReader rawVectorsReader, FlatVectorsScorer scorer) throws IOException - Throws:
IOException
-
-
Method Details
-
readFields
private void readFields(ChecksumIndexInput meta, int versionMeta, FieldInfos infos) throws IOException - Throws:
IOException
-
validateFieldEntry
static void validateFieldEntry(FieldInfo info, Lucene99ScalarQuantizedVectorsReader.FieldEntry fieldEntry) -
checkIntegrity
Description copied from class:FlatVectorsReaderChecks consistency of this reader.Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
- Specified by:
checkIntegrityin classFlatVectorsReader- Throws:
IOException
-
getFloatVectorValues
Description copied from class:FlatVectorsReaderReturns theFloatVectorValuesfor the givenfield. The behavior is undefined if the given field doesn't have KNN vectors enabled on itsFieldInfo. The return value is nevernull.- Specified by:
getFloatVectorValuesin classFlatVectorsReader- Throws:
IOException
-
getByteVectorValues
Description copied from class:FlatVectorsReaderReturns theByteVectorValuesfor the givenfield. The behavior is undefined if the given field doesn't have KNN vectors enabled on itsFieldInfo. The return value is nevernull.- Specified by:
getByteVectorValuesin classFlatVectorsReader- Throws:
IOException
-
openDataInput
private static IndexInput openDataInput(SegmentReadState state, int versionMeta, String fileExtension, String codecName, IOContext context) throws IOException - Throws:
IOException
-
getRandomVectorScorer
Description copied from class:FlatVectorsReaderReturns aRandomVectorScorerfor the given field and target vector.- Specified by:
getRandomVectorScorerin classFlatVectorsReader- Parameters:
field- the field to searchtarget- the target vector- Returns:
- a
RandomVectorScorerfor the given field and target vector. - Throws:
IOException- if an I/O error occurs when reading from the index.
-
getRandomVectorScorer
Description copied from class:FlatVectorsReaderReturns aRandomVectorScorerfor the given field and target vector.- Specified by:
getRandomVectorScorerin classFlatVectorsReader- Parameters:
field- the field to searchtarget- the target vector- Returns:
- a
RandomVectorScorerfor the given field and target vector. - Throws:
IOException- if an I/O error occurs when reading from the index.
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
ramBytesUsed
public long ramBytesUsed()Description copied from interface:AccountableReturn the memory usage of this object in bytes. Negative values are illegal.- Specified by:
ramBytesUsedin interfaceAccountable
-
readField
private Lucene99ScalarQuantizedVectorsReader.FieldEntry readField(IndexInput input, int versionMeta, FieldInfo info) throws IOException - Throws:
IOException
-
getQuantizedVectorValues
- Specified by:
getQuantizedVectorValuesin interfaceQuantizedVectorsReader- Throws:
IOException
-
getQuantizationState
- Specified by:
getQuantizationStatein interfaceQuantizedVectorsReader
-