Difference between revisions of "Curl -XPUT"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
[[curl -XPUT]] --insecure https://localhost:9200/_cluster/settings -u "elastic:yourpasss" -H 'Content-Type: application/json' -d '{ | [[curl -XPUT]] --insecure https://localhost:9200/_cluster/settings -u "elastic:yourpasss" -H 'Content-Type: application/json' -d '{ | ||
"transient" : { | "transient" : { | ||
− | " | + | "[“cluster.routing.allocation.disk.watermark.low]]" : "90%", |
"cluster.routing.allocation.disk.watermark.high" : "95%", | "cluster.routing.allocation.disk.watermark.high" : "95%", | ||
"cluster.routing.allocation.disk.watermark.flood_stage" : "98%" | "cluster.routing.allocation.disk.watermark.flood_stage" : "98%" |
Revision as of 08:27, 20 October 2022
curl -s -i -k -XPUT -u elastic:yourpass" https://elasticsearch-master:9200/_snapshot/your_repo/%3Csnapshot-%7Bnow%2Fd%7D%3E"
- Create index:
curl -XPUT 'www.example.com:9200/myIndexName?pretty'
- Modify index properties:
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 localhost:9200/_cluster/settings -d '{ "transient" : { "cluster.routing.allocation.disk.threshold_enabled" : false } }'
See also
Advertising: