Created
August 24, 2023 17:46
-
-
Save GiveMeSomething/ddea34d3a75267d9720f6f9b1c981a2c to your computer and use it in GitHub Desktop.
Patch Kibana low watermark
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -X PUT "localhost:9200/_cluster/settings" -H 'Content-Type: application/json' -d' | |
{ | |
"transient": { | |
"cluster.routing.allocation.disk.watermark.low": "30mb", | |
"cluster.routing.allocation.disk.watermark.high": "20mb", | |
"cluster.routing.allocation.disk.watermark.flood_stage": "10mb", | |
"cluster.info.update.interval": "1m" | |
} | |
} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment