I would like to do elastic search bulk get operation with multiple document Id's using python. But I could able to find proper solution.
Code which I'm using to get the single document based on document Id.
import elasticsearch
es=Elasticsearch()
result_dict=es.get(index=indexname, doc_type=doctype,id="TEST")
I would like to get for multiple Id's like : TEST, TEST1, TEST2, etc ...
Any help would appreciated .