Class Lucene91OnHeapHnswGraph
java.lang.Object
org.apache.lucene.util.hnsw.HnswGraph
org.apache.lucene.backward_codecs.lucene91.Lucene91OnHeapHnswGraph
An
HnswGraph where all nodes and connections are held in memory. This class is used to
construct the HNSW graph before it's written to the index.-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.util.hnsw.HnswGraph
HnswGraph.ArrayNodesIterator, HnswGraph.CollectionNodesIterator, HnswGraph.NodesIterator -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Lucene91NeighborArrayprivate intprivate final List<List<Lucene91NeighborArray>> private final intprivate final List<int[]> private intprivate int -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddNode(int level, int node) Add node on the given levelintReturns the graph's current entry node on the top level shown as ordinals of the nodes on 0th levelgetNeighbors(int level, int node) Returns theNeighborQueueconnected to the given node.getNodesOnLevel(int level) Get all nodes on a given level as node 0th ordinalsintIterates over the neighbor list.intReturns the current number of levels in the graphvoidseek(int level, int targetNode) Move the pointer to exactly the givenlevel'starget.intsize()Returns the number of nodes in the graph
-
Field Details
-
maxConn
private final int maxConn -
numLevels
private int numLevels -
entryNode
private int entryNode -
nodesByLevel
-
graph
-
upto
private int upto -
cur
-
-
Constructor Details
-
Lucene91OnHeapHnswGraph
Lucene91OnHeapHnswGraph(int maxConn, int levelOfFirstNode)
-
-
Method Details
-
getNeighbors
Returns theNeighborQueueconnected to the given node.- Parameters:
level- level of the graphnode- the node whose neighbors are returned, represented as an ordinal on the level 0.
-
size
public int size()Description copied from class:HnswGraphReturns the number of nodes in the graph -
addNode
public void addNode(int level, int node) Add node on the given level- Parameters:
level- level to add a node onnode- the node to add, represented as an ordinal on the level 0.
-
seek
public void seek(int level, int targetNode) Description copied from class:HnswGraphMove the pointer to exactly the givenlevel'starget. After this method returns, callHnswGraph.nextNeighbor()to return successive (ordered) connected node ordinals.- Specified by:
seekin classHnswGraph- Parameters:
level- level of the graphtargetNode- ordinal of a node in the graph, must be ≥ 0 and <FloatVectorValues.size().
-
nextNeighbor
public int nextNeighbor()Description copied from class:HnswGraphIterates over the neighbor list. It is illegal to call this method after it returns NO_MORE_DOCS without callingHnswGraph.seek(int, int), which resets the iterator.- Specified by:
nextNeighborin classHnswGraph- Returns:
- a node ordinal in the graph, or NO_MORE_DOCS if the iteration is complete.
-
numLevels
public int numLevels()Returns the current number of levels in the graph -
entryNode
public int entryNode()Returns the graph's current entry node on the top level shown as ordinals of the nodes on 0th level -
getNodesOnLevel
Description copied from class:HnswGraphGet all nodes on a given level as node 0th ordinals- Specified by:
getNodesOnLevelin classHnswGraph- Parameters:
level- level for which to get all nodes- Returns:
- an iterator over nodes where
nextIntreturns a next node on the level
-