[Docs] Mention search related deprecations (#42751)
Add deprecation entries for 7.3 regarding `common` query and `cutoff_frequency` parameter. Follows: #42691
This commit is contained in:
parent
ab6b86bac9
commit
01446ff4bd
|
@ -38,4 +38,22 @@ appropriate.
|
||||||
==== IndexStorePlugin changes
|
==== IndexStorePlugin changes
|
||||||
|
|
||||||
IndexStore and DirectoryService have been replaced by a stateless and simple
|
IndexStore and DirectoryService have been replaced by a stateless and simple
|
||||||
DirectoryFactory interface to create custom Lucene directory instances per shard.
|
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.
|
||||||
|
|
Loading…
Reference in New Issue