From 93505cc05f2057e6a39ce24897bac136690713dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Zolt=C3=A1n=20Szab=C3=B3?= Date: Tue, 17 Nov 2020 10:45:28 +0100 Subject: [PATCH] [DOCS] Adds recommendation about when to use chunking_config in manual mode. (#65060) (#65083) --- docs/reference/ml/ml-shared.asciidoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/reference/ml/ml-shared.asciidoc b/docs/reference/ml/ml-shared.asciidoc index 88f529e03fa..7c2bcc934e2 100644 --- a/docs/reference/ml/ml-shared.asciidoc +++ b/docs/reference/ml/ml-shared.asciidoc @@ -968,8 +968,9 @@ There are three available modes: + -- * `auto`: The chunk size is dynamically calculated. This is the default and -recommended value. -* `manual`: Chunking is applied according to the specified `time_span`. +recommended value when the {dfeed} does not use aggregations. +* `manual`: Chunking is applied according to the specified `time_span`. Use this +mode when the {dfeed} uses aggregations. * `off`: No chunking is applied. -- end::mode[]