Merge pull request #4399 from styshoo/master

enable es v7 TrackTotalHits parameter, make sure kubesphere cosole wo…
This commit is contained in:
KubeSphere CI Bot
2021-10-30 21:51:20 +08:00
committed by GitHub

View File

@@ -62,6 +62,7 @@ func (e *Elastic) Search(indices string, body []byte, scroll bool) ([]byte, erro
opts := []func(*esapi.SearchRequest){
e.client.Search.WithContext(context.Background()),
e.client.Search.WithIndex(indices),
e.client.Search.WithTrackTotalHits(true),
e.client.Search.WithIgnoreUnavailable(true),
e.client.Search.WithBody(bytes.NewBuffer(body)),
}