Search code examples
azuremachine-learningbatch-processingazure-schedulerazure-machine-learning-service

How to schedule Batch Execution Service of Azure Machine Learning in Azure Scheduler


In Batch execution API help page of Azure Machine Learning there are three different URI’s

  • Submit Job (Response is Job ID)
  • Start Job ( we need to use the above Job ID in this URI)
  • Get Status or Result (we need to use the above Job ID in this URI)

How do I automate these jobs in the Azure Scheduler? (i.e. if I want to execute the BES on the particular date


Solution

  • You would use Azure Data Factory instead of the scheduler. This would allow you to schedule the BES call into the future while identifying where the result file will end up.

    There are lots of examples online on how to do that.