Leveraging Azure Batch for database builds
- Why use Azure Batch?
- Getting Started
- Build or update the SQL Build Manager container
- Running a Batch Build
- Alternative run options
- Examples
- Log Details
Why use Azure Batch?
If you have a fleet of databases to update, it could take a very long time to run your build on a single machine, even if you leverage the threaded model. Similar to leveraging Kubernetes or Azure Container Instance, to ensure you can complete your updates in a timely fashion, SQL Build Manager can target Azure Batch to distribute you build across multiple compute nodes, each leveraging their own set of concurrent tasks. You can control the level of concurrency to maximize throughput while not overloading your SQL Servers (see details on concurrency management)
To leverage Azure Batch, you will need an Azure subscription with several Azure resources deployed.
Get Started
- Set Up you Azure resources. For this, leverage the automation script as explained here
- Build the SQL Build Manager container. If
you ran
azd up, the image was already built remotely in ACR. -
- Settings File - simplify your command line by saving the most re-used arguments in an encrypted JSON file
- Pre-stage your Batch Nodes
- Queue the Database Targets in Service Bus
- Execute batch build
- Inspect logs if an issue is reported
- Cleanup resources post build
-
Additional information
Build or update the SQL Build Manager container
Azure Batch runs SQL Build Manager in a Linux container. Application packages are not used because they are incompatible with the firewalled/private-only linked Storage account.
azd up builds the runtime image remotely with ACR Tasks:
<registry>.azurecr.io/sqlbuildmanager:latest-vNext
To rebuild only the runtime image:
.\scripts\ContainerRegistry\build_runtime_image_fromprefix.ps1 `
-prefix <prefix> `
-resourceGroupName <prefix>-rg `
-wait $true
The Batch pool uses its user-assigned managed identity to pull the image from ACR. No registry password is required.
Running a Batch Build
(For a full end-to-end example, see this document)
Azure Batch builds are started locally via sbm.exe. This process communicates with the Azure
Storage account and Azure Batch account to execute Linux container tasks across the pool of Batch
compute nodes. The number of nodes that are provisioned is determined by your command line
arguments. The initiating machine must have network access to the private Storage endpoint to stage
input files.
Settings File
While all of the values can be provided as arguments in the command line, it is strongly suggested you leverage --settingsfile and --settingsfilekey (the --settingsfilekey parameter is not required if you are leveraging --keyvaultname). A settings JSON file is created for you when running azd up (see Setting up an Azure Environment), but can also be re-created via the scripts/create_batch_settingsfiles_mi_only.ps1 script.
You can also build it manually by executing sbm batch savesettings command and providing the appropriate arguments. See the argument details here
1. Pre-stage the Azure Batch pool VMs
(Optional)
- Execute
sbm batch prestage [options]. This will create the desired number of Azure Batch VM’s as defined in the--batchnodecountargument.
(NOTE: it can take 10-20 minutes for the VMs to be provisioned and ready which is whyprestageis recommended). See the argument details here
2. Queue the database targets
(Optional)
- Execute
sbm batch enqueue [options]. This will create a Service Bus Topic message for each database target. The batch nodes will pull from this queue to update the database
It is important to use the same--concurrencytypevalue here that you will use when you run the build as this settings targets the appropriate topic/subscription.
See full details on leveraging Service Bus here
Instead of using a Service Bus Topic, you can target your databases with the--overrideargument directly withsbm batch run.
3. Execute batch build
- Execute
sbm batch run [options]. See the argument details here
This will start the following process:
- Validate the provided command line arguments and Linux container image settings
- The target database list is split into pieces for distribution to the compute nodes (only if using the
--overrideargument and not using Service Bus) - The resource files are uploaded to the Storage account
- A container-enabled AlmaLinux 8 Gen1 pool pulls the runtime image from ACR with managed identity
- The workload tasks are sent to Azure Batch and run
/app/sbminside the container - The local executable polls for node status, waiting for each to complete
- Once complete, the aggregate return code is used as the exit code for
sbm; see Execution options and exit codes - The log files for each of the nodes is uploaded to the Storage account associated with the Batch
- A SaS token URL to get read-only access to the log files is included in the console output. You can also view these files via the Azure portal or the Azure Batch Explorer
4. Inspect logs if an issue is reported
- If there is a issue with the execution - either with the SQL updates or something with the program, logs will be created. See the log details to see what files to expect.
- If applicable use the
failuredatabases.cfgfile as the--overridetarget forsbm batch enqueue(if leveraging Service Bus) orsbm batch run(if leveraging a local target file) to only re-run against the databases that had update issues
5. Cleanup post build
- Execute
sbm batch cleanup [options]. This will delete the Azure Batch VM’s so you are no longer charged for the compute. See the argument details here
NOTE: this will not delete the log files, these are generally needed more long term and they will stay in the storage account
If job monitoring reaches --batchjobmonitortimeout, SQL Build Manager returns
BatchJobMonitorTimeout. The command still applies the configured --deletebatchjob and
--deletebatchpool cleanup settings. If either setting retained the resource, run
sbm batch cleanup after investigating the job.
Alternative run options
If you prefer a one step execution, you can run the command line to create and delete the pool VMs in-line with your execution. To do this, you would use sbm batch run along with the additional arguments to create and delete the pool
Examples
The following command contains all of the required arguments to run a Batch job:
sbm.exe batch run --override="C:\temp\override.cfg" --packagename="c:\temp\mybuild.sbm" --username=myname --password=P@ssw0rd! --deletebatchpool=false --batchnodecount=5 --batchvmsize=STANDARD_DS1_V2 --batchaccountname=mybatch --batchaccounturl=https://mybatch.eastus.batch.azure.com --batchaccountkey=x1hGLIIrdd3rroqXpfc2QXubzzCYOAtrNf23d3dCtOL9cQ+WV6r/raNrsAdV7xTaAyNGsEagbF0VhsaOTxk6A== --storageaccountname=mystorage --storageaccountkey=lt2e2dr7JYVnaswZJiv1J5g8v2ser20B0pcO0PacPaVl33AAsuT2zlxaobdQuqs0GHr8+CtlE6DUi0AH+oUIeg==
The following command line uses a generated DACPAC and assumes that the Batch, Storage and password settings are in the --settingsfile:
sbm.exe batch run --settingsfile="C:\temp\my_settings.json" --settingsfilekey="C:\temp\my_keyfile.txt"--override="C:\temp\override.cfg" --platinumdbsource="platinumDb" --platinumserversource="platinumdbserver" --database=targetDb --server="targetdbserver"
Log Details
For details on the log files that are created during a Batch run, see the Log Details page. There is also a section on troubleshooting tips