You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Unless I'm missing something, it appears to not be possible to perform a multisearch/multiget with different types from different indices in the same request
I guess the response type would have to be MultiSearchResponse<object>.
Describe alternatives you've considered
Currently I do two requests and use Task.WhenAll(), which works but seems like it causes an unnecessary workload for Elastic.
The text was updated successfully, but these errors were encountered:
Related, but not quite. In this case I only need the same filter type as output type, but different for each query. Though using different filter and output types for multi as well is a natural improvement that would certainly be useful.
Is your feature request related to a problem? Please describe.
Unless I'm missing something, it appears to not be possible to perform a multisearch/multiget with different types from different indices in the same request
Describe the solution you'd like
Something like
I guess the response type would have to be
MultiSearchResponse<object>
.Describe alternatives you've considered
Currently I do two requests and use
Task.WhenAll()
, which works but seems like it causes an unnecessary workload for Elastic.The text was updated successfully, but these errors were encountered: