I am trying to execute a pre-existing application on Azure Batch. What I have done so far that I have studied about Azure Batch, since I am a beginner for Azure, and I have created a sample application in C# .NET (Console Application) that interacts with my Azure Batch account and executes an .exe application on Batch pool. My sample application creates a new Job on Azure Batch Pool and manages three different tasks for this Job. Now I look forward to my pre-existing application to execute it on Azure Batch. The problem is my application uses MS SqlServer as database server. I'm not sure how to deploy this app on Azure Batch. As we know, In Azure Batch, we have to upload our data files and application code on Azure Storage in case to execute on Batch Pool Nodes so here how would I suppose to upload my whole existing database. I would appreciate the precious suggestions for looking forward.
There are a few paths forward:
2016-Datacenter-with-Containers
. You need to specify a ContainerConfiguration on the pool and tasks' should specify TaskContainerSettings. Note that this documentation is for REST, the .NET documentation is forthcoming.The custom image path may be the path of least resistance, but may require more upkeep in the future depending upon your scenario requirements for software freshness and data needs.