From 41effbdbf839ef4775a306e6378e43eeb11260bc Mon Sep 17 00:00:00 2001 From: Marios Trivyzas Date: Fri, 31 May 2019 11:26:52 +0200 Subject: [PATCH] [Docs] Mention search related deprecations Add deprecation entries for 7.3 regarding `common` query and `cutoff_frequency` parameter. Follows: #42691 --- docs/reference/migration/migrate_7_3.asciidoc | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/reference/migration/migrate_7_3.asciidoc b/docs/reference/migration/migrate_7_3.asciidoc index ef205b1c60f4b..ee23c1f772e90 100644 --- a/docs/reference/migration/migrate_7_3.asciidoc +++ b/docs/reference/migration/migrate_7_3.asciidoc @@ -38,4 +38,22 @@ appropriate. ==== IndexStorePlugin changes IndexStore and DirectoryService have been replaced by a stateless and simple -DirectoryFactory interface to create custom Lucene directory instances per shard. \ No newline at end of file +DirectoryFactory interface to create custom Lucene directory instances per shard. + + +[float] +[[breaking_73_search_changes]] +=== Search Changes + +[float] +==== Deprecation of queries + +The `common` query has been deprecated. The same functionality can be achieved +by the `match` query if the total number of hits is not tracked. + +[float] +===== Deprecation of query parameters + +The `cutoff_frequency` parameter has been deprecated for `match` and `multi_match` +queries. The same functionality can be achieved without any configuration provided +that the total number of hits is not tracked.