如何取消管道 -- 没有取消按钮可用

Raj*_*esh 0 azure azure-data-factory

我有一个正在运行的管道 (8735cc10-80db-4401-8f9e-516d733b450e)。从活动运行页面,我看到管道正在运行,但从管道运行页面,它显示失败状态。

有没有办法取消从 UI 运行的这个管道?

Mar*_*ita 6

执行此操作的最简单方法是从 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
Run Code Online (Sandbox Code Playgroud)

替换为您自己的名字。

希望这有帮助!