Skip to content
Draft
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 @@ -57,9 +57,11 @@ public final class MergeSchedulerConfig {
Property.Dynamic,
Property.IndexScope
);
private static final boolean isSnapshot = org.elasticsearch.Build.current().isSnapshot();
public static final Setting<Boolean> AUTO_THROTTLE_SETTING = Setting.boolSetting(
"index.merge.scheduler.auto_throttle",
true,
// default to false in snapshot for testing
isSnapshot == false,
Copy link
Contributor

@ChrisHegarty ChrisHegarty Nov 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Turning merge throttling off for snapshot builds is a great start to help us determine the potential impact of this across different benchmarks. 👍

Property.Dynamic,
Property.IndexScope
);
Expand Down