Difference between revisions of "GET / cluster/settings"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
* <code>[[GET /_cluster/settings?include_defaults]]</code>
 
* <code>[[GET /_cluster/settings?include_defaults]]</code>
* [[Disk section: GET /_cluster/settings?include_defaults]]
+
* [[Disk section]]: <code>[[Disk section: GET /_cluster/settings?include_defaults|GET /_cluster/settings?include_defaults]]</code>
  
  

Revision as of 07:15, 4 November 2022


      "disk": {
           "threshold_enabled": "true",
           "watermark": {
             "flood_stage": "95%",
             "high": "90%",
             "low": "85%",
             "enable_for_single_data_node": "false"
           },


/_cluster/settings
{"persistent":{},"transient":{}}
/my-index-000001/_doc/



curl -XPUT localhost:9200/_cluster/settings -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 localhost:9200/_cluster/settings -d '{
    "transient" : {
        "cluster.routing.allocation.disk.threshold_enabled" : false
    }
}'

Related


cluster.routing.allocation.disk.watermark.low
cluster.routing.allocation.disk.watermark.high
cluster.routing.allocation.disk.watermark.flood_stage

See also

  • https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-templates.html
  • Advertising: