I am running ES 2.3. I am trying to specify some settings in my yaml file as
indices.fielddata.cache.size:40%
and i try to
get /_cluster/settings
i get no results back. However, if i do
PUT /_cluster/settings
{
"persistent" : {
"indices.breaker.fielddata.limit" : "40%"
}
}
and then
get /_cluster/settings
i get
{
"persistent": {
"indices": {
"breaker": {
"fielddata": {
"limit": "40%"
}
}
}
},
"transient": {}
}
why did the settings not get loaded from the yml file? Especially, since everything else works, i mean i am able to connect to the cluster and do everything else.
Is there a way to check which settings from the yml file were actually loaded?