Hi,
I was trying to update the index settings of kibana-int index with blocks.read_only to true.
{
"index" : {
"blocks.read_only" : false
}
}
Instead I mistakenly did this:
{
"index" : {
"index.blocks.read_only" : false
}
}
So, my settings are looking like this currently:
{
kibana-int: {
settings: {
index: {
index: {
blocks: {
write: false
read_only: false
}
}
blocks: {
write: false
read_only: false
}
uuid: hrUNUO3_TsSxJLrDdwXQ6A
number_of_replicas: 1
number_of_shards: 5
version: {
created: 1010199
}
}
}
}
}
I am able to modify index.block entries to true/false.
But how can I delete the index.blocks entries permanently from the index settings?
Thanks.