deleted please disregard
I also encountered the same problem. How did you solve it?
@jdomkline Could you tell me how did you solve this? I could not find the query param which can be used for “search_pipeline” while sending a request using java client.
@Leonxs I am also looking to solve this. Have you got any info on this?
I closed this because a similar ticket was created the same day. As a patch I made this class, which is a redo of SearchRequest.java
@Leonxs @Sheel
HybridSearchRequest.Builder requestBuilder = new HybridSearchRequest.Builder()
.index(SearchUtil.resolveIndex(config,
lang, cntry, tnt))
.fields(returnFields)
.from(offset.intValue())
.size(Math.toIntExact(limit));
requestBuilder.searchPipeline(searchConfig.getHybridSearchPipelineLexWeight());
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.