From 8e9b30417c14334d870dedbc71b8991ddac7f37f Mon Sep 17 00:00:00 2001 From: Boris Tyukin Date: Mon, 6 Nov 2017 11:29:48 -0500 Subject: [PATCH] Update to support bulk updates by query (#27172) Getting started doc stated that bulk updates by query are not supported but they are now --- docs/reference/getting-started.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/getting-started.asciidoc b/docs/reference/getting-started.asciidoc index f72d08397a1..b738c1c6186 100755 --- a/docs/reference/getting-started.asciidoc +++ b/docs/reference/getting-started.asciidoc @@ -586,7 +586,7 @@ POST /customer/doc/1/_update?pretty In the above example, `ctx._source` refers to the current source document that is about to be updated. -Note that as of this writing, updates can only be performed on a single document at a time. In the future, Elasticsearch might provide the ability to update multiple documents given a query condition (like an `SQL UPDATE-WHERE` statement). +Elasticsearch provides the ability to update multiple documents given a query condition (like an `SQL UPDATE-WHERE` statement). See {ref}/docs-update-by-query.html[`docs-update-by-query` API] === Deleting Documents