原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/ml-open-job.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/ml-open-job.html
本地英文版地址: ../en/ml-open-job.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Open anomaly detection jobs APIedit
Opens one or more anomaly detection jobs.
Requestedit
POST _ml/anomaly_detectors/{job_id}/_open
Prerequisitesedit
-
If the Elasticsearch security features are enabled, you must have
manage_ml
ormanage
cluster privileges to use this API. See Security privileges.
Descriptionedit
An anomaly detection job must be opened in order for it to be ready to receive and analyze data. It can be opened and closed multiple times throughout its lifecycle.
When you open a new job, it starts with an empty model.
When you open an existing job, the most recent model state is automatically loaded. The job is ready to resume its analysis from where it left off, once new data is received.
Path parametersedit
-
<job_id>
- (Required, string) Identifier for the anomaly detection job.
Request bodyedit
-
timeout
- (Optional, time) Controls the time to wait until a job has opened. The default value is 30 minutes.
Examplesedit
POST _ml/anomaly_detectors/total-requests/_open { "timeout": "35m" }
When the job opens, you receive the following results:
{ "opened": true }