Skip to content

Commit bc67124

Browse files
authored
Increasng the default value of migrate.data_stream_reindex_max_request_per_second (#120758)
1 parent b88f1ed commit bc67124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/migrate/src/main/java/org/elasticsearch/xpack/migrate/action/ReindexDataStreamIndexTransportAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class ReindexDataStreamIndexTransportAction extends HandledTransportActio
5757

5858
public static final Setting<Float> REINDEX_MAX_REQUESTS_PER_SECOND_SETTING = new Setting<>(
5959
REINDEX_MAX_REQUESTS_PER_SECOND_KEY,
60-
Float.toString(10f),
60+
Float.toString(1000f),
6161
s -> {
6262
if (s.equals("-1")) {
6363
return Float.POSITIVE_INFINITY;

0 commit comments

Comments
 (0)