Skip to content

Commit fcf0408

Browse files
authored
Reduce the number of fields per document (#132322)
1 parent 9099005 commit fcf0408

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -500,12 +500,6 @@ tests:
500500
- class: org.elasticsearch.test.rest.yaml.MDPYamlTestSuiteIT
501501
method: test {yaml=mdp/10_basic/Index using shared data path}
502502
issue: https://github.com/elastic/elasticsearch/issues/132223
503-
- class: org.elasticsearch.xpack.logsdb.qa.StandardVersusStandardReindexedIntoLogsDbChallengeRestIT
504-
method: testTermsQuery
505-
issue: https://github.com/elastic/elasticsearch/issues/132225
506-
- class: org.elasticsearch.xpack.logsdb.qa.StoredSourceLogsDbVersusReindexedLogsDbChallengeRestIT
507-
method: testTermsQuery
508-
issue: https://github.com/elastic/elasticsearch/issues/132226
509503
- class: org.elasticsearch.xpack.sql.qa.mixed_node.SqlCompatIT
510504
method: testNullsOrderWithMissingOrderSupportQueryingNewNode
511505
issue: https://github.com/elastic/elasticsearch/issues/132249

x-pack/plugin/logsdb/src/javaRestTest/java/org/elasticsearch/xpack/logsdb/qa/StandardVersusLogsIndexModeChallengeRestIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public abstract class StandardVersusLogsIndexModeChallengeRestIT extends Abstrac
6060
protected final DataGenerationHelper dataGenerationHelper;
6161

6262
public StandardVersusLogsIndexModeChallengeRestIT() {
63-
this(new DataGenerationHelper());
63+
this(new DataGenerationHelper(builder -> builder.withMaxFieldCountPerLevel(30)));
6464
}
6565

6666
protected StandardVersusLogsIndexModeChallengeRestIT(DataGenerationHelper dataGenerationHelper) {

0 commit comments

Comments
 (0)