Skip to content

Commit

Permalink
Fix SimpleNestedExplainIT.testExplainMultipleDocs flakiness (#12776)
Browse files Browse the repository at this point in the history
Signed-off-by: Neetika Singhal <[email protected]>
(cherry picked from commit 4010ff1)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Mar 22, 2024
1 parent 0646e90 commit 71ac8ed
Showing 1 changed file with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
*/
public class SimpleNestedExplainIT extends OpenSearchIntegTestCase {

@Override
protected int numberOfShards() {
return 1;
}

/*
* Tests the explain output for multiple docs. Concurrent search with multiple slices is tested
* here as call to indexRandomForMultipleSlices is made and compared with explain output for
Expand Down Expand Up @@ -70,7 +75,23 @@ public void testExplainMultipleDocs() throws Exception {
.setRefreshPolicy(IMMEDIATE)
.get();

indexRandomForMultipleSlices("test");
client().prepareIndex("test")
.setId("2")
.setSource(
jsonBuilder().startObject()
.field("field1", "value2")
.startArray("nested1")
.startObject()
.field("n_field1", "n_value2")
.endObject()
.startObject()
.field("n_field1", "n_value2")
.endObject()
.endArray()
.endObject()
)
.setRefreshPolicy(IMMEDIATE)
.get();

// Turn off the concurrent search setting to test search with non-concurrent search
client().admin()
Expand Down

0 comments on commit 71ac8ed

Please sign in to comment.