Package org.apache.lucene.codecs.hnsw
Class FlatVectorsWriter
java.lang.Object
org.apache.lucene.codecs.KnnVectorsWriter
org.apache.lucene.codecs.hnsw.FlatVectorsWriter
- All Implemented Interfaces:
Closeable,AutoCloseable,Accountable
- Direct Known Subclasses:
Lucene104ScalarQuantizedVectorsWriter,Lucene99FlatVectorsWriter
Vectors' writer for a field that allows additional indexing logic to be implemented by the caller
- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.codecs.KnnVectorsWriter
KnnVectorsWriter.MergedVectorValues -
Field Summary
FieldsFields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFlatVectorsWriter(FlatVectorsScorer vectorsScorer) Sole constructor -
Method Summary
Modifier and TypeMethodDescriptionabstract FlatFieldVectorsWriter<?> Add a new field for indexingfinal IORunnablemergeOneField(FieldInfo fieldInfo, MergeState mergeState) Merges vectors for a single field, returning a runnable for any deferred work (e.g., HNSW graph construction).abstract voidmergeOneFlatVectorField(FieldInfo fieldInfo, MergeState mergeState) Methods inherited from class org.apache.lucene.codecs.KnnVectorsWriter
finish, flush, mapOldOrdToNewOrd, mergeMethods 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, ramBytesUsed
-
Field Details
-
vectorsScorer
Scorer for flat vectors
-
-
Constructor Details
-
FlatVectorsWriter
Sole constructor
-
-
Method Details
-
getFlatVectorScorer
- Returns:
- the
FlatVectorsScorerfor this reader.
-
addField
Add a new field for indexing- Specified by:
addFieldin classKnnVectorsWriter- Parameters:
fieldInfo- fieldInfo of the field to add- Returns:
- a writer for the field
- Throws:
IOException- if an I/O error occurs when adding the field
-
mergeOneField
public final IORunnable mergeOneField(FieldInfo fieldInfo, MergeState mergeState) throws IOException Description copied from class:KnnVectorsWriterMerges vectors for a single field, returning a runnable for any deferred work (e.g., HNSW graph construction). The default implementation merges naively the vectors and returnsnull(no deferred work).Subclasses should override this method may implement a two-phase merge strategy where flat vectors are written in the first phase and additional indexing structures (like HNSW graphs) are built in the second phase using the already-written flat vector data.
- Overrides:
mergeOneFieldin classKnnVectorsWriter- Parameters:
fieldInfo- the field to mergemergeState- the merge state- Returns:
- a runnable to execute in phase 2, or
nullif there is no deferred work - Throws:
IOException- if an I/O error occurs
-
mergeOneFlatVectorField
public abstract void mergeOneFlatVectorField(FieldInfo fieldInfo, MergeState mergeState) throws IOException - Throws:
IOException
-