Automate the Azure-SSIS Integration Runtime Start-up and Shutdown - Part 1

By:   |   Comments (2)   |   Related: > Azure Integration Services


Problem

We have created an Azure Data Factory environment and configured an Azure-SSIS Integration Runtime to run our Integration Services packages in the cloud. Everything works fine, but running the Azure-SSIS IR cluster the entire time leads to significant hosting costs. We can save costs by turning off the IR when we don't need it. Is there a way to automate this, so we don't have to turn it down manually?

Solution

Like most resources in the cloud, running something costs money. Some resources are pay-per-use, others cost money by just having them, such as storage where you pay per terabyte. Certain types of resources cost money for each second, they are turned on, such as virtual machines for example. The Azure-SSIS IR environment is a cluster of virtual machines which run an SSIS scale-out configuration. Having the IR turned on means you are paying for those virtual machines for each second that passes by. You can find information about those costs in the official pricing page.

There are three easy way to cut costs:

  • Go for a smaller cluster. Less nodes with less RAM and cores. If you have typical ELT scenarios (where most of the work is done by a database engine or something similar), you can scale down your cluster. You don't need a powerful cluster since most of the work is offloaded.
  • Choose standard edition for SSIS. You only need enterprise edition for certain specific scenarios, such as fuzzy matching or specific connectors. You can find an overview of the enterprise features here. If you already have a SQL Server license, you can save extra money with the hybrid benefit.
  • Turn off your IR when you don't need it. Spin up the cluster at the start of your ETL load, turn it off when you're done. If your ETL load takes 3 hours for example, you can turn the IR off for the other 21 hours. This almost saves you 90% of the cost when the IR would be running full-time.

In this tip, we'll explore the last option. We'll see how you can automatically start your IR at the beginning of an ETL flow (using an Azure Data Factory pipeline) and how to turn it off at the end.

Create an Azure Automation Account & Runbook

The key to automate your Azure-SSIS IR environment is using Azure Automation. With this "serverless" service, you can automate and configure your cloud resources. One tool is runbooks, which allow you to run PowerShell scripts. First, we have to create an automation account. Click on "Create a Resource" in the Azure Portal and search for automation.

create automation account

Choose a name, subscription, resource group and region to configure your automation account. When you choose to create the Azure Run As account, you need permissions in Azure Active Directory to do so.

add automation account

After a few minutes, the Azure Automation account is created and some sample Runbooks are provided as well.

automation account created + samples

Before we create our runbook, we need to import some Data Factory modules into the Automation account. In the Shared Resources section, go to Modules.

go to PowerShell modules

Here we need the latest version of the AzureRM.Profile module and the AzureRM.DataFactoryV2 module.

list of modules

When you following the links to the PowerShell gallery, you can choose to deploy the module directly to Azure Automation.

deploy from gallery to automation

Clicking on Deploy to Azure Automation will take you to the Azure Portal, where you can choose your Automation account.

choose automation account

The module is then deployed to the Azure Automation account, which might take some time. We can repeat the same steps for the other module.

azure modules

The next part is to create our PowerShell runbook. Go to the Automation Account and select Runbooks.

automation account

Then click on Add a new Runbook.

create new runbook

Choose to create a new runbook, enter a name, an optional description and select PowerShell from the dropdown list.

configure runbook

There are other options as well, but in this tip we'll focus on PowerShell.

runbook options

After creating the Runbook, you'll be automatically redirected to the edit environment. Here we can write our PowerShell code.

edit powershell runbook

First, we need to create some parameters to make the runbook more dynamic. We're going to pass the names of the resource group under which the Azure Data Factory is located, the Azure Data Factory and the Azure-SSIS IR. We're also passing a command: are we starting or stopping the Azure-SSIS IR?

add parameters

Next, we're using the Azure Run As account to create a connection to Azure.

create connection to Azure

If the command parameter is equal to START or start, we're going to start the Azure-SSIS IR, using the Start-AzureRmDataFactoryV2IntegrationRuntime cmdlet.

star the IR

