-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable concurrent search path for composite aggregations. For more d…
…etails see: #12331 (#12375) Signed-off-by: Sorabh Hamirwasia <sohami.apache@gmail.com> (cherry picked from commit 74589ef) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
247c08e
commit 50abe8f
Showing
3 changed files
with
102 additions
and
1 deletion.
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
99 changes: 99 additions & 0 deletions
99
...rc/internalClusterTest/java/org/opensearch/search/aggregations/bucket/CompositeAggIT.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,99 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.search.aggregations.bucket; | ||
|
||
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory; | ||
|
||
import org.opensearch.action.search.SearchResponse; | ||
import org.opensearch.cluster.health.ClusterHealthStatus; | ||
import org.opensearch.cluster.metadata.IndexMetadata; | ||
import org.opensearch.common.settings.Settings; | ||
import org.opensearch.search.aggregations.bucket.composite.CompositeAggregationBuilder; | ||
import org.opensearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder; | ||
import org.opensearch.search.aggregations.bucket.composite.TermsValuesSourceBuilder; | ||
import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder; | ||
import org.opensearch.test.OpenSearchIntegTestCase; | ||
import org.opensearch.test.ParameterizedStaticSettingsOpenSearchIntegTestCase; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import static org.opensearch.search.SearchService.CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING; | ||
import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertAcked; | ||
import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertSearchResponse; | ||
|
||
@OpenSearchIntegTestCase.SuiteScopeTestCase | ||
public class CompositeAggIT extends ParameterizedStaticSettingsOpenSearchIntegTestCase { | ||
|
||
public CompositeAggIT(Settings staticSettings) { | ||
super(staticSettings); | ||
} | ||
|
||
@ParametersFactory | ||
public static Collection<Object[]> parameters() { | ||
return Arrays.asList( | ||
new Object[] { Settings.builder().put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), false).build() }, | ||
new Object[] { Settings.builder().put(CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING.getKey(), true).build() } | ||
); | ||
} | ||
|
||
@Override | ||
public void setupSuiteScopeCluster() throws Exception { | ||
assertAcked( | ||
prepareCreate( | ||
"idx", | ||
Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0) | ||
).setMapping("type", "type=keyword", "num", "type=integer", "score", "type=integer") | ||
); | ||
waitForRelocation(ClusterHealthStatus.GREEN); | ||
|
||
client().prepareIndex("idx").setId("1").setSource("type", "type1", "num", "1", "score", "5").get(); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type2", "num", "11", "score", "50").get(); | ||
refresh("idx"); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type1", "num", "1", "score", "2").get(); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type2", "num", "12", "score", "20").get(); | ||
refresh("idx"); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type1", "num", "3", "score", "10").get(); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type2", "num", "13", "score", "15").get(); | ||
refresh("idx"); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type1", "num", "3", "score", "1").get(); | ||
client().prepareIndex("idx").setId("1").setSource("type", "type2", "num", "13", "score", "100").get(); | ||
refresh("idx"); | ||
|
||
waitForRelocation(ClusterHealthStatus.GREEN); | ||
refresh(); | ||
} | ||
|
||
public void testCompositeAggWithNoSubAgg() { | ||
SearchResponse rsp = client().prepareSearch("idx") | ||
.addAggregation(new CompositeAggregationBuilder("my_composite", getTestValueSources())) | ||
.get(); | ||
assertSearchResponse(rsp); | ||
} | ||
|
||
public void testCompositeAggWithSubAgg() { | ||
SearchResponse rsp = client().prepareSearch("idx") | ||
.addAggregation( | ||
new CompositeAggregationBuilder("my_composite", getTestValueSources()).subAggregation( | ||
new MaxAggregationBuilder("max").field("score") | ||
) | ||
) | ||
.get(); | ||
assertSearchResponse(rsp); | ||
} | ||
|
||
private List<CompositeValuesSourceBuilder<?>> getTestValueSources() { | ||
final List<CompositeValuesSourceBuilder<?>> sources = new ArrayList<>(); | ||
sources.add(new TermsValuesSourceBuilder("keyword_vs").field("type")); | ||
sources.add(new TermsValuesSourceBuilder("num_vs").field("num")); | ||
return sources; | ||
} | ||
} |
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