Schedule U-SQL jobs using SQL Server Integration Services (SSIS)

In this document, you learn how to orchestrate and create U-SQL jobs using SQL Server Integration Service (SSIS).

Important

Azure Data Lake Analytics retired on 29 February 2024. Learn more with this announcement.

For data analytics, your organization can use Azure Synapse Analytics or Microsoft Fabric.

Prerequisites

Azure Feature Pack for Integration Services provides the Azure Data Lake Analytics task and the Azure Data Lake Analytics Connection Manager that helps connect to Azure Data Lake Analytics service. To use this task, make sure you install:

Azure Data Lake Analytics task

The Azure Data Lake Analytics task let users submit U-SQL jobs to the Azure Data Lake Analytics account.

Learn how to configure Azure Data Lake Analytics task.

Azure Data Lake Analytics Task in SSIS

You can get the U-SQL script from different places by using SSIS built-in functions and tasks, below scenarios show how can you configure the U-SQL scripts for different user cases.

Scenario 1-Use inline script call tvfs and stored procs

In Azure Data Lake Analytics Task Editor, configure SourceType as DirectInput, and put the U-SQL statements into USQLStatement.

For easy maintenance and code management, only put short U-SQL script as inline scripts, for example, you can call existing table valued functions and stored procedures in your U-SQL databases.

Edit inline U-SQL script in SSIS task

Related article: How to pass parameter to stored procedures

Scenario 2-Use U-SQL files in Azure Data Lake Store

You can also use U-SQL files in the Azure Data Lake Store by using Azure Data Lake Store File System Task in Azure Feature Pack. This approach enables you to use the scripts stored on cloud.

Follow below steps to set up the connection between Azure Data Lake Store File System Task and Azure Data Lake Analytics Task.

Set task control flow

In SSIS package design view, add an Azure Data Lake Store File System Task, a Foreach Loop Container and an Azure Data Lake Analytics Task in the Foreach Loop Container. The Azure Data Lake Store File System Task helps to download U-SQL files in your ADLS account to a temporary folder. The Foreach Loop Container and the Azure Data Lake Analytics Task help to submit every U-SQL file under the temporary folder to the Azure Data Lake Analytics account as a U-SQL job.

Diagram that shows an Azure Data Lake Store File System Task being added to a Foreach Loop Container.

Configure Azure Data Lake Store File System Task

  1. Set Operation to CopyFromADLS.
  2. Set up AzureDataLakeConnection, learn more about Azure Data Lake Store Connection Manager.
  3. Set AzureDataLakeDirectory. Point to the folder storing your U-SQL scripts. Use relative path that is relative to the Azure Data Lake Store account root folder.
  4. Set Destination to a folder that caches the downloaded U-SQL scripts. This folder path will be used in Foreach Loop Container for U-SQL job submission.

Configure Azure Data Lake Store File System Task

Learn more about Azure Data Lake Store File System Task.

Configure Foreach Loop Container

  1. In Collection page, set Enumerator to Foreach File Enumerator.

  2. Set Folder under Enumerator configuration group to the temporary folder that includes the downloaded U-SQL scripts.

  3. Set Files under Enumerator configuration to *.usql so that the loop container only catches the files ending with .usql.

    Screenshot that shows the Foreach Loop Editor with "Collection" selected and the Enumerator and Enumerator configuration sections highlighted.

  4. In Variable Mappings page, add a user defined variable to get the file name for each U-SQL file. Set the Index to 0 to get the file name. In this example, define a variable called User::FileName. This variable will be used to dynamically get U-SQL script file connection and set U-SQL job name in Azure Data Lake Analytics Task.

    Configure Foreach Loop Container to get file name

Configure Azure Data Lake Analytics Task

  1. Set SourceType to FileConnection.

  2. Set FileConnection to the file connection that points to the file objects returned from Foreach Loop Container.

    To create this file connection:

    1. Choose <New Connection...> in FileConnection setting.

    2. Set Usage type to Existing file, and set the File to any existing file's file path.

      Screenshot that shows the File Connection Manager Editor with "Existing file" selected for "Usage type".

    3. In Connection Managers view, right-click the file connection created, and choose Properties.

    4. In the Properties window, expand Expressions, and set ConnectionString to the variable defined in Foreach Loop Container, for example, @[User::FileName].

      Configure Foreach Loop Container

  3. Set AzureDataLakeAnalyticsConnection to the Azure Data Lake Analytics account that you want to submit jobs to. Learn more about Azure Data Lake Analytics Connection Manager.

  4. Set other job configurations. Learn More.

  5. Use Expressions to dynamically set U-SQL job name:

    1. In Expressions page, add a new expression key-value pair for JobName.

    2. Set the value for JobName to the variable defined in Foreach Loop Container, for example, @[User::FileName].

      Configure SSIS Expression for U-SQL job name

Scenario 3-Use U-SQL files in Azure Blob Storage

You can use U-SQL files in Azure Blob Storage by using Azure Blob Download Task in Azure Feature Pack. This approach enables you using the scripts on cloud.

The steps are similar with Scenario 2: Use U-SQL files in Azure Data Lake Store. Change the Azure Data Lake Store File System Task to Azure Blob Download Task. Learn more about Azure Blob Download Task.

The control flow is like this:

Use U-SQL files in Azure Data Lake Store

Scenario 4-Use U-SQL files on the local machine

Besides of using U-SQL files stored on cloud, you can also use files on your local machine or files deployed with your SSIS packages.

  1. Right-click Connection Managers in SSIS project and choose New Connection Manager.

  2. Select File type and select Add....

  3. Set Usage type to Existing file, and set the File to the file on the local machine.

    Add file connection to the local file

  4. Add Azure Data Lake Analytics Task and:

    1. Set SourceType to FileConnection.
    2. Set FileConnection to the File Connection created.
  5. Finish other configurations for Azure Data Lake Analytics Task.

Scenario 5-Use U-SQL statement in SSIS variable

In some cases, you might need to dynamically generate the U-SQL statements. You can use SSIS Variable with SSIS Expression and other SSIS tasks, like Script Task, to help you generate the U-SQL statement dynamically.

  1. Open Variables tool window through SSIS > Variables top-level menu.

  2. Add an SSIS Variable and set the value directly or use Expression to generate the value.

  3. Add Azure Data Lake Analytics Task and:

    1. Set SourceType to Variable.
    2. Set SourceVariable to the SSIS Variable created now.
  4. Finish other configurations for Azure Data Lake Analytics Task.

Scenario 6-Pass parameters to U-SQL script

In some cases, you might want to dynamically set the U-SQL variable value in the U-SQL script. Parameter Mapping feature in Azure Data Lake Analytics Task helps with this scenario. There are usually two typical user cases:

  • Set the input and output file path variables dynamically based on current date and time.
  • Set the parameter for stored procedures.

Learn more about how to set parameters for the U-SQL script.

Next steps