Using the -Force parameter will start the IR without asking for confirmation, which is what we want in an automated environment. The PowerShell script will keep running until the IR is actually provisioned and started. If the IR is already running when the runbook is launched, no problem, it script will just finish successfully.

If the command parameter is equal to STOP or stop, the similar cmdlet Stop-AzureRmDataFactoryV2IntegrationRuntime is used to stop the Azure-SSIS IR.

stop the IR

The entire script looks like this:

Param
(
      [Parameter (Mandatory= $true)]
      [String] $ResourceGroup,

      [Parameter (Mandatory= $true)]
      [String] $DataFactory,

      [Parameter (Mandatory= $true)]
      [String] $AzureSSIS,

      [Parameter (Mandatory= $true)]
      [String] $Command
)
$connectionName = "AzureRunAsConnection"
try
{
    # Get the connection "AzureRunAsConnection "
    $servicePrincipalConnection=Get-AutomationConnection -Name $connectionName         

    "Logging in to Azure..."
    Connect-AzureRmAccount `
        -ServicePrincipal `
        -TenantId $servicePrincipalConnection.TenantId `
        -ApplicationId $servicePrincipalConnection.ApplicationId `
        -CertificateThumbprint $servicePrincipalConnection.CertificateThumbprint 
}
catch {
    if (!$servicePrincipalConnection)
    {
        $ErrorMessage = "Connection $connectionName not found."
        throw $ErrorMessage
    } else{
        Write-Error -Message $_.Exception
        throw $_.Exception
    }
}
if($Command -eq "START" -or $Command -eq "start")
{
    "##### Starting the Azure-SSIS IR #####"
    Start-AzureRmDataFactoryV2IntegrationRuntime `
        -ResourceGroupName $ResourceGroup `
        -DataFactoryName $DataFactory `
        -Name $AzureSSIS `
        -Force
}
elseif($Command -eq "STOP" -or $Command -eq "stop")
{
    "##### Stopping the Azure-SSIS IR #####"
    Stop-AzureRmDataFactoryV2IntegrationRuntime `
        -DataFactoryName $DataFactory `
        -Name $AzureSSIS `
        -ResourceGroup $ResourceGroup `
        -Force
}  
"##### Script Finished #####"

Keep in mind this PowerShell script can also be used to start other types of Integration Runtimes, not just the Azure-SSIS IR.

When the script is finished, you can publish it:

publish workbook

By clicking on Test pane, you can test the script by specifying values for the parameters and running the script.

test the runbook

If the script runs successfully, you'll get the output of the script displayed on the right side:

script output

Unfortunately, I had to take the output of a similar script in another environment. Ironically, I forgot to shut down my Azure-SSIS IR one day and it kept running for a couple of days, eating away all of my free Azure credits. Which is exactly the reason why I decided to write this tip, so it would never happen again.

As a last step, you can schedule the runbook. You just need to provide a schedule and supply the parameters.

schedule runbook

In the next part of the tip, we are going to explain how we can trigger the runbook from an Azure Data Factory pipeline, using webhooks.

Next Steps


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Koen Verbeeck Koen Verbeeck is a seasoned business intelligence consultant at AE. He has over a decade of experience with the Microsoft Data Platform in numerous industries. He holds several certifications and is a prolific writer contributing content about SSIS, ADF, SSAS, SSRS, MDS, Power BI, Snowflake and Azure services. He has spoken at PASS, SQLBits, dataMinds Connect and delivers webinars on MSSQLTips.com. Koen has been awarded the Microsoft MVP data platform award for many years.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips



Comments For This Article




Tuesday, May 12, 2020 - 8:00:27 AM - Koen Verbeeck Back To Top (85633)

Hi,

You can find it here: https://www.mssqltips.com/sqlservertip/5769/azuressis-integration-runtime-startup-and-shutdown-with-webhooks--part-2/


Monday, May 11, 2020 - 5:59:18 PM - Karthij Back To Top (85629)

Hi,

This was really helpful and I am looking for part 2 of this by using webhooks but I am unable to locate it.

Would you please help?















get free sql tips
agree to terms