File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/test/java/org/springframework/data/elasticsearch Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 30
30
* @author Artur Konczak
31
31
* @author Ilkang Na
32
32
* @author Peter-Josef Meisch
33
+ * @author Roman Puchkovskiy
33
34
*/
34
35
public class Utils {
35
36
@@ -46,6 +47,11 @@ public static Node getNode() {
46
47
.put ("path.data" , pathData ) //
47
48
.put ("cluster.name" , clusterName ) //
48
49
.put ("node.max_local_storage_nodes" , 100 )//
50
+ // the following 3 settings are needed to avoid problems on big, but
51
+ // almost full filesystems, see DATAES-741
52
+ .put ("cluster.routing.allocation.disk.watermark.low" , "1gb" )//
53
+ .put ("cluster.routing.allocation.disk.watermark.high" , "1gb" )//
54
+ .put ("cluster.routing.allocation.disk.watermark.flood_stage" , "1gb" )//
49
55
.build (), //
50
56
Collections .singletonList (Netty4Plugin .class ));
51
57
}
You can’t perform that action at this time.
0 commit comments