forked from opensearch-project/k-NN
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bytes bug and add uTs for derived source
Fixes a bug in the derived source writer where we are reading the entire bytes array from the bytes ref instead of just the offset+length. Along with that, touches up the ParentChildHelper (no prod impact) and also adds some unit tests. Signed-off-by: John Mazanec <jmazane@amazon.com>
- Loading branch information
1 parent
878c57d
commit d821749
Showing
12 changed files
with
445 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...ava/org/opensearch/knn/index/codec/KNN9120Codec/DerivedSourceStoredFieldsWriterTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.knn.index.codec.KNN9120Codec; | ||
|
||
import lombok.SneakyThrows; | ||
import org.apache.lucene.codecs.StoredFieldsWriter; | ||
import org.apache.lucene.index.FieldInfo; | ||
import org.apache.lucene.util.BytesRef; | ||
import org.opensearch.common.io.stream.BytesStreamOutput; | ||
import org.opensearch.core.xcontent.MediaTypeRegistry; | ||
import org.opensearch.core.xcontent.XContentBuilder; | ||
import org.opensearch.knn.KNNTestCase; | ||
import org.opensearch.knn.index.codec.KNNCodecTestUtil; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.mockito.Mockito.mock; | ||
|
||
public class DerivedSourceStoredFieldsWriterTests extends KNNTestCase { | ||
|
||
@SneakyThrows | ||
public void testWriteField() { | ||
StoredFieldsWriter delegate = mock(StoredFieldsWriter.class); | ||
FieldInfo fieldInfo = KNNCodecTestUtil.FieldInfoBuilder.builder("_source").build(); | ||
List<String> fields = List.of("test"); | ||
|
||
DerivedSourceStoredFieldsWriter derivedSourceStoredFieldsWriter = new DerivedSourceStoredFieldsWriter(delegate, fields); | ||
|
||
Map<String, Object> source = Map.of("test", new float[] { 1.0f, 2.0f, 3.0f }, "text_field", "text_value"); | ||
BytesStreamOutput bStream = new BytesStreamOutput(); | ||
XContentBuilder builder = MediaTypeRegistry.contentBuilder(MediaTypeRegistry.JSON, bStream).map(source); | ||
builder.close(); | ||
byte[] originalBytes = bStream.bytes().toBytesRef().bytes; | ||
byte[] shiftedBytes = new byte[originalBytes.length + 2]; | ||
System.arraycopy(originalBytes, 0, shiftedBytes, 1, originalBytes.length); | ||
derivedSourceStoredFieldsWriter.writeField(fieldInfo, new BytesRef(shiftedBytes, 1, originalBytes.length)); | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...va/org/opensearch/knn/index/codec/derivedsource/DerivedSourceStoredFieldVisitorTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.knn.index.codec.derivedsource; | ||
|
||
import org.apache.lucene.index.StoredFieldVisitor; | ||
import org.opensearch.knn.KNNTestCase; | ||
import org.opensearch.knn.index.codec.KNNCodecTestUtil; | ||
|
||
import static org.mockito.ArgumentMatchers.any; | ||
import static org.mockito.ArgumentMatchers.anyInt; | ||
import static org.mockito.Mockito.doAnswer; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.times; | ||
import static org.mockito.Mockito.verify; | ||
import static org.mockito.Mockito.when; | ||
|
||
public class DerivedSourceStoredFieldVisitorTests extends KNNTestCase { | ||
|
||
public void testBinaryField() throws Exception { | ||
StoredFieldVisitor delegate = mock(StoredFieldVisitor.class); | ||
doAnswer(invocationOnMock -> null).when(delegate).binaryField(any(), any()); | ||
DerivedSourceVectorInjector derivedSourceVectorInjector = mock(DerivedSourceVectorInjector.class); | ||
when(derivedSourceVectorInjector.injectVectors(anyInt(), any())).thenReturn(new byte[0]); | ||
DerivedSourceStoredFieldVisitor derivedSourceStoredFieldVisitor = new DerivedSourceStoredFieldVisitor( | ||
delegate, | ||
0, | ||
derivedSourceVectorInjector | ||
); | ||
|
||
// When field is not _source, then do not call the injector | ||
derivedSourceStoredFieldVisitor.binaryField(KNNCodecTestUtil.FieldInfoBuilder.builder("test").build(), null); | ||
verify(derivedSourceVectorInjector, times(0)).injectVectors(anyInt(), any()); | ||
verify(delegate, times(1)).binaryField(any(), any()); | ||
|
||
// When field is not _source, then do call the injector | ||
derivedSourceStoredFieldVisitor.binaryField(KNNCodecTestUtil.FieldInfoBuilder.builder("_source").build(), null); | ||
verify(derivedSourceVectorInjector, times(1)).injectVectors(anyInt(), any()); | ||
verify(delegate, times(2)).binaryField(any(), any()); | ||
} | ||
} |
Oops, something went wrong.