I am querying elasticsearch for multiple parallel requests using single transport client instance in my application.
I got the below exception for the parallel execu
I saw this same error because I was sending lots of indexing requests in to ES in parallel. Since I'm writing a data migration, it was easy enough to make them serial, and that resolved the issue.