GET /book-index/_search{"retriever": {"rrf": { // 腾讯云 ES 8.16 写成 rank_fusion,之后版本写成 rrf"retrievers": [{"retriever": {"knn": {"field": "title_vector","query_vector": [0.1, 0.2, 0.3 ...],"k": 10,"num_candidates": 100}},"weight": 0.8},{"retriever": {"standard": {"query": {"match": {"title_text": "人类"}}}},"weight": 0.2}],"rank_window_size": 50,"rank_constant": 20}}}
GET /book-index/_search{"knn":{"field":"content_vector","query_vector": [0.5, 0.6, 0.7 ...],"k":10,"num_candidates": 100},"query":{"match":{"title_text":{"query":"人类"}}},"rank":{"rrf":{"rank_window_size":50,"rank_constant":20}},"size": 10}

文档反馈