My ElasticSearch s documents are of high size. My service is Java application and its using ElasticSearch java client version 8. Need to run _msearch query on ES. MultisearchBody don t have field of _source. in ES native query I can do this by below query
{ "query": { "bool": { "must": { "match_all": {} } } }, "size": 10000, "_source": [ "personName" ]}
Not able to figure-out how to do this in ES-java client library version 8?