azure,machine-learning,azure-scheduler,azure-machine-learning
You will need to first create a new job in the Azure management portal (https://msdn.microsoft.com/en-us/library/azure/dn495651.aspx), where you can configure the URL and the HTTP method to POST, and specify the body. However, the initial configuration screens don't let you add any headers, so once you have created the job, go...
c#,azure,servicebus,azure-servicebus-queues,azure-scheduler
You read and delete messages from dead letter queue the same way you read from normal queues or subscriptions. You can use this method to get the path of the queue: QueueClient.FormatDeadLetterPath(queuePath). Also see this previous answer: How do I delete a DeadLetter message on an Azure Service Bus Topic...
azure,machine-learning,batch-processing,azure-scheduler,azure-machine-learning
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....
sql-azure,azure-scheduler,azure-machine-learning
Don't set output port and use Batch execution service - details are provided here - Publish web service and consume web service
azure,azure-webjobs,azure-scheduler
Azure Web Jobs Only available on Azure Websites It is used to run code at particular intervals. E.g. a console application every day Used to trigger and run workloads. Mainly recommended for workloads that either scale with the website or are relatively small. Can be persistently running if "Always On"...
azure,machine-learning,azure-scheduler,azure-machine-learning
If you are using BES with web service input and output, you would need to provide the Storage information for the data. With the Reader and Writer modules, you can remove the web service input and output ports. Then when the web service is called, it executes without using the...
sql,sql-azure,azure-scheduler,azure-elastic-scale
I wrote the following Azure Automation workflow for your exact scenario [Azure SQL Database: Vertically Scale]. In full disclosure, there is an open issue running the script against SQL Database v12 right now. I am actively working on it and will post on the script center page when resolved. (2/28)...