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 4baa30c commit c7530d2Copy full SHA for c7530d2
server/src/main/java/org/elasticsearch/index/engine/ThreadPoolMergeExecutorService.java
@@ -61,10 +61,7 @@ public class ThreadPoolMergeExecutorService implements Closeable {
61
/** How frequently we check disk usage (default: 5 seconds). */
62
public static final Setting<TimeValue> INDICES_MERGE_DISK_CHECK_INTERVAL_SETTING = Setting.positiveTimeSetting(
63
"indices.merge.disk.check_interval",
64
- // disabled by default
65
- // there's currently a problem where (aborting) merges are blocked when shards are closed (because disk space is insufficient)
66
- // see: https://github.com/elastic/elasticsearch/issues/129335
67
- TimeValue.timeValueSeconds(0),
+ TimeValue.timeValueSeconds(5),
68
Property.Dynamic,
69
Property.NodeScope
70
);
0 commit comments