From 69ea45befd2ba777f65daa4f88893ae6f191b1a5 Mon Sep 17 00:00:00 2001 From: gchaps <33642766+gchaps@users.noreply.github.com> Date: Fri, 20 Sep 2019 07:41:08 -0700 Subject: [PATCH] [DOCS] Adds breaking changes for 7.4 (#46195) --- docs/migration/migrate_7_4.asciidoc | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/docs/migration/migrate_7_4.asciidoc b/docs/migration/migrate_7_4.asciidoc index 695ad7350477..159e74c191ca 100644 --- a/docs/migration/migrate_7_4.asciidoc +++ b/docs/migration/migrate_7_4.asciidoc @@ -19,6 +19,19 @@ The following section is re-used in the Installation and Upgrade Guide //// // tag::notable-breaking-changes[] -coming[7.4.0] +[float] +[[breaking_74_search_instead_of-msearch]] +=== Use search instead of msearch when batching is disabled + +*Details:* +When the advanced setting `courier:batchSearches` is disabled, we +previously sent the search requests as `_msearch` requests. +We now use `_search` when batching is disabled. + +*Impact:* +When the advanced setting `courier:batchSearches` is disabled, +requests from *Discover*, *Visualize*, and *Dashboard* will now query {es} +using the `_search` endpoint rather than the `_msearch` endpoint. + // end::notable-breaking-changes[]