如何从CI/CD管道监视adf管道

问题描述:

我有一条CD管道,它触发了一个天蓝色的数据工厂(adf)管道,但它(CD管道)直到(adf)管道完成才等到下一个任务.我想知道CD管道中是否有任何内置功能,通过它们我可以触发和监视adf管道.

I have a CD Pipeline which triggers an azure data factory(adf) pipeline but it(CD pipeline) doesn't wait to proceed with next tasks until the(adf) pipeline completes. I wanna know that is there any inbuilt capabilities in CD pipeline through which i can trigger as well as monitor adf pipeline.

因此,我希望得到的结果是CD管道应等待adf管道完成,然后再继续执行CD管道中的下一个任务.

So, my desired outcome is that CD pipeline should wait for adf pipeline to complete before proceeding with next tasks in CD pipeline.

您可以使用Azure DevOps中的以下Powershell脚本.

You can use the following Powershell script from Azure DevOps.

$resourceGroupName  = "yourresourcegroup"
$DataFactoryName    = "yourdatafactory"
$pipelineName       = "yourpipeline"
$pollFrequency      = 1

$executionId = Invoke-AzDataFactoryV2Pipeline -ResourceGroupName $resourceGroupName -DataFactoryName $DataFactoryName -PipelineName $pipelineName

$runStatus = (Get-AzDataFactoryV2PipelineRun -ResourceGroupName $resourceGroupName -DataFactoryName $DataFactoryName -PipelineRunId $executionId).Status
While ($runStatus -eq 'InProgress') {

    Write-Host ("Pipeline {0} in progress" -f $pipelineName)
    Start-Sleep $pollFrequency

    $runStatus = (Get-AzDataFactoryV2PipelineRun -ResourceGroupName $resourceGroupName -DataFactoryName $DataFactoryName -PipelineRunId $executionId).Status
}

Write-Host ("Pipeline {0} finished with status {1}" -f $pipelineName, $runStatus)