forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[7.x] Fix circuit breaker leak in MultiTerms aggregation (elastic#79362…
…) (elastic#79421) The MultiTermsAggregator creates a BytesKeyedBucketOrds that never gets closed and therefore it might leak the memory allocated into the circuit breaker.
- Loading branch information
Showing
5 changed files
with
104 additions
and
3 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
94 changes: 94 additions & 0 deletions
94
...est/java/org/elasticsearch/xpack/analytics/multiterms/MultiTermsWithRequestBreakerIT.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,94 @@ | ||
/* | ||
* 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.stream.IntStream; | ||
|
||
/** | ||
* test forked from CardinalityWithRequestBreakerIT | ||
*/ | ||
public class MultiTermsWithRequestBreakerIT extends ESIntegTestCase { | ||
|
||
protected Collection<Class<? extends Plugin>> nodePlugins() { | ||
return org.elasticsearch.core.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", "_doc") | ||
.setId("id_" + i) | ||
.setSource(org.elasticsearch.core.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( | ||
org.elasticsearch.core.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() | ||
} | ||
} |
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