I am running DELETE /<index_name> command from kibana. I get acknowledged:true response from kibana but Instead of the index getting deleted, i see that a replica shard appears instead while the primary index also stays. This is very strange and i cant wrap my head around what might be happening and how can i delete those indexes.
Details:
Kibana/Elastic version: 7.1.1
Licence: basic
Template for indexes in consideration: none
cluster settings:
{
"persistent" : {
"cluster" : {
"routing" : {
"rebalance" : {
"enable" : "none"
},
"allocation" : {
"enable" : "new_primaries",
"exclude" : {
"_ip" : "10.147.112.108,10.147.118.67,10.147.120.51"
}
}
}
}
},
"transient" : {
"cluster" : {
"routing" : {
"rebalance" : {
"enable" : "none"
},
"allocation" : {
"enable" : "new_primaries",
"exclude" : {
"_ip" : "10.147.112.108,10.147.118.67,10.147.120.51"
}
}
}
}
}
}
The new indexes are on the nodes not excluded from primary creation as in the settings.
How can i delete those indexes.