Skip to content

Latest commit

 

History

History
193 lines (136 loc) · 12.8 KB

File metadata and controls

193 lines (136 loc) · 12.8 KB

Azure SQL Database

Azure SQL Database is a relational database commonly used in the MDW architecture, typically in the serving layer. The following samples demonstrates how you might build CI/CD pipelines to deploy changes to Azure SQL Database.

Contents

  1. Key Concepts
    1. Build and Release
      1. Azure DevOps Pipelines
        1. Validate Pull Request
        2. Build Pipeline
        3. Simple Multi-stage Pipeline
        4. Multi-stage Pipeline with pre-deployment test
      2. Github Actions Pipelines (coming soon)
    2. Testing
    3. Observability and Monitoring
  2. How to use the samples
    1. Prerequisites
    2. Setup and Deployment
    3. Deployed resources
    4. Running the samples
      1. Releasing a change through the simple multi-stage pipeline
    5. Cleanup

Key concepts

Build and Release (CI/CD)

Azure DevOps Pipelines

The following are some sample Azure DevOps pipelines. To deploy these samples, see How to use the samples.

  1. Validate Pull Request [azure-pipelines-01-validate-pr]

    • This pipeline builds the DACPAC and runs tests (if any). This is triggered only on PRs and is used to validate them before merging into main. This pipeline does not produce any artifacts.
  2. Build Pipeline [azure-pipelines-02-build]

  3. Simple Multi-Stage Pipeline [azure-pipelines-03-simple-multi-stage]

    • This pipeline demonstrates a simple multi-stage pipeline.
    • It has two stages:
      1. Build - builds the DACPAC and creates a Pipeline Artifact.
      2. Deploy - deploys the DACPAC to a target AzureSQL instance.
    • Required Pipeline Variables:
      • AZURESQL_SERVER_NAME - Name of the AzureSQL server (ei. myserver.database.windows.net)
      • AZURESQL_DB_NAME - Name of the AzureSQL Database
      • AZURESQL_SERVER_USERNAME - Username of AzureSQL login
      • AZURESQL_SERVER_PASSWORD - Password of AzureSQL login
  4. Multi-Stage Pipeline with pre-deployment test [azure-pipelines-04-multi-stage-predeploy-test]

    • This pipeline expands on the simple multi-stage pipeline by introducing a middle pipeline stage which deploys the DACPAC first to a freshly restored copy of the production database prior to deployment to production. It has the ff. stages:
      1. Build
      2. Deploy to Test
        1. Restore Prod Db to Test Db.
        2. Deploy DACPAC to Test Db.
        3. Teardown Test Db.
      3. Deploy to Prod
    • This mimics, to a certain extent, a production release, as it is applying the expected changes to a copy of the production database. It also allows for potentially running additional tests run in this environment, along with capturing common schema change errors such as adding a non-nullable column without a default value.
    • Important considerations:
      • Depending on the size and pricing tier of your Production AzureSQL database, a restore might take several minutes to several hours. Consider batching changes and running this pipeline on a schedule (such as nightly) instead on every commit to main.
      • For simplicity purposes, the Test database is deployed in the same logical server as Production, however, in reality these should be completely separate servers.

Testing

Observability / Monitoring

How to use the samples

Prerequisites

  1. Github account
  2. Azure Account
  3. Azure DevOps Account

Software Prerequisites

  1. For Windows users, Windows Subsystem for Linux
  2. Azure CLI 2.0.49+
  3. Azure DevOps CLI
  4. jq
  5. For editing AzureSQL objects, Visual Studio 2019. For earlier version of Visual Studio, you may need to install SQL Server Data Tools separately.

Setup and deployment

