We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c602d commit 9afbe7dCopy full SHA for 9afbe7d
server/src/main/java/org/elasticsearch/index/engine/ThreadPoolMergeExecutorService.java
@@ -59,7 +59,10 @@ public class ThreadPoolMergeExecutorService implements Closeable {
59
/** How frequently we check disk usage (default: 5 seconds). */
60
public static final Setting<TimeValue> INDICES_MERGE_DISK_CHECK_INTERVAL_SETTING = Setting.positiveTimeSetting(
61
"indices.merge.disk.check_interval",
62
- TimeValue.timeValueSeconds(5),
+ // disabled by default
63
+ // there's currently a problem where (aborting) merges are blocked when shards are closed (because disk space is insufficient)
64
+ // see: https://github.com/elastic/elasticsearch/issues/129335
65
+ TimeValue.timeValueSeconds(0),
66
Property.Dynamic,
67
Property.NodeScope
68
);
0 commit comments