2017-06-19 21:23:58 -04:00
|
|
|
[role="xpack"]
|
2018-08-31 19:49:24 -04:00
|
|
|
[testenv="platinum"]
|
2017-04-04 18:26:39 -04:00
|
|
|
[[ml-close-job]]
|
2017-12-14 13:52:49 -05:00
|
|
|
=== Close Jobs API
|
|
|
|
++++
|
|
|
|
<titleabbrev>Close Jobs</titleabbrev>
|
|
|
|
++++
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-06-13 16:37:35 -04:00
|
|
|
Closes one or more jobs.
|
2017-04-11 21:52:47 -04:00
|
|
|
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-25 17:08:29 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
`POST _xpack/ml/anomaly_detectors/<job_id>/_close` +
|
|
|
|
|
|
|
|
`POST _xpack/ml/anomaly_detectors/<job_id>,<job_id>/_close` +
|
|
|
|
|
|
|
|
`POST _xpack/ml/anomaly_detectors/_all/_close` +
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Description
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
You can close multiple jobs in a single API request by using a group name, a
|
|
|
|
comma-separated list of jobs, or a wildcard expression. You can close all jobs
|
|
|
|
by using `_all` or by specifying `*` as the `<job_id>`.
|
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
|
2017-04-24 14:14:58 -04:00
|
|
|
maintaining its meta data. Therefore it is a best practice to close jobs that
|
|
|
|
are no longer required to process data.
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-05-02 15:45:42 -04:00
|
|
|
When a {dfeed} that has a specified end date stops, it automatically closes
|
2017-04-24 14:14:58 -04:00
|
|
|
the job.
|
|
|
|
|
2017-06-19 05:16:51 -04:00
|
|
|
NOTE: If you use the `force` query parameter, the request returns without performing
|
|
|
|
the associated actions such as flushing buffers and persisting the model snapshots.
|
|
|
|
Therefore, do not use this parameter if you want the job to be in a consistent state
|
|
|
|
after the close job API returns. The `force` query parameter should only be used in
|
|
|
|
situations where the job has already failed, or where you are not interested in
|
|
|
|
results the job might have recently produced or might produce in the future.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Path Parameters
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-08-09 11:30:21 -04:00
|
|
|
`job_id`::
|
|
|
|
(string) Identifier for the job. It can be a job identifier, a group name, or
|
|
|
|
a wildcard expression.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Query Parameters
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
`force`::
|
2017-04-24 14:14:58 -04:00
|
|
|
(boolean) Use to close a failed job, or to forcefully close a job which has not
|
2017-04-19 13:52:30 -04:00
|
|
|
responded to its initial close request.
|
|
|
|
|
2017-04-24 14:14:58 -04:00
|
|
|
`timeout`::
|
|
|
|
(time units) Controls the time to wait until a job has closed.
|
|
|
|
The default value is 30 minutes.
|
|
|
|
|
2017-04-19 13:52:30 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Authorization
|
2017-04-25 17:08:29 -04:00
|
|
|
|
|
|
|
You must have `manage_ml`, or `manage` cluster privileges to use this API.
|
2017-06-19 21:23:58 -04:00
|
|
|
For more information, see {xpack-ref}/security-privileges.html[Security Privileges].
|
2017-04-25 17:08:29 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Examples
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-02-09 12:16:24 -05:00
|
|
|
The following example closes the `total-requests` job:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2018-02-09 12:16:24 -05:00
|
|
|
POST _xpack/ml/anomaly_detectors/total-requests/_close
|
2017-04-04 18:26:39 -04:00
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
2018-08-31 19:49:24 -04:00
|
|
|
// TEST[skip:setup:server_metrics_openjob]
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
When the job is closed, you receive the following results:
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
|
|
|
"closed": true
|
|
|
|
}
|
|
|
|
----
|
2018-02-09 12:16:24 -05:00
|
|
|
// TESTRESPONSE
|