Skip to content

Commit 061e2ad

Browse files
committed
Reduce maximum max-to-track
1 parent be8a38b commit 061e2ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/cluster/routing/allocation/allocator/UndesiredAllocationsTracker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ public class UndesiredAllocationsTracker {
6363
);
6464

6565
/**
66-
* The max number of undesired allocations to track. We expect this to be relatively small.
66+
* The maximum number of undesired allocations to track. We expect this to be relatively small.
6767
*/
6868
public static final Setting<Integer> MAX_UNDESIRED_ALLOCATIONS_TO_TRACK = Setting.intSetting(
6969
"cluster.routing.allocation.desired_balance.undesired_duration_logging.max_to_track",
7070
0,
7171
0,
72-
200,
72+
100,
7373
Setting.Property.Dynamic,
7474
Setting.Property.NodeScope
7575
);

0 commit comments

Comments
 (0)