Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi
i have run the below code but it does not seems to be in my Release pipeline. ( it has ran for 6 hours and timed out) .i'm using azure powershell , version 5*
Login-AzureRmAccount
Select-AzureRmSubscription -Subscription "yourSubId"
$dfname = "youDataFActoryName"
$rgName = "yourResourceGroupName"
$pipe = "pipeName"
"param1" = "asdasd"
"param2" = "123456"
}
Invoke-AzureRmDataFactoryV2Pipeline -DataFactoryName $dfname -ResourceGroupName $rgName -PipelineName $pipe -Parameter $parameters
Looks like you missed a line
$parameters = @{
[https://stackoverflow.com/a/53764069
Another point to check: if Login-AzureRmAccount pass authorization. Perhaps there are not enough parameters and you not authorized to execute the following commands
i dont have parameters to pass . so i have not included it