Reputation: 327
In Azure Data Factory V2, how to process azure analysis service cube?
I am able to use Azure Automation Account to run runbook powershell script to process cube automatically. However, I want to add cube processing into my ETL process developed on ADF V2.
Can you please advise?
Upvotes: 3
Views: 5105
Reputation: 11625
My preferred approach for processing Azure Analysis Services from ADFv2 is to use built-in Web Activities along with the built-in MSI authentication. A sample can be found here.
Upvotes: 1
Reputation: 3838
You can set-up a Webhook from the Azure Automation runbook and call that URL endpoint from an ADF pipeline Web Activity using POST method.
Or, here is an example of processing AAS cubes using Web Activity, but calling a Logic Apps endpoint instead of an Automation Webhook (Thanks to Jorg Klein for this tip):
Upvotes: 4