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 SimpleNestedExplainIT.testExplainMultipleDocs flakiness #12776

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Changes from all 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 @@ -30,6 +30,11 @@
*/
public class SimpleNestedExplainIT extends OpenSearchIntegTestCase {

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

dblock marked this conversation as resolved.
Show resolved Hide resolved
/*
* 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")
dblock marked this conversation as resolved.
Show resolved Hide resolved
.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
Loading