currently i started using 14 day trial version to understand the concept of machine learning in elasticsearch but found some problem while closing the created jobs
PUT _xpack/ml/calendars/planned-outagesq/jobs/jobid1 #createjob
output
{
"calendar_id" : "planned-outagesq",
"job_ids" : [
"jobid1"
]
}
while tried to close job
POST _xpack/ml/anomaly_detectors/jobid1/_close
{
"error" : {
"root_cause" : [
{
"type" : "resource_not_found_exception",
"reason" : "No known job with id 'jobid1'"
}
],
"type" : "resource_not_found_exception",
"reason" : "No known job with id 'jobid1'"
},
"status" : 404
}