You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will need an instance of Azure Data Factory to implement this walk through. If you do not have one already provisioned, you can follow the steps in [Quickstart: Create a data factory by using the Azure portal and Azure Data Factory Studio](quickstart-create-data-factory-portal.md).
27
+
28
+
### Azure-SSIS Integration Runtime (IR)
24
29
If you have not provisioned your Azure-SSIS IR already, provision it by following instructions in the [tutorial](./tutorial-deploy-ssis-packages-azure.md).
25
30
26
31
## Create and schedule ADF pipelines that start and or stop Azure-SSIS IR
@@ -36,50 +41,13 @@ For example, you can create two triggers, the first one is scheduled to run dail
36
41
37
42
If you create a third trigger that is scheduled to run daily at midnight and associated with the third pipeline, that pipeline will run at midnight every day, starting your IR just before package execution, subsequently executing your package, and immediately stopping your IR just after package execution, so your IR will not be running idly.
38
43
39
-
### Create your ADF
40
-
41
-
1. Sign in to [Azure portal](https://portal.azure.com/).
42
-
2. Click **New** on the left menu, click **Data + Analytics**, and click **Data Factory**.
3. In the **New data factory** page, enter **MyAzureSsisDataFactory** for **Name**.
47
-
48
-
:::image type="content" source="./media/tutorial-create-azure-ssis-runtime-portal/new-azure-data-factory.png" alt-text="New data factory page":::
49
-
50
-
The name of your ADF must be globally unique. If you receive the following error, change the name of your ADF (e.g. yournameMyAzureSsisDataFactory) and try creating it again. See [Data Factory - Naming Rules](naming-rules.md) article to learn about naming rules for ADF artifacts.
51
-
52
-
`Data factory name MyAzureSsisDataFactory is not available`
53
-
54
-
4. Select your Azure **Subscription** under which you want to create your ADF.
55
-
5. For **Resource Group**, do one of the following steps:
56
-
57
-
- Select **Use existing**, and select an existing resource group from the drop-down list.
58
-
- Select **Create new**, and enter the name of your new resource group.
59
-
60
-
To learn about resource groups, see [Using resource groups to manage your Azure resources](../azure-resource-manager/management/overview.md) article.
61
-
62
-
6. For **Version**, select **V2** .
63
-
7. For **Location**, select one of the locations supported for ADF creation from the drop-down list.
64
-
8. Select **Pin to dashboard**.
65
-
9. Click **Create**.
66
-
10. On Azure dashboard, you will see the following tile with status: **Deploying Data Factory**.
67
-
68
-
:::image type="content" source="media/tutorial-create-azure-ssis-runtime-portal/deploying-data-factory.png" alt-text="deploying data factory tile":::
69
-
70
-
11. After the creation is complete, you can see your ADF page as shown below.
71
-
72
-
:::image type="content" source="./media/tutorial-create-azure-ssis-runtime-portal/data-factory-home-page.png" alt-text="Data factory home page":::
73
-
74
-
12. Click **Author & Monitor** to launch ADF UI/app in a separate tab.
75
-
76
44
### Create your pipelines
77
45
78
46
1. In the home page, select **Orchestrate**.
79
47
80
-
:::image type="content" source="./media/doc-common-process/get-started-page.png" alt-text="Screenshot that shows the ADF home page.":::
48
+
:::image type="content" source="./media/how-to-invoke-ssis-package-stored-procedure-activity/orchestrate-button.png" alt-text="Screenshot that shows the Orchestrate button on the Azure Data Factory home page.":::
81
49
82
-
2. In **Activities** toolbox, expand **General** menu, and drag & drop a **Web** activity onto the pipeline designer surface. In **General** tab of the activity properties window, change the activity name to **startMyIR**. Switch to **Settings** tab, and do the following actions:
50
+
2. In the **Activities** toolbox, expand **General** menu, and drag & drop a **Web** activity onto the pipeline designer surface. In **General** tab of the activity properties window, change the activity name to **startMyIR**. Switch to **Settings** tab, and do the following actions:
83
51
> [!NOTE]
84
52
> For Azure-SSIS in Azure Synapse, use corresponding Azure Synapse REST API to [Get Integration Runtime status](/rest/api/synapse/integration-runtimes/get), [Start Integration Runtime](/rest/api/synapse/integration-runtimes/start) and [Stop Integration Runtime](/rest/api/synapse/integration-runtimes/stop).
85
53
@@ -183,7 +151,7 @@ Now that your pipelines work as you expected, you can create triggers to run the
183
151
4. In **Trigger Run Parameters** page, review any warning, and select **Finish**.
184
152
5. Publish the whole ADF settings by selecting **Publish All** in the factory toolbar.
0 commit comments