I have a question about Elasticsearch.
If I have 2 indices IndexA and IndexB.
I put document docA with id "1" in IndexA, and I put document docB with id "1" in IndexB. The documents are of same doc type but different body (same structure but different values).
What will happen if I create an alias "alias1" which points to both IndexA and IndexB and do a get request of the following?
response = es_client.get(index="alias1", doc_type="doc_type", id="1")