我有一个管道运行(8735cc10-80db-4401-8f9e-516d733b450e)。从活动运行页面,我看到管道正在运行,但是从Pipleline Runs页面,它显示了失败状态。
有没有办法从UI取消此管道?
答案 0 :(得分:2)
最简单的方法是使用powershell。
从此处下载用于powershell的Azure sdk:https://azure.microsoft.com/en-us/downloads/然后运行:
Login-AzureRmAccount
Select-AzureRmSubscription -SubscriptionName "SubscName"
Stop-AzureRmDataFactoryV2PipelineRun -ResourceGroupName "Name" -DataFactoryName "DataFactoryName" -PipelineRunId 8735cc10-80db-4401-8f9e-516d733b450e
替换为您自己的名字。
希望这有帮助!