Difference between revisions of "Low disk watermark"

From wikieduonline
Jump to navigation Jump to search
Line 13: Line 13:
 
     }
 
     }
 
  }'
 
  }'
 +
 +
[[curl -XPUT]] --insecure https://localhost:9200/_cluster/settings -u "elastic:yourpasss" -H 'Content-Type: application/json' -d '{ "transient" : { "cluster.routing.allocation.disk.watermark.low" : "90%", "cluster.routing.allocation.disk.watermark.high" : "95%", "cluster.routing.allocation.disk.watermark.flood_stage" : "98%"} }'
  
  

Revision as of 08:38, 19 October 2022


https://stackoverflow.com/questions/33369955/low-disk-watermark-exceeded-on


curl -XPUT --insecure https://localhost:9200/_cluster/settings -u "elastic:yourpasss" -H 'Content-Type: application/json' -d '{
    "transient" : {
"cluster.routing.allocation.disk.watermark.low" : "90%", 
"cluster.routing.allocation.disk.watermark.high" : "95%",
"cluster.routing.allocation.disk.watermark.flood_stage" : "98%"
    }
}'
curl -XPUT --insecure https://localhost:9200/_cluster/settings -u "elastic:yourpasss" -H 'Content-Type: application/json' -d '{ "transient" : { "cluster.routing.allocation.disk.watermark.low" : "90%", "cluster.routing.allocation.disk.watermark.high" : "95%", "cluster.routing.allocation.disk.watermark.flood_stage" : "98%"} }'


https://stackoverflow.com/questions/33369955/low-disk-watermark-exceeded-on

cluster.routing.allocation.disk.watermark.low
cluster.routing.allocation.disk.watermark.high
cluster.routing.allocation.disk.watermark.flood_stage
/etc/elasticsearch/elasticsearch.yml


curl -XPUT localhost:9200/_cluster/settings -d '{
    "transient" : {
        "cluster.routing.allocation.disk.threshold_enabled" : false
    }
}'

See also

Advertising: