123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- [[java-rest-high-clear-cache]]
- === Clear Cache API
- [[java-rest-high-clear-cache-request]]
- ==== Clear Cache Request
- A `ClearIndicesCacheRquest` can be applied to one or more indices, or even on
- `_all` the indices:
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request]
- --------------------------------------------------
- <1> Clears the cache of one index
- <2> Clears the cache of multiple indices
- <3> Clears the cache of all the indices
- ==== Optional arguments
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request-indicesOptions]
- --------------------------------------------------
- <1> Setting `IndicesOptions` controls how unavailable indices are resolved and
- how wildcard expressions are expanded
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request-query]
- --------------------------------------------------
- <1> Set the `query` flag to `true`
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request-fielddata]
- --------------------------------------------------
- <1> Set the `fielddata` flag to `true`
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request-request]
- --------------------------------------------------
- <1> Set the `request` flag to `true`
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-request-fields]
- --------------------------------------------------
- <1> Set the `fields` parameter
- [[java-rest-high-clear-cache-sync]]
- ==== Synchronous Execution
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-execute]
- --------------------------------------------------
- [[java-rest-high-clear-cache-async]]
- ==== Asynchronous Execution
- The asynchronous execution of a clear cache request requires both the `ClearIndicesCacheRequest`
- instance and an `ActionListener` instance to be passed to the asynchronous
- method:
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-execute-async]
- --------------------------------------------------
- <1> The `ClearIndicesCacheRequest` to execute and the `ActionListener` to use when
- the execution completes
- The asynchronous method does not block and returns immediately. Once it is
- completed the `ActionListener` is called back using the `onResponse` method
- if the execution successfully completed or using the `onFailure` method if
- it failed.
- A typical listener for `ClearIndicesCacheResponse` looks like:
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-execute-listener]
- --------------------------------------------------
- <1> Called when the execution is successfully completed. The response is
- provided as an argument
- <2> Called in case of failure. The raised exception is provided as an argument
- [[java-rest-high-clear-cache-response]]
- ==== Clear Cache Response
- The returned `ClearIndicesCacheResponse` allows to retrieve information about the
- executed operation as follows:
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-response]
- --------------------------------------------------
- <1> Total number of shards hit by the clear cache request
- <2> Number of shards where the clear cache has succeeded
- <3> Number of shards where the clear cache has failed
- <4> A list of failures if the operation failed on one or more shards
- By default, if the indices were not found, an `ElasticsearchException` will be thrown:
- ["source","java",subs="attributes,callouts,macros"]
- --------------------------------------------------
- include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[clear-cache-notfound]
- --------------------------------------------------
- <1> Do something if the indices to be cleared were not found
|