From e0eafec89756142edf6cd93a8a9eda5de8e895cd Mon Sep 17 00:00:00 2001 From: Dan Hermann Date: Wed, 2 Sep 2020 15:46:38 -0500 Subject: [PATCH] [DOCS] Update tie_breaker defaults for bool_prefix and most_fields query types (#61112) (#61881) --- docs/reference/query-dsl/multi-match-query.asciidoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/reference/query-dsl/multi-match-query.asciidoc b/docs/reference/query-dsl/multi-match-query.asciidoc index 9a13d6effab..b5a174caded 100644 --- a/docs/reference/query-dsl/multi-match-query.asciidoc +++ b/docs/reference/query-dsl/multi-match-query.asciidoc @@ -503,9 +503,11 @@ per-term `blended` queries. It accepts: [horizontal] `0.0`:: Take the single best score out of (eg) `first_name:will` - and `last_name:will` (*default*) + and `last_name:will` (*default* for all `multi_match` + query types except `bool_prefix` and `most_fields`) `1.0`:: Add together the scores for (eg) `first_name:will` and - `last_name:will` + `last_name:will` (*default* for the `bool_prefix` and + `most_fields` `multi_match` query types) `0.0 < n < 1.0`:: Take the single best score plus +tie_breaker+ multiplied by each of the scores from other matching fields.