Reputation: 410
How do i schedule Azure ML Experiments which is not deployed as web service?
I have developed a Azure Experiment which imports data from on-premise database and exports data to SQL db. How can i schedule that to run weekly?
Upvotes: 0
Views: 549
Reputation: 322
You can use Azure PowerShell for automating this task, and use Windows Task Scheduler to schedule this script to run automatically.
For Azure PowerShell,
You may visit this page to setup an Azure PowerShell script. It's a long journey, but it's worth it. Make sure to follow the prerequisites to be installed on your local PC (Azure-PowerShell v4.0.1).
For Windows Task Scheduler,
Visit this link to schedule your created Azure PowerShell script to run at a scheduled/repeated time.
Upvotes: 1