-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds unit test for sampler aggregation #23243
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,14 +34,14 @@ | |
import org.elasticsearch.index.IndexSettings; | ||
import org.elasticsearch.index.cache.query.DisabledQueryCache; | ||
import org.elasticsearch.index.engine.Engine; | ||
import org.elasticsearch.index.fielddata.IndexFieldData; | ||
import org.elasticsearch.index.fielddata.IndexFieldDataCache; | ||
import org.elasticsearch.index.fielddata.IndexFieldDataService; | ||
import org.elasticsearch.index.mapper.MappedFieldType; | ||
import org.elasticsearch.index.mapper.MapperService; | ||
import org.elasticsearch.index.query.QueryShardContext; | ||
import org.elasticsearch.indices.breaker.CircuitBreakerService; | ||
import org.elasticsearch.indices.breaker.NoneCircuitBreakerService; | ||
import org.elasticsearch.search.aggregations.bucket.DeferringBucketCollector; | ||
import org.elasticsearch.search.fetch.FetchPhase; | ||
import org.elasticsearch.search.fetch.subphase.DocValueFieldsFetchSubPhase; | ||
import org.elasticsearch.search.fetch.subphase.FetchSourceSubPhase; | ||
|
@@ -110,10 +110,9 @@ public boolean shouldCache(Query query) throws IOException { | |
|
||
QueryShardContext queryShardContext = mock(QueryShardContext.class); | ||
for (MappedFieldType fieldType : fieldTypes) { | ||
IndexFieldData<?> fieldData = fieldType.fielddataBuilder().build(indexSettings, fieldType, | ||
new IndexFieldDataCache.None(), circuitBreakerService, mock(MapperService.class)); | ||
when(queryShardContext.fieldMapper(fieldType.name())).thenReturn(fieldType); | ||
when(queryShardContext.getForField(fieldType)).thenReturn(fieldData); | ||
when(queryShardContext.getForField(fieldType)).then(invocation -> fieldType.fielddataBuilder().build( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This blew up without fielddata enabled so I made it return when used instead of all the time. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. makes sense |
||
indexSettings, fieldType, new IndexFieldDataCache.None(), circuitBreakerService, mock(MapperService.class))); | ||
when(searchContext.getQueryShardContext()).thenReturn(queryShardContext); | ||
} | ||
|
||
|
@@ -126,13 +125,16 @@ protected <A extends InternalAggregation, C extends Aggregator> A search(IndexSe | |
Query query, | ||
AggregationBuilder builder, | ||
MappedFieldType... fieldTypes) throws IOException { | ||
try (C a = createAggregator(builder, searcher, fieldTypes)) { | ||
C a = createAggregator(builder, searcher, fieldTypes); | ||
try { | ||
a.preCollection(); | ||
searcher.search(query, a); | ||
a.postCollection(); | ||
@SuppressWarnings("unchecked") | ||
A internalAgg = (A) a.buildAggregation(0L); | ||
return internalAgg; | ||
} finally { | ||
closeAgg(a); | ||
} | ||
} | ||
|
||
|
@@ -190,6 +192,7 @@ protected <A extends InternalAggregation, C extends Aggregator> A searchAndReduc | |
} | ||
|
||
private void closeAgg(Aggregator agg) { | ||
agg = DeferringBucketCollector.unwrap(agg); | ||
agg.close(); | ||
for (Aggregator sub : ((AggregatorBase) agg).subAggregators) { | ||
closeAgg(sub); | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.search.aggregations.bucket.sampler; | ||
|
||
import org.apache.lucene.analysis.standard.StandardAnalyzer; | ||
import org.apache.lucene.document.Document; | ||
import org.apache.lucene.document.Field; | ||
import org.apache.lucene.document.SortedNumericDocValuesField; | ||
import org.apache.lucene.index.IndexReader; | ||
import org.apache.lucene.index.RandomIndexWriter; | ||
import org.apache.lucene.index.Term; | ||
import org.apache.lucene.search.IndexSearcher; | ||
import org.apache.lucene.search.TermQuery; | ||
import org.apache.lucene.store.Directory; | ||
import org.elasticsearch.index.analysis.AnalyzerScope; | ||
import org.elasticsearch.index.analysis.NamedAnalyzer; | ||
import org.elasticsearch.index.mapper.MappedFieldType; | ||
import org.elasticsearch.index.mapper.NumberFieldMapper; | ||
import org.elasticsearch.index.mapper.TextFieldMapper.TextFieldType; | ||
import org.elasticsearch.search.aggregations.AggregatorTestCase; | ||
import org.elasticsearch.search.aggregations.metrics.min.Min; | ||
import org.elasticsearch.search.aggregations.metrics.min.MinAggregationBuilder; | ||
|
||
import java.io.IOException; | ||
|
||
public class SamplerAggregatorTests extends AggregatorTestCase { | ||
/** | ||
* Uses the sampler aggregation to find the minimum value of a field out of the top 3 scoring documents in a search. | ||
*/ | ||
public void testSampler() throws IOException { | ||
TextFieldType textFieldType = new TextFieldType(); | ||
textFieldType.setIndexAnalyzer(new NamedAnalyzer("foo", AnalyzerScope.GLOBAL, new StandardAnalyzer())); | ||
MappedFieldType numericFieldType = new NumberFieldMapper.NumberFieldType(NumberFieldMapper.NumberType.LONG); | ||
numericFieldType.setName("int"); | ||
|
||
try (Directory dir = newDirectory(); | ||
RandomIndexWriter w = new RandomIndexWriter(random(), dir)) { | ||
for (long value : new long[] {7, 3, -10, -6, 5, 50}) { | ||
Document doc = new Document(); | ||
StringBuilder text = new StringBuilder(); | ||
for (int i = 0; i < value; i++) { | ||
text.append("good "); | ||
} | ||
doc.add(new Field("text", text.toString(), textFieldType)); | ||
doc.add(new SortedNumericDocValuesField("int", value)); | ||
w.addDocument(doc); | ||
} | ||
|
||
SamplerAggregationBuilder aggBuilder = new SamplerAggregationBuilder("sampler") | ||
.shardSize(3) | ||
.subAggregation(new MinAggregationBuilder("min") | ||
.field("int")); | ||
try (IndexReader reader = w.getReader()) { | ||
IndexSearcher searcher = new IndexSearcher(reader); | ||
Sampler sampler = searchAndReduce(searcher, new TermQuery(new Term("text", "good")), aggBuilder, textFieldType, | ||
numericFieldType); | ||
Min min = sampler.getAggregations().get("min"); | ||
assertEquals(5.0, min.getValue(), Double.MIN_NORMAL); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. s/Double.MIN_NORMAL/0/ ? the computation of the min value should not be subject to accuracy issues. |
||
} | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not super comfortable about exposing this but I can't think of a much better way to actually close the aggregations during testing without reworking aggregations to make parent aggs close their subaggregations.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we could do
searchContext.clearReleasables(Lifetime.PHASE)
like the main code does since all aggregators are supposed to register themselves on to the search context.