Delete Job API
editDelete Job API
editDelete Job Request
editA DeleteJobRequest object requires a non-null jobId and can optionally set force.
Optional Arguments
editThe following arguments are optional:
|
Use to forcefully delete an opened job;
this method is quicker than closing and deleting the job.
Defaults to |
Delete Job Response
editThe returned AcknowledgedResponse object indicates the acknowledgement of the job deletion or
the deletion task depending on whether the request was set to wait for completion:
Synchronous Execution
editWhen executing a DeleteJobRequest in the following manner, the client waits
for the AcknowledgedResponse to be returned before continuing with code execution:
DeleteJobResponse deleteJobResponse = client.machineLearning().deleteJob(deleteJobRequest, RequestOptions.DEFAULT);
Asynchronous Execution
editExecuting a DeleteJobRequest can also be done in an asynchronous fashion so that
the client can return directly. Users need to specify how the response or
potential failures will be handled by passing the request and a listener to the
asynchronous delete-job method:
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 delete-job looks like: