Skip to content

Commit

Permalink
Retrieve value from DocValues in a flat_object filed
Browse files Browse the repository at this point in the history
Signed-off-by: kkewwei <kewei.11@bytedance.com>
Signed-off-by: kkewwei <kkewwei@163.com>
  • Loading branch information
kkewwei committed Dec 8, 2024
1 parent 98dbc4a commit 6054295
Show file tree
Hide file tree
Showing 5 changed files with 136 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Support prefix list for remote repository attributes([#16271](https://github.com/opensearch-project/OpenSearch/pull/16271))
- Add new configuration setting `synonym_analyzer`, to the `synonym` and `synonym_graph` filters, enabling the specification of a custom analyzer for reading the synonym file ([#16488](https://github.com/opensearch-project/OpenSearch/pull/16488)).
- Add stats for remote publication failure and move download failure stats to remote methods([#16682](https://github.com/opensearch-project/OpenSearch/pull/16682/))
- Added ability to retrieve value from DocValues in a flat_object filed([#16802](https://github.com/opensearch-project/OpenSearch/pull/16802))

### Dependencies
- Bump `com.google.cloud:google-cloud-core-http` from 2.23.0 to 2.47.0 ([#16504](https://github.com/opensearch-project/OpenSearch/pull/16504))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
# The test setup includes:
# - Create flat_object mapping for flat_object_doc_values_test index
# - Index 9 example documents
# - Search tests about doc_values and index
# - 1.Create flat_object mapping for flat_object_doc_values_test index
# - 2.Index 9 example documents
# - 3.Search tests about doc_values and index
# - 4.Fetch doc_value from flat_object field

setup:
- skip:
Expand Down Expand Up @@ -786,3 +787,48 @@ teardown:

- length: { hits.hits: 1 }
- match: { hits.hits.0._source.order: "order8" }

# Stored Fields with exact dot path.
- do:
search:
body: {
_source: false,
query: {
bool: {
must: [
{
term: {
order: "order0"
}
}
]
}
},
stored_fields: "_none_",
docvalue_fields: [ "issue.labels.name","order" ]
}

- length: { hits.hits: 1 }
- match: { hits.hits.0.fields: { "order" : [ "order0" ], "issue.labels.name": [ "abc0" ] } }

- do:
search:
body: {
_source: false,
query: {
bool: {
must: [
{
term: {
order: "order0"
}
}
]
}
},
stored_fields: "_none_",
docvalue_fields: [ "issue.labels.name" ]
}

- length: { hits.hits: 1 }
- match: { hits.hits.0.fields: { "issue.labels.name": [ "abc0" ] } }
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import java.util.List;

import static java.util.Collections.emptyList;
import static org.opensearch.index.mapper.FlatObjectFieldMapper.NO_VALUE;

/**
* Value fetcher that loads from doc values.
Expand Down Expand Up @@ -70,7 +71,10 @@ public List<Object> fetchValues(SourceLookup lookup) throws IOException {
}
List<Object> result = new ArrayList<Object>(leaf.docValueCount());
for (int i = 0, count = leaf.docValueCount(); i < count; ++i) {
result.add(leaf.nextValue());
Object value = leaf.nextValue();
if (value != NO_VALUE) {
result.add(value);
}
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.opensearch.common.unit.Fuzziness;
import org.opensearch.common.xcontent.JsonToStringXContentParser;
import org.opensearch.core.common.ParsingException;
import org.opensearch.core.common.io.stream.StreamOutput;
import org.opensearch.core.xcontent.DeprecationHandler;
import org.opensearch.core.xcontent.NamedXContentRegistry;
import org.opensearch.core.xcontent.XContentParser;
Expand All @@ -36,11 +37,13 @@
import org.opensearch.index.fielddata.plain.SortedSetOrdinalsIndexFieldData;
import org.opensearch.index.mapper.KeywordFieldMapper.KeywordFieldType;
import org.opensearch.index.query.QueryShardContext;
import org.opensearch.search.DocValueFormat;
import org.opensearch.search.aggregations.support.CoreValuesSourceType;
import org.opensearch.search.lookup.SearchLookup;

import java.io.IOException;
import java.io.UncheckedIOException;
import java.time.ZoneId;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
Expand All @@ -63,6 +66,7 @@
public final class FlatObjectFieldMapper extends DynamicKeyFieldMapper {

public static final String CONTENT_TYPE = "flat_object";
public static final String NO_VALUE = new String("");

/**
* In flat_object field mapper, field type is similar to keyword field type
Expand Down Expand Up @@ -272,7 +276,7 @@ NamedAnalyzer normalizer() {
@Override
public IndexFieldData.Builder fielddataBuilder(String fullyQualifiedIndexName, Supplier<SearchLookup> searchLookup) {
failIfNoDocValues();
return new SortedSetOrdinalsIndexFieldData.Builder(name(), CoreValuesSourceType.BYTES);
return new SortedSetOrdinalsIndexFieldData.Builder(valueFieldType().name(), CoreValuesSourceType.BYTES);
}

@Override
Expand Down Expand Up @@ -304,6 +308,30 @@ protected String parseSourceValue(Object value) {
};
}

@Override
public DocValueFormat docValueFormat(@Nullable String format, ZoneId timeZone) {
if (format != null) {
throw new IllegalArgumentException("Field [" + name() + "] of type [" + typeName() + "] does not support custom formats");
}
if (timeZone != null) {
throw new IllegalArgumentException(
"Field [" + name() + "] of type [" + typeName() + "] does not support custom time zones"
);
}
if (mappedFieldTypeName != null) {
return new FlatObjectDocValueFormat(mappedFieldTypeName + DOT_SYMBOL + name() + EQUAL_SYMBOL);
} else {
throw new IllegalArgumentException(
"Field [" + name() + "] of type [" + typeName() + "] does not support doc_value in root field"
);
}
}

@Override
public boolean isAggregatable() {
return false;
}

@Override
public Object valueForDisplay(Object value) {
if (value == null) {
Expand Down Expand Up @@ -530,6 +558,36 @@ public Query wildcardQuery(
return valueFieldType().wildcardQuery(rewriteValue(value), method, caseInsensitve, context);
}

public class FlatObjectDocValueFormat implements DocValueFormat {
private static final String NAME = "flat_object";
private final String prefix;

public FlatObjectDocValueFormat(String prefix) {
this.prefix = prefix;
}

@Override
public String getWriteableName() {
return NAME;
}

@Override
public void writeTo(StreamOutput out) {}

@Override
public String format(BytesRef value) {
String parsedValue = inputToString(value);
if (parsedValue.startsWith(prefix) == false) {
return NO_VALUE;
}
return parsedValue.substring(prefix.length());
}

@Override
public BytesRef parseBytesRef(String value) {
return new BytesRef((String) valueFieldType.rewriteForDocValue(rewriteValue(value)));
}
}
}

private final ValueFieldMapper valueFieldMapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.opensearch.core.xcontent.ToXContent;
import org.opensearch.core.xcontent.XContentBuilder;
import org.opensearch.index.query.QueryShardContext;
import org.opensearch.search.DocValueFormat;

import java.io.IOException;

Expand Down Expand Up @@ -397,6 +398,27 @@ public void testDeduplicationValue() throws IOException {
assertEquals(new BytesRef("field.labels=3"), fieldValueAndPaths[4].binaryValue());
}

public void testFetchDocValues() throws IOException {
MapperService mapperService = createMapperService(fieldMapping(b -> b.field("type", "flat_object")));
{
// test valueWithPathField
MappedFieldType ft = mapperService.fieldType("field.name");
DocValueFormat format = ft.docValueFormat(null, null);
String storedValue = "field.field.name=1234";

Object object = format.format(new BytesRef(storedValue));
assertEquals("1234", object);
}

{
// test valueField
MappedFieldType ft = mapperService.fieldType("field");
Throwable throwable = assertThrows(IllegalArgumentException.class, () -> ft.docValueFormat(null, null));
assertEquals("Field [field] of type [flat_object] does not support doc_value in root field", throwable.getMessage());
}

}

@Override
protected void registerParameters(ParameterChecker checker) throws IOException {
// In the future we will want to make sure parameter updates are covered.
Expand Down

0 comments on commit 6054295

Please sign in to comment.