furmangg/automating-azure-analysis-services

ProcessAzureAS MSI - Could not load resource 'ProcessAzureAS MSI' because it is referencing a non-existent resource named: 'AutoResolveIntegrationRuntime'

Opened this issue · 1 comments

Hi,

Just found this code and wanted to utilise to automate the processing of a tabular model on our Azure Analysis Services.

I have followed the code but when I create a pipeline called ProcessAzureAS MSI and then add the code from the file it always gives the same error:

Could not load resource 'ProcessAzureAS MSI' because it is referencing a non-existent resource named: 'AutoResolveIntegrationRuntime'

I have checked in Data Factory and the AutoResolveIntegrationRuntime is listed under integration runtimes and these are the settings:

{
"name": "AutoResolveIntegrationRuntime",
"properties": {
"type": "Managed",
"typeProperties": {
"computeProperties": {
"location": "AutoResolve",
"dataFlowProperties": {
"computeType": "General",
"coreCount": 8,
"timeToLive": 0
}
}
}
}
}

It has a status of running.

Do you have any suggestions on this? Do I need to edit any of the code before pasting it (there was nothing in the notes that said to edit it).

Your help would be much appreciated.

Thanks

That's surprising since your integration runtime has the default name and the same settings as mine.

I would suggest you edit each web activity and go to Settings... Advanced... Integration Runtime and make sure you pick your integration runtime.

image

Alternately you could edit the JSON for the pipeline and remove any references to integration runtimes like:

                "connectVia": {
                    "referenceName": "AutoResolveIntegrationRuntime",
                    "type": "IntegrationRuntimeReference"
                },

Let us know if this works!