Skip to content

Commit

Permalink
HSEARCH-3881 Reduce the init batch size in SingleFieldAggregationBaseIT
Browse files Browse the repository at this point in the history
To avoid errors caused by too many requests being sent to Elasticsearch
simultaneously.
  • Loading branch information
yrodiere committed Apr 16, 2020
1 parent 7ee587f commit 2030f67
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@
@RunWith(Parameterized.class)
public class SingleFieldAggregationBaseIT<F> {

private static final int INIT_BATCH_SIZE = 1000;
private static final int INIT_BATCH_SIZE = 500;

private static final String AGGREGATION_NAME = "aggregationName";

Expand Down

0 comments on commit 2030f67

Please sign in to comment.