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-revert-snapshot]]
|
2018-12-20 13:23:28 -05:00
|
|
|
=== Revert model snapshots API
|
2017-12-14 13:52:49 -05:00
|
|
|
++++
|
2018-12-20 13:23:28 -05:00
|
|
|
<titleabbrev>Revert model snapshots</titleabbrev>
|
2017-12-14 13:52:49 -05:00
|
|
|
++++
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-06-13 16:37:35 -04:00
|
|
|
Reverts to a specific snapshot.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-12-07 15:34:11 -05:00
|
|
|
`POST _ml/anomaly_detectors/<job_id>/model_snapshots/<snapshot_id>/_revert`
|
2017-04-11 16:25:38 -04:00
|
|
|
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Description
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2018-01-15 11:44:08 -05:00
|
|
|
The {ml} feature in {xpack} reacts quickly to anomalous input, learning new
|
|
|
|
behaviors in data. Highly anomalous input increases the variance in the models
|
|
|
|
whilst the system learns whether this is a new step-change in behavior or a
|
|
|
|
one-off event. In the case where this anomalous input is known to be a one-off,
|
|
|
|
then it might be appropriate to reset the model state to a time before this
|
|
|
|
event. For example, you might consider reverting to a saved snapshot after Black
|
|
|
|
Friday or a critical system failure.
|
2017-04-11 16:25:38 -04:00
|
|
|
|
|
|
|
IMPORTANT: Before you revert to a saved snapshot, you must close the job.
|
|
|
|
|
2017-04-18 18:13:21 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Path Parameters
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`job_id` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Identifier for the job
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
`snapshot_id` (required)::
|
2017-04-11 22:26:18 -04:00
|
|
|
(string) Identifier for the model snapshot
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-06-06 16:42:47 -04:00
|
|
|
==== Request Body
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 16:25:38 -04:00
|
|
|
`delete_intervening_results`::
|
2017-04-11 22:26:18 -04:00
|
|
|
(boolean) If true, deletes the results in the time period between the
|
|
|
|
latest results and the time of the reverted snapshot. It also resets the
|
2017-05-08 09:53:04 -04:00
|
|
|
model to accept records for this time period. The default value is false.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-11 16:25:38 -04:00
|
|
|
NOTE: If you choose not to delete intervening results when reverting a snapshot,
|
|
|
|
the job will not accept input data that is older than the current time.
|
|
|
|
If you want to resend data, then delete the intervening results.
|
2017-04-04 18:26:39 -04:00
|
|
|
|
2017-04-25 17:08:29 -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
|
|
|
|
2017-04-11 16:25:38 -04:00
|
|
|
The following example reverts to the `1491856080` snapshot for the
|
|
|
|
`it_ops_new_kpi` job:
|
2017-04-04 18:26:39 -04:00
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
2017-04-11 16:25:38 -04:00
|
|
|
POST
|
2018-12-07 15:34:11 -05:00
|
|
|
_ml/anomaly_detectors/it_ops_new_kpi/model_snapshots/1491856080/_revert
|
2017-04-04 18:26:39 -04:00
|
|
|
{
|
2017-04-11 16:25:38 -04:00
|
|
|
"delete_intervening_results": true
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[skip:todo]
|
|
|
|
|
2017-04-11 16:25:38 -04:00
|
|
|
When the operation is complete, you receive the following results:
|
2017-04-21 11:23:27 -04:00
|
|
|
[source,js]
|
2017-04-04 18:26:39 -04:00
|
|
|
----
|
|
|
|
{
|
2017-04-11 16:25:38 -04:00
|
|
|
"model": {
|
|
|
|
"job_id": "it_ops_new_kpi",
|
2018-03-15 13:38:52 -04:00
|
|
|
"min_version": "6.3.0",
|
2017-04-11 16:25:38 -04:00
|
|
|
"timestamp": 1491856080000,
|
|
|
|
"description": "State persisted due to job close at 2017-04-10T13:28:00-0700",
|
|
|
|
"snapshot_id": "1491856080",
|
|
|
|
"snapshot_doc_count": 1,
|
|
|
|
"model_size_stats": {
|
|
|
|
"job_id": "it_ops_new_kpi",
|
|
|
|
"result_type": "model_size_stats",
|
|
|
|
"model_bytes": 29518,
|
|
|
|
"total_by_field_count": 3,
|
|
|
|
"total_over_field_count": 0,
|
|
|
|
"total_partition_field_count": 2,
|
|
|
|
"bucket_allocation_failures_count": 0,
|
|
|
|
"memory_status": "ok",
|
|
|
|
"log_time": 1491856080000,
|
|
|
|
"timestamp": 1455318000000
|
|
|
|
},
|
|
|
|
"latest_record_time_stamp": 1455318669000,
|
|
|
|
"latest_result_time_stamp": 1455318000000,
|
|
|
|
"retain": false
|
|
|
|
}
|
2017-04-04 18:26:39 -04:00
|
|
|
}
|
|
|
|
----
|