| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 | --:api: update:request: UpdateRequest:response: UpdateResponse--[id="{upid}-{api}"]=== Update API[id="{upid}-{api}-request"]==== Update RequestAn +{request}+ requires the following arguments:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request]--------------------------------------------------<1> Index<2> Document idThe Update API allows to update an existing document by using a scriptor by passing a partial document.==== Updates with a scriptThe script can be provided as an inline script:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-with-inline-script]--------------------------------------------------<1> Script parameters provided as a `Map` of objects<2> Create an inline script using the `painless` language and the previous parameters<3> Sets the script to the update requestOr as a stored script:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-with-stored-script]--------------------------------------------------<1> Reference to a script stored under the name `increment-field` in the `painless` language<2> Sets the script in the update request==== Updates with a partial documentWhen using updates with a partial document, the partial document will be merged with theexisting document.The partial document can be provided in different ways:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-with-doc-as-string]--------------------------------------------------<1> Partial document source provided as a `String` in JSON format["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-with-doc-as-map]--------------------------------------------------<1> Partial document source provided as a `Map` which gets automatically convertedto JSON format["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-with-doc-as-xcontent]--------------------------------------------------<1> Partial document source provided as an `XContentBuilder` object, the Elasticsearchbuilt-in helpers to generate JSON content["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-shortcut]--------------------------------------------------<1> Partial document source provided as `Object` key-pairs, which gets converted toJSON format==== UpsertsIf the document does not already exist, it is possible to define some content thatwill be inserted as a new document using the `upsert` method:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-upsert]--------------------------------------------------<1> Upsert document source provided as a `String`Similarly to the partial document updates, the content of the `upsert` documentcan be defined using methods that accept `String`, `Map`, `XContentBuilder` or`Object` key-pairs.==== Optional argumentsThe following arguments can optionally be provided:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-routing]--------------------------------------------------<1> Routing value["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-timeout]--------------------------------------------------<1> Timeout to wait for primary shard to become available as a `TimeValue`<2> Timeout to wait for primary shard to become available as a `String`["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-refresh]--------------------------------------------------<1> Refresh policy as a `WriteRequest.RefreshPolicy` instance<2> Refresh policy as a `String`["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-retry]--------------------------------------------------<1> How many times to retry the update operation if the document to update hasbeen changed by another operation between the get and indexing phases of theupdate operation["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-no-source]--------------------------------------------------<1> Enable source retrieval, disabled by default["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-source-include]--------------------------------------------------<1> Configure source inclusion for specific fields["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-source-exclude]--------------------------------------------------<1> Configure source exclusion for specific fields["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-cas]--------------------------------------------------<1> ifSeqNo<2> ifPrimaryTerm["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-detect-noop]--------------------------------------------------<1> Disable the noop detection["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-scripted-upsert]--------------------------------------------------<1> Indicate that the script must run regardless of whether the document exists or not,ie the script takes care of creating the document if it does not already exist.["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-doc-upsert]--------------------------------------------------<1> Indicate that the partial document must be used as the upsert document if itdoes not exist yet.["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-request-active-shards]--------------------------------------------------<1> Sets the number of shard copies that must be active before proceeding withthe update operation.<2> Number of shard copies provided as a `ActiveShardCount`: can be `ActiveShardCount.ALL`,`ActiveShardCount.ONE` or `ActiveShardCount.DEFAULT` (default)include::../execution.asciidoc[][id="{upid}-{api}-response"]==== Update ResponseThe returned +{response}+ allows to retrieve information about the executedoperation as follows:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-response]--------------------------------------------------<1> Handle the case where the document was created for the first time (upsert)<2> Handle the case where the document was updated<3> Handle the case where the document was deleted<4> Handle the case where the document was not impacted by the update,ie no operation (noop) was executed on the documentWhen the source retrieval is enabled in the `UpdateRequest`through the fetchSource method, the response contains thesource of the updated document:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-getresult]--------------------------------------------------<1> Retrieve the updated document as a `GetResult`<2> Retrieve the source of the updated document as a `String`<3> Retrieve the source of the updated document as a `Map<String, Object>`<4> Retrieve the source of the updated document as a `byte[]`<5> Handle the scenario where the source of the document is not present inthe response (this is the case by default)It is also possible to check for shard failures:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-failure]--------------------------------------------------<1> Handle the situation where number of successful shards is less thantotal shards<2> Handle the potential failuresWhen a `UpdateRequest` is performed against a document that does not exist,the response has `404` status code, an `ElasticsearchException` gets thrownwhich needs to be handled as follows:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-docnotfound]--------------------------------------------------<1> Handle the exception thrown because the document not existIf there is a version conflict, an `ElasticsearchException` willbe thrown:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests-file}[{api}-conflict]--------------------------------------------------<1> The raised exception indicates that a version conflict error was returned.
 |