Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to change Data Factory in Microsoft Integration Runtime COnfiguration Manager?

I have Installed Microsoft Integration Runtime configuration Manager When I have Migrated Data from On-Premise SQL Server to Azure Data Lake and when I'm trying to use for another Azure Data Factory I don't find a space to add new key for the data factory. How to do it. Thanks in Advance

like image 613
Saranraj K Avatar asked Jul 03 '19 05:07

Saranraj K


People also ask

How do I change the integration runtime on Azure data Factory?

To reconfigure an Azure-SSIS IROn Manage hub, switch to the Integration runtimes page and select Refresh. You can edit/reconfigure your Azure-SSIS IR by selecting its name.

Is Azure data/factory same as SSIS?

Support for structured vs. unstructured data SSIS is only used for processing structured data. Essentially, Azure Data Factory can be used for tasks such as data cleansing and transformation while SSIS can only be used for data transformation.

How do I check integration runtime in Azure data Factory?

To monitor your Azure-SSIS IR in Azure portal, go to the Integration runtimes page of Monitor hub on ADF UI, where you can see all of your integration runtimes. Next, select the name of your Azure-SSIS IR to open its monitoring page, where you can see its overall/node-specific properties and statuses.


1 Answers

On the machine where your Integration Runtime is installed, you should have a file named:

C:\Program Files\Microsoft Integration Runtime\3.0\PowerShellScript\RegisterIntegrationRuntime.ps1

Running it with your domain\username as your $credential and your Key1 from ADF as your $gatewayKey will result in a re-registration, binding your local IR process to the IR identity in your new Data Factory.

Source: https://github.com/MicrosoftDocs/azure-docs/issues/7956

like image 191
Casper Lehmann Avatar answered Oct 16 '22 23:10

Casper Lehmann