To setup the samples, run the following:

  1. Ensure that:
    • You are logged in to the Azure CLI. To login, run az login.
    • Azure CLI is targeting the Azure Subscription you want to deploy the resources to.
      • To set target Azure Subscription, run az account set -s <AZURE_SUBSCRIPTION_ID>
    • Azure CLI is targeting the Azure DevOps organization and project you want to deploy the pipelines to.
      • To set target Azure DevOps project, run az devops configure --defaults organization=https://dev.azure.com/MY_ORG/ project=MY_PROJECT
  2. Fork* and clone this repository. cd in to single_tech_samples/azuresql.
  3. Set the following environment variables:
    1. GITHUB_REPO_URL - URL of your forked github repo
    2. GITHUB_PAT_TOKEN - a Github PAT token. Generate them here. This requires "repo" scope. Optionally, set the following environment variables
      1. DEPLOYMENT_ID - string appended to all resource names. Default: random five character string.
      2. BRANCH_NAME** - git branch with Azure DevOps pipelines definitions to deploy. Default: main.
      3. RESOURCE_GROUP_NAME - target resource group to deploy to
      4. RESOURCE_GROUP_LOCATION - location of target resource group
      5. AZURESQL_SERVER_PASSWORD - Password of the admin account for your AzureSQL server instance. Default: mdw-dataops-SqlP@ss-${DEPLOYMENT_ID}
        1. Username is set to sqlAdmin.
  4. Run ./deploy.sh.***

Additional notes

*Your forked repo will serve as the main repository which triggers all pipelines -- allowing you complete control over the sample solution as compared to using the main Azure-Samples repository directly. All pipeline definitions are also pulled from this fork.

**The pipelines are deployed to use the main branch by default. This can be inconvenient when working on the pipelines in a different branch. You can set the BRANCH_NAME environment variable to override this behaviour. This makes it easier to test changes to your pipeline file. Be sure to push the changes in your yaml file to your repo before running the deployment script. Note that it does not change branch triggers.

***Note that in case of any errors midway through the script, in order to rerun the deployment, you may need to perform some cleanup of any deployed resources. See Cleanup below.

Deployed resources

Once you've setup the sample, you should have the following deployed:

  1. Azure resource group with a AzureSQL server and database called salesdb. azuresql_azure_resources

  2. A service principal with collaborator rights over the deployed resource group.

  3. Two Azure DevOps service connections found under Project Settings > Service Connections:

    1. mdw-dataops-azure - An AzureRM service connection configured with the Service Principal. This is used to deploy to the AzureSQL database.
    2. github-mdw-dataops - A Github service connection used to pull from the forked repository. It uses the Github PAT token to authenticate.

    azuresql_devops_service_connections

  4. Three Azure DevOps pipelines found under Pipelines > Builds. See Key concepts/Azure DevOps Pipelines below for explanation of each:

    1. azuresql-validate-pr
    2. azuresql-build
    3. azuresql-simple-multi-stage

    azuresql_devops_pipelines. Each of the pipelines should have run (or is currently running) at least once.

Running the samples

Releasing a change through the simple multi-stage pipeline

The following shows how to deploy changes to the AzureSQL database using the CI/CD pipelines.

  1. In local clone of your forked repo, create a local branch of main and call it dev/sample_change. Checkout this branch.

    azuresql_git_checkout

  2. Open the Visual Studio solution src/ddo_samples_azuresql.sln.

  3. Add a new CompanyAddress column to the SaleLT.Customer table, as seen below.

    azuresql_add_column

  4. Commit and push the change to the remote branch in Github.

    azuresql_add_column

  5. Raise a Pull Request to merge dev/sample_change to main. This should trigger the the azuresql-validate-pr pipeline.

    azuresql_pr_validation

  6. Typically, a code review would take place. After this, merge changes to main by completing the Pull Request. This should trigger the azuresql-build and azuresql-simple-multi-stage.

    azuresql_pr_validation

  7. In Azure DevOps, navigate to the azuresql-simple-muli-stage pipeline run. The second stage of this pipeline will deploy the changes to the AzureSQL Database.

    azuresql_release

  8. Connect to the AzureSQL Database. Notice that the new column has been deployed.

    azuresql_viewchanges

Congratulations! You've deployed changes via CI/CD process.

Cleanup

  1. Delete the Azure resource group.
  2. Delete Azure DevOps Pipelines.
    1. To delete via Web Portal, navigate to Pipelines > Builds. Delete the pipeline, click on the triple dots, and select delete.
    2. To delete via CLI, run az pipelines list to list ids. Then az pipelines delete --id PIPELINE_ID.
  3. Delete Azure DevOps service connections.
    1. To delete via Web Portal, navigate to Project Settings > Service Connections. Select the connection, click on the triple dots, and select delete.
    2. To delete via CLI, run az devops service-endpoint list to list ids. Then az devops service-endpoint delete --id SERVICE_ENDPOINT_ID.