Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ public CompactionGraph(IndexComponents.ForWrite perIndexComponents, VectorCompre
.createPersistedTo(postingsFile.toJavaIOFile());

// Formatted so that the full resolution vector is written at the ordinal * vector dimension offset
Component vectorsByOrdinalComponent = new Component(Component.Type.CUSTOM, "vectors_by_ordinal" + Descriptor.TMP_EXT);
vectorsByOrdinalTmpFile = dd.fileFor(vectorsByOrdinalComponent);
Component vectorsByOrdinalComponent = new Component(Component.Type.CUSTOM, "vectors_by_ordinal");
vectorsByOrdinalTmpFile = dd.tmpFileFor(vectorsByOrdinalComponent);
vectorsByOrdinalBufferedWriter = new BufferedRandomAccessWriter(vectorsByOrdinalTmpFile.toPath());

// VSTODO add LVQ
Expand Down
Loading