Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
johnpressdee opened this issue Jul 5, 2024 · 1 comment

Comments

@johnpressdee
Copy link

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

@furmangg
Copy link
Owner

furmangg commented Jul 5, 2024

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants