Skip to content

Commit

Permalink
Fix bug with nested and filters agg (backport of #67043) (#67171)
Browse files Browse the repository at this point in the history
Fixes a bug where nested documents that match a filter in the `filters`
agg will be counted as matching the filter. Usually nested documents
only match if you explicitly ask to match them. Worse, we only mach them
in the "filter by filter" mode that we wrote to speed up date_histogram.
The `filters` agg is fairly rare, but with #63643 we run
`date_histogram` and `range` aggregations using `filters`.
  • Loading branch information
nik9000 committed Jan 7, 2021
1 parent f3b47b5 commit 45ef685
Show file tree
Hide file tree
Showing 7 changed files with 168 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,3 +341,55 @@ setup:
- length: { aggregations.f.buckets: 2 }
- match: { aggregations.f.buckets.foo.doc_count: 4 }
- match: { aggregations.f.buckets.foo_bar.doc_count: 4 }

---

nested:
# Tests that we don't accidentally match nested documents when the filter
# matches it.
- skip:
version: " - 7.10.99"
reason: fixed in 7.11.0

- do:
indices.create:
index: test_nested
body:
settings:
number_of_replicas: 0
mappings:
properties:
i:
type: integer
nested:
type: nested
properties:
j:
type: integer

- do:
bulk:
refresh: true
index: test_nested
body:
- index: {}
- i: 1
nested:
- j: 2
- j: 3
- j: 4

- do:
search:
index: test_nested
body:
size: 0
aggs:
f:
filters:
filters:
foo:
match_all: {}
- match: { hits.total.value: 1 }
- length: { aggregations.f.buckets: 1 }
- match: { aggregations.f.buckets.foo.doc_count: 1 }
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,12 @@ private void parseSource(DefaultSearchContext context, SearchSourceBuilder sourc
if (source.aggregations() != null && includeAggregations) {
AggregationContext aggContext = new ProductionAggregationContext(
context.getQueryShardContext(),
context.query() == null ? new MatchAllDocsQuery() : context.query(),
/*
* The query on the search context right now doesn't include
* the filter for nested documents or slicing so we have to
* delay reading it until the aggs ask for it.
*/
() -> context.query() == null ? new MatchAllDocsQuery() : context.query(),
context.getProfilers() == null ? null : context.getProfilers().getAggregationProfiler(),
multiBucketConsumerService.create(),
() -> new SubSearchContext(context).parsedQuery(context.parsedQuery()).fetchFieldsContext(context.fetchFieldsContext()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public final AggregationUsageService getUsageService() {
public static class ProductionAggregationContext extends AggregationContext {
private final QueryShardContext context;
private final BigArrays bigArrays;
private final Query topLevelQuery;
private final Supplier<Query> topLevelQuery;
private final AggregationProfiler profiler;
private final MultiBucketConsumer multiBucketConsumer;
private final Supplier<SubSearchContext> subSearchContextBuilder;
Expand All @@ -259,7 +259,7 @@ public static class ProductionAggregationContext extends AggregationContext {

public ProductionAggregationContext(
QueryShardContext context,
Query topLevelQuery,
Supplier<Query> topLevelQuery,
@Nullable AggregationProfiler profiler,
MultiBucketConsumer multiBucketConsumer,
Supplier<SubSearchContext> subSearchContextBuilder,
Expand All @@ -284,7 +284,7 @@ public ProductionAggregationContext(

@Override
public Query query() {
return topLevelQuery;
return topLevelQuery.get();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.FilterDirectoryReader;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.search.ConstantScoreQuery;
import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.Query;
import org.apache.lucene.store.AlreadyClosedException;
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.Version;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.action.OriginalIndices;
import org.elasticsearch.action.index.IndexResponse;
Expand All @@ -42,9 +45,11 @@
import org.elasticsearch.common.UUIDs;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.common.lucene.search.Queries;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.unit.TimeValue;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.common.xcontent.json.JsonXContent;
import org.elasticsearch.index.Index;
import org.elasticsearch.index.IndexModule;
import org.elasticsearch.index.IndexNotFoundException;
Expand Down Expand Up @@ -74,8 +79,10 @@
import org.elasticsearch.search.aggregations.AggregationBuilders;
import org.elasticsearch.search.aggregations.InternalAggregation;
import org.elasticsearch.search.aggregations.MultiBucketConsumerService;
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregationBuilder;
import org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
import org.elasticsearch.search.aggregations.support.AggregationContext;
import org.elasticsearch.search.aggregations.support.ValueType;
import org.elasticsearch.search.builder.SearchSourceBuilder;
import org.elasticsearch.search.fetch.FetchSearchResult;
Expand Down Expand Up @@ -104,6 +111,7 @@
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.function.Consumer;
import java.util.function.Function;

import static java.util.Collections.singletonList;
Expand Down Expand Up @@ -824,6 +832,52 @@ public void testSetSearchThrottled() {
service.canMatch(req, ActionListener.wrap(r -> assertSame(Thread.currentThread(), currentThread), e -> fail("unexpected")));
}

public void testAggContextGetsMatchAll() throws IOException {
createIndex("test");
withAggregationContext("test", context -> assertThat(context.query(), equalTo(new MatchAllDocsQuery())));
}

public void testAggContextGetsNestedFilter() throws IOException {
XContentBuilder mapping = JsonXContent.contentBuilder().startObject().startObject("properties");
mapping.startObject("nested").field("type", "nested").endObject();
mapping.endObject().endObject();

createIndex("test", Settings.EMPTY, "test", mapping);
withAggregationContext(
"test",
context -> assertThat(context.query(), equalTo(new ConstantScoreQuery(Queries.newNonNestedFilter(Version.CURRENT))))
);
}

/**
* Build an {@link AggregationContext} with the named index.
*/
private void withAggregationContext(String index, Consumer<AggregationContext> check) throws IOException {
IndexService indexService = getInstanceFromNode(IndicesService.class).indexServiceSafe(resolveIndex(index));
ShardId shardId = new ShardId(indexService.index(), 0);

SearchRequest request = new SearchRequest().indices(index)
.source(new SearchSourceBuilder().aggregation(new FiltersAggregationBuilder("test", new MatchAllQueryBuilder())))
.allowPartialSearchResults(false);
ShardSearchRequest shardRequest = new ShardSearchRequest(
OriginalIndices.NONE,
request,
shardId,
0,
1,
AliasFilter.EMPTY,
1,
0,
null
);

try (ReaderContext readerContext = createReaderContext(indexService, indexService.getShard(0))) {
try (SearchContext context = getInstanceFromNode(SearchService.class).createContext(readerContext, shardRequest, null, true)) {
check.accept(context.aggregations().factories().context());
}
}
}

public void testExpandSearchThrottled() {
createIndex("throttled_threadpool_index");
client().execute(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,24 @@
import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.Query;
import org.apache.lucene.store.Directory;
import org.elasticsearch.Version;
import org.elasticsearch.common.CheckedConsumer;
import org.elasticsearch.common.lucene.search.Queries;
import org.elasticsearch.index.mapper.DateFieldMapper;
import org.elasticsearch.index.mapper.DateFieldMapper.Resolution;
import org.elasticsearch.index.mapper.KeywordFieldMapper;
import org.elasticsearch.index.mapper.KeywordFieldMapper.KeywordFieldType;
import org.elasticsearch.index.mapper.MappedFieldType;
import org.elasticsearch.index.mapper.ObjectMapper;
import org.elasticsearch.index.query.MatchAllQueryBuilder;
import org.elasticsearch.index.query.QueryBuilder;
import org.elasticsearch.index.query.QueryBuilders;
import org.elasticsearch.index.query.RangeQueryBuilder;
import org.elasticsearch.index.query.TermQueryBuilder;
import org.elasticsearch.search.aggregations.AggregationBuilder;
import org.elasticsearch.search.aggregations.AggregatorTestCase;
import org.elasticsearch.search.aggregations.bucket.filter.FiltersAggregator.KeyedFilter;
import org.elasticsearch.search.aggregations.bucket.nested.NestedAggregatorTests;
import org.elasticsearch.search.aggregations.support.AggregationInspectionHelper;
import org.junit.Before;

Expand Down Expand Up @@ -296,4 +304,46 @@ public void testFilterByFilterCost() throws IOException {
ft
);
}

/**
* Check that we don't accidentally find nested documents when the filter
* matches it.
*/
public void testNested() throws IOException {
KeywordFieldType ft = new KeywordFieldType("author");
CheckedConsumer<RandomIndexWriter, IOException> buildIndex = iw -> iw.addDocuments(
NestedAggregatorTests.generateBook("test", new String[] { "foo", "bar" }, new int[] { 5, 10, 15, 20 })
);
testCase(
new FiltersAggregationBuilder("test", new KeyedFilter("q1", new TermQueryBuilder("author", "foo"))),
Queries.newNonNestedFilter(Version.CURRENT),
buildIndex,
result -> {
InternalFilters filters = (InternalFilters) result;
assertThat(filters.getBuckets(), hasSize(1));
assertThat(filters.getBucketByKey("q1").getDocCount(), equalTo(1L));
},
ft
);
testCase(
new FiltersAggregationBuilder("test", new KeyedFilter("q1", new MatchAllQueryBuilder())),
Queries.newNonNestedFilter(Version.CURRENT),
buildIndex,
result -> {
InternalFilters filters = (InternalFilters) result;
assertThat(filters.getBuckets(), hasSize(1));
assertThat(filters.getBucketByKey("q1").getDocCount(), equalTo(1L));
},
ft
);
}

@Override
protected List<ObjectMapper> objectMappers() {
return MOCK_OBJECT_MAPPERS;
}

static final List<ObjectMapper> MOCK_OBJECT_MAPPERS = org.elasticsearch.common.collect.List.of(
NestedAggregatorTests.nestedObject("nested_chapters")
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ private static double[] generateDocuments(List<Document> documents, int numNeste
return values;
}

private List<Document> generateBook(String id, String[] authors, int[] numPages) {
public static List<Document> generateBook(String id, String[] authors, int[] numPages) {
List<Document> documents = new ArrayList<>();

for (int numPage : numPages) {
Expand All @@ -858,6 +858,7 @@ private List<Document> generateBook(String id, String[] authors, int[] numPages)
document.add(new Field(IdFieldMapper.NAME, Uid.encodeId(id), IdFieldMapper.Defaults.FIELD_TYPE));
document.add(sequenceIDFields.primaryTerm);
for (String author : authors) {
document.add(new Field("author", author, KeywordFieldMapper.Defaults.FIELD_TYPE));
document.add(new SortedSetDocValuesField("author", new BytesRef(author)));
}
documents.add(document);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public void onCache(ShardId shardId, Accountable accountable) {}
MultiBucketConsumer consumer = new MultiBucketConsumer(maxBucket, breakerService.getBreaker(CircuitBreaker.REQUEST));
return new ProductionAggregationContext(
queryShardContext,
query,
() -> query,
null,
consumer,
() -> buildSubSearchContext(indexSettings, queryShardContext, bitsetFilterCache),
Expand Down

0 comments on commit 45ef685

Please sign in to comment.