From b740446514586fc984a4e161cf68fb787f703707 Mon Sep 17 00:00:00 2001 From: kezhenxu94 Date: Wed, 20 Nov 2019 23:26:47 +0800 Subject: [PATCH] Polish documentations --- docs/en/setup/backend/backend-storage.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/en/setup/backend/backend-storage.md b/docs/en/setup/backend/backend-storage.md index 5cf93d27bfe4..c1e6ee180899 100644 --- a/docs/en/setup/backend/backend-storage.md +++ b/docs/en/setup/backend/backend-storage.md @@ -69,10 +69,13 @@ and there're also some configurations that are ES7 specific, as follows: ```yaml storage: - # Index max result window, for segment deep pagination, usually we don't recommend to scroll too many pages, - # instead, give more query criteria (e.g. service id or time range), to narrow the query results. - # see https://www.elastic.co/guide/en/elasticsearch/guide/current/pagination.html for more information - indexMaxResultWindow: ${SW_STORAGE_ES_INDEX_MAX_RESULT_WINDOW:5000} + elasticsearch7: + # ... the configurations shared with ES6 that are listed above ... + + # Index max result window, for segment deep pagination, usually we don't recommend to scroll too many pages, + # instead, give more query criteria (e.g. service id or time range), to narrow the query results. + # see https://www.elastic.co/guide/en/elasticsearch/guide/current/pagination.html for more information + indexMaxResultWindow: ${SW_STORAGE_ES_INDEX_MAX_RESULT_WINDOW:5000} ``` ### ElasticSearch 6 With Https SSL Encrypting communications.