Hi, Im getting this warning from ML jobs after restart the nodes on docker
I run this commands in devs tools before restart the nodes
PUT _cluster/settings
{
"persistent": {
"cluster.routing.allocation.enable": "primaries"
}
}
POST _flush/synced
POST _ml/set_upgrade_mode?enabled=true
POST _ml/datafeeds/_all/_stop
and this after the nodes restarted
PUT _cluster/settings
{
"persistent": {
"cluster.routing.allocation.enable": null
}
}
POST _ml/set_upgrade_mode?enabled=false
and started the datafeed manually on all jobs
how can I solve this?