From 453a4b9647753c8179b51a7787d604b2ae71720b Mon Sep 17 00:00:00 2001 From: Tanguy Leroux Date: Mon, 27 Jun 2016 14:49:37 +0200 Subject: [PATCH] Fix documentation typo in How-To docs --- docs/reference/how-to/indexing-speed.asciidoc | 2 +- docs/reference/how-to/search-speed.asciidoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/how-to/indexing-speed.asciidoc b/docs/reference/how-to/indexing-speed.asciidoc index 8175c21ee8a..bb5a367a04c 100644 --- a/docs/reference/how-to/indexing-speed.asciidoc +++ b/docs/reference/how-to/indexing-speed.asciidoc @@ -28,7 +28,7 @@ help reduce the cost of each fsync. Make sure to watch for `TOO_MANY_REQUESTS (429)` response codes (`EsRejectedExecutionException` with the Java client), which is the way that elasticsearch tells you that it cannot keep up with the current indexing rate. -When it happens, you should pause ndexing a bit before trying again, ideally +When it happens, you should pause indexing a bit before trying again, ideally with randomized exponential backoff. Similarly to sizing bulk requests, only testing can tell what the optimal diff --git a/docs/reference/how-to/search-speed.asciidoc b/docs/reference/how-to/search-speed.asciidoc index b6e9c4e927d..67848c9edca 100644 --- a/docs/reference/how-to/search-speed.asciidoc +++ b/docs/reference/how-to/search-speed.asciidoc @@ -190,5 +190,5 @@ depending on the file extension using the <> setting. WARNING: Loading data into the filesystem cache eagerly on too many indices or -too many files will make searh _slower_ if the filesystem cache is not large +too many files will make search _slower_ if the filesystem cache is not large enough to hold all the data. Use with caution.