my current luster configuration settings look like this :
{
"persistent": {
"indices": {
"store": {
"throttle": {
"type": "none",
"max_bytes_per_sec": "150mb"
}
}
}
},
"transient": {}
}
and am wondering how can i delete the "max_bytes_per_sec" part of the settings.
could you please advise on this one ?
Resetting persistent or transient settings can be done by assigning a null value.
Refer: https://www.elastic.co/guide/en/elasticsearch/reference/5.5/cluster-update-settings.html
in your case it would be
PUT /_cluster/settings
{
"persistent" : {
"indices.store.throttle.max_bytes_per_sec" : null
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With