| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | [[java-rest-high-document-reindex-rethrottle]]=== Reindex Rethrottle API[[java-rest-high-document-reindex-rethrottle-request]]==== Reindex Rethrolle RequestA `RethrottleRequest` can be used to change existing throttling on a runnindreindex task or disable it entirely. It requires the task Id of the reindex task to change.In its simplest form, you can use it to disable throttling of a runningreindex task using the following:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests}/CRUDDocumentationIT.java[rethrottle-disable-request]--------------------------------------------------<1> Create a `RethrottleRequest` that disables throttling for a specific task idBy providing a `requestsPerSecond` argument, the request will change theexisting task throttling to the specified value:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests}/CRUDDocumentationIT.java[rethrottle-request]--------------------------------------------------<1> Request to change the throttling of a task to 100 requests per second[[java-rest-high-document-reindex-rethrottle-async]]==== Asynchronous ExecutionThe asynchronous execution of a rethrottle request requires both the `RethrottleRequest`instance and an `ActionListener` instance to be passed to the asynchronousmethod:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests}/CRUDDocumentationIT.java[rethrottle-execute-async]--------------------------------------------------<1> The RethrottleRequest 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` methodif the execution successfully completed or using the `onFailure` method ifit failed. A typical listener looks like this:["source","java",subs="attributes,callouts,macros"]--------------------------------------------------include-tagged::{doc-tests}/CRUDDocumentationIT.java[rethrottle-request-async]--------------------------------------------------<1> Code executed when the request is successfully completed<2> Code executed when the request fails with an exception[[java-rest-high-document-reindex-retrottle-response]]==== Rethrottle ResponseRethrottling returns the task that has been rethrottled in the form of a `ListTasksResponse`. The structure of this response object is described in detail in <<java-rest-high-cluster-list-tasks-response,this section>>.
 |