Search v/s MultiSearch

I am using Elastic Search v2.4.0.
I want to perform search on different indices.
Which operation, out of SEARCH (Sequential) or MULTI-SEARCH (using thread-pool), can we perform for multiple searches on different indices in a multi-threaded environment.
Can you please recommend which operation will be more thread-friendly and faster?

I very usefull to perform multisearches when it's possible to build all queries and then send them to the server.
Just be aware to do not send too many queries in your bulk. I depends on your cluster size, number of indices, etc.
Run test-cases if you can.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.