Open erik-kallen opened 1 month ago
This sounds a little bit like the "multi" version of what's described in #7792
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.