Skip to content
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

Fix circuit breaker leak in MultiTerms aggregation #79362

Merged
merged 5 commits into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from 4 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 @@ -471,7 +471,7 @@ protected <A extends InternalAggregation, C extends Aggregator> A searchAndReduc
indexSettings,
query,
breakerService,
builder.bytesToPreallocate(),
randomBoolean() ? 0 : builder.bytesToPreallocate(),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice

maxBucket,
fieldTypes
);
Expand Down
2 changes: 2 additions & 0 deletions x-pack/plugin/analytics/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'elasticsearch.internal-es-plugin'
apply plugin: 'elasticsearch.internal-cluster-test'

esplugin {
name 'x-pack-analytics'
description 'Elasticsearch Expanded Pack Plugin - Analytics'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/

package org.elasticsearch.xpack.analytics.multiterms;

import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.ExceptionsHelper;
import org.elasticsearch.action.index.IndexRequestBuilder;
import org.elasticsearch.common.breaker.CircuitBreakingException;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService;
import org.elasticsearch.plugins.Plugin;
import org.elasticsearch.search.aggregations.support.MultiValuesSourceFieldConfig;
import org.elasticsearch.test.ESIntegTestCase;
import org.elasticsearch.xpack.analytics.AnalyticsPlugin;

import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.stream.IntStream;

/**
* test forked from CardinalityWithRequestBreakerIT
*/
public class MultiTermsWithRequestBreakerIT extends ESIntegTestCase {

protected Collection<Class<? extends Plugin>> nodePlugins() {
return List.of(AnalyticsPlugin.class);
}

/**
* Test that searches using multiterms aggregations returns all request breaker memory.
*/
public void testRequestBreaker() throws Exception {
final String requestBreaker = randomIntBetween(1, 10000) + "kb";
logger.info("--> Using request breaker setting: {}", requestBreaker);

indexRandom(
true,
IntStream.range(0, randomIntBetween(10, 1000))
.mapToObj(
i -> client().prepareIndex("test")
.setId("id_" + i)
.setSource(Map.of("field0", randomAlphaOfLength(5), "field1", randomAlphaOfLength(5)))
)
.toArray(IndexRequestBuilder[]::new)
);

client().admin()
.cluster()
.prepareUpdateSettings()
.setPersistentSettings(
Settings.builder().put(HierarchyCircuitBreakerService.REQUEST_CIRCUIT_BREAKER_LIMIT_SETTING.getKey(), requestBreaker)
)
.get();

try {
client().prepareSearch("test")
.addAggregation(
new MultiTermsAggregationBuilder("xxx").terms(
List.of(
new MultiValuesSourceFieldConfig.Builder().setFieldName("field0.keyword").build(),
new MultiValuesSourceFieldConfig.Builder().setFieldName("field1.keyword").build()
)
)
)
.get();
} catch (ElasticsearchException e) {
if (ExceptionsHelper.unwrap(e, CircuitBreakingException.class) == null) {
throw e;
}
}

client().admin()
.cluster()
.prepareUpdateSettings()
.setPersistentSettings(
Settings.builder().putNull(HierarchyCircuitBreakerService.REQUEST_CIRCUIT_BREAKER_LIMIT_SETTING.getKey())
)
.get();

// validation done by InternalTestCluster.ensureEstimatedStats()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.core.CheckedConsumer;
import org.elasticsearch.core.Releasables;
import org.elasticsearch.index.fielddata.SortedBinaryDocValues;
import org.elasticsearch.index.fielddata.SortedNumericDoubleValues;
import org.elasticsearch.search.DocValueFormat;
Expand Down Expand Up @@ -110,7 +111,6 @@ protected MultiTermsAggregator(
.collect(Collectors.toList());
keyConverters = values.stream().map(TermValuesSource::keyConverter).collect(Collectors.toList());
bucketOrds = BytesKeyedBucketOrds.build(context.bigArrays(), cardinality);

}

private boolean subAggsNeedScore() {
Expand Down Expand Up @@ -220,6 +220,11 @@ public void accept(Integer start) throws IOException {
};
}

@Override
protected void doClose() {
Releasables.close(bucketOrds);
}

@Override
public InternalAggregation[] buildAggregations(long[] owningBucketOrds) throws IOException {
InternalMultiTerms.Bucket[][] topBucketsPerOrd = new InternalMultiTerms.Bucket[owningBucketOrds.length][];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected CategorizeTextAggregator(
@Override
protected void doClose() {
super.doClose();
Releasables.close(this.analyzer, this.bytesRefHash);
Releasables.close(this.analyzer, this.bytesRefHash, this.bucketOrds, this.categorizers);
}

@Override
Expand Down