ES version: 7.6.1
I have mentioned the number of routing shards while index creation as below
PUT my_source_index
{
"settings": {
"index.number_of_shards" : 9,
"index.number_of_routing_shards" : 27
}
}
After creation of index, I tried verifying routing shard count using below command
GET my_source_index/_settings?include_defaults
But it was giving the count as 1.
"number_of_routing_shards" : "1"
Could you help me here on how to get the actual routing shard for an index?
Also let me know whether routing shards is removed in 7.x and can i split the 9 shard index to 27 shard index if i didn't specify number_of_routing_shards while creating the source index.