是否可以将 Azure 数据工厂管道 runid 添加到 Azure 数据流?
Is it possible to add an Azure Data Factory pipeline runid to an Azure Data Flow?
在我的 ADF 数据流中,我想将管道 runID 添加为一列。无法在数据流中添加引用管道 runId 的动态值。
还有其他方法可以实现吗?
是的,您可以在数据流中添加一个参数并将其值设置为 @pipeline().RunId
。然后创建一个 DerivedColumn activity 并添加一个值为 $pipelineRunId
.
的列
详情:
1.create 数据流中的一个参数。
2.set 这个参数的值。
3.create 一个 DerivedColumn activity 并添加一列。
在我的 ADF 数据流中,我想将管道 runID 添加为一列。无法在数据流中添加引用管道 runId 的动态值。
还有其他方法可以实现吗?
是的,您可以在数据流中添加一个参数并将其值设置为 @pipeline().RunId
。然后创建一个 DerivedColumn activity 并添加一个值为 $pipelineRunId
.
详情:
1.create 数据流中的一个参数。
2.set 这个参数的值。
3.create 一个 DerivedColumn activity 并添加一列。