What is the use of maintaining two aliases for a single Elastic Search Index
问题 I have been exploring Elastic Search lately. I have been going through aliases. I see ES provides an API to create multiple aliases to a single index like below: { "actions" : [{ "add" : { "indices" : ["test1", "test2"], "alias" : "alias1" } }] } Refer: https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html#indices-aliases I'm wondering what is the use case of this. Won't the queries on aliases get split if an alias point to multiple indices? I have tried getting