2017-04-11 21:52:47 -04:00
|
|
|
//lcawley Verified example output 2017-04-11
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-close-job]]
|
|
|
|
==== Close Jobs
|
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
The close job API enables you to close a job.
|
|
|
|
A job can be opened and closed multiple times throughout its lifecycle.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
A closed job cannot receive data or perform analysis
|
|
|
|
operations, but you can still explore and navigate results.
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
===== Request
|
|
|
|
|
|
|
|
`POST _xpack/ml/anomaly_detectors/<job_id>/_close`
|
|
|
|
|
|
|
|
===== Description
|
|
|
|
|
2017-04-11 21:52:47 -04:00
|
|
|
//A job can be closed once all data has been analyzed.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
When you close a job, it runs housekeeping tasks such as pruning the model history,
|
2017-04-11 21:52:47 -04:00
|
|
|
flushing buffers, calculating final results and persisting the model snapshots.
|
2017-04-04 18:26:39 -04:00
|
|
|
Depending upon the size of the job, it could take several minutes to close and
|
|
|
|
the equivalent time to re-open.
|
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
After it is closed, the job has a minimal overhead on the cluster except for
|
|
|
|
maintaining its meta data.
|
|
|
|
Therefore it is best practice to close jobs that are no longer required to process data.
|
|
|
|
|
|
|
|
When a datafeed that has a specified end date stops, it will automatically close the job.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-18 18:13:21 -04:00
|
|
|
You must have `manage_ml`, or `manage` cluster privileges to use this API.
|
|
|
|
For more information, see <<privileges-list-cluster>>.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
===== Path Parameters
|
|
|
|
|
|
|
|
`job_id` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Identifier for the job
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
===== Query Parameters
|
|
|
|
|
|
|
|
`close_timeout`::
|
2017-04-19 13:52:30 -04:00
|
|
|
(time units) Controls the time to wait until a job has closed.
|
2017-04-06 10:56:46 -04:00
|
|
|
The default value is 30 minutes.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
`force`::
|
|
|
|
(boolean) Use to close a failed job, or to forcefully close a job which has not
|
|
|
|
responded to its initial close request.
|
|
|
|
|
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
////
|
|
|
|
===== Responses
|
|
|
|
|
|
|
|
200
|
|
|
|
(EmptyResponse) The cluster has been successfully deleted
|
|
|
|
404
|
|
|
|
(BasicFailedReply) The cluster specified by {cluster_id} cannot be found (code: clusters.cluster_not_found)
|
|
|
|
412
|
|
|
|
(BasicFailedReply) The Elasticsearch cluster has not been shutdown yet (code: clusters.cluster_plan_state_error)
|
|
|
|
////
|
|
|
|
===== Examples
|
|
|
|
|
|
|
|
The following example closes the `event_rate` job:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
POST _xpack/ml/anomaly_detectors/event_rate/_close
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[skip:todo]
|
|
|
|
|
|
|
|
When the job is closed, you receive the following results:
|
|
|
|
----
|
|
|
|
{
|
|
|
|
"closed": true
|
|
|
|
}
|
|
|
|
----
|