是否可以不为暂停的 ADF 管道指定开始/结束?



我有两个使用同一数据集的 ADF 管道。我希望暂停第一个管道,直到以后想使用它。我使用

"isPaused" : "true"

如果我尝试使用"start""end"属性部署它,则部署失败,因为我收到错误

Entity provisioning failed: Cannot set active period Start=05/11/2018 06:00:00, End=12/31/9991 23:59:59 for pipeline 'Pipeline1' due to conflicts on Output: Output1 with Pipeline: Pipeline2, Activity Activity1, Period: Start=05/11/2018 06:00:00, End=01/01/9992 00:00:00 Output: Output2 with Pipeline: Pipeline2, Activity3, Period: Start=05/11/2018 06:00:00, End=01/01/9992 00:00:00 Output: Output3 with Pipeline: Pipeline2, Period: Start=05/11/2018 06:00:00, End=01/01/9992 00:00:00 . Try changing the active period or using autoResolve option when setting the active period.

我只想知道跳过"start""end"属性是否会导致任何地方出现任何错误。

到时候我得找另一种解决冲突的方法。

也许您想查看执行管道活动。它可以调用管道内的另一个管道。https://learn.microsoft.com/en-us/azure/data-factory/control-flow-execute-pipeline-activity

最新更新