From 54909b77f9ad644c2eae84c81fe2f0367dd1db0a Mon Sep 17 00:00:00 2001 From: James Rodewig <40268737+jrodewig@users.noreply.github.com> Date: Mon, 20 Sep 2021 09:26:49 -0400 Subject: [PATCH] [DOCS] Note exclusive force merge API options You can't specify `max_num_segments` and `max_num_segments` in the same request. Relates to PR #44761. --- docs/reference/indices/forcemerge.asciidoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/reference/indices/forcemerge.asciidoc b/docs/reference/indices/forcemerge.asciidoc index 985c9224ead5d..5798025f7f256 100644 --- a/docs/reference/indices/forcemerge.asciidoc +++ b/docs/reference/indices/forcemerge.asciidoc @@ -116,6 +116,8 @@ set it to `1`. Defaults to checking if a merge needs to execute. If so, executes it. + +You can't specify this parameter and `only_expunge_deletes` in the same request. -- `only_expunge_deletes`:: @@ -134,6 +136,7 @@ During a merge, a new segment is created that does not contain those document deletions. +You can't specify this parameter and `max_num_segments` in the same request. --