schedule Azure machine learning compute instances

Viewed 711

I want to schedule azure machine learning compute instances so that I can stop them during off-hours like weekends, azure automation solution with runbook seems to be working with VMs in general but not with azure ML. The solution could be either a script or ML pipeline.

2 Answers

Looks like since today you can specify schedule during compute instance creation or just edit already existing compute instance and add a schedule for it: enter image description here

Compute instance is a PaaS service where resources are hosted in Azure ML subscription. As compute instances replaced Notebook VM,you are no longer able to see VM after creating Compute instance.

Auto-shutdown based on schedule/utilization is on the roadmap for compute instance.

Currently you can stop/start compute instance using SDK/API making automation possible.

Related