Hi,
I am trying to modify "search.max_buckets" by:
curl -X PUT "localhost:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
{
"defaults" : {
"search.max_buckets" : "15000"
}
}
'
and I get the below error :
{
"error" : {
"root_cause" : [
{
"type" : "action_request_validation_exception",
"reason" : "Validation Failed: 1: no settings to update;"
}
],
"type" : "action_request_validation_exception",
"reason" : "Validation Failed: 1: no settings to update;"
},
"status" : 400
}
What is the wrong with it?