在实施数据流动时,消除这一错误。 我已经准确地提供了所有数据流参数,如管道、管道。
Job failed due to reason: com.microsoft.dataflow.Issues: DF-ARG-007 - store is not defined - EXE-0001,Dataflow cannot be analyzed as a graph,[564 737],
source(
) ~> dummy
DF-EXPR-012 - Parameter value for FileName missing - [418 464 564 737],com.microsoft.dataflow.Parameter@597aa1ed,EXE-0001,Dataflow cannot be analyzed as a graph,
dummy derive(
) ~> derivedColumn1
DF-EXPR-012 - Parameter value for PipelineStartTime missing - [418 473 564 737],EXE-0001,Dataflow cannot be analyzed as a graph,
dummy derive(
) ~> derivedColumn1,com.microsoft.dataflow.Parameter@5954ed58
DF-EXPR-012 - Parameter value for PipelineEndTime missing - EXE-0001,Dataflow cannot be analyzed as a graph,com.microsoft.dataflow.Parameter@1819981a,
dummy derive(
) ~> derivedColumn1,[418 473 564 737]
DF-EXPR-012 - Parameter value for NoRowsRead missing - [418 473 564 737],EXE-0001,Dataflow cannot be analyzed as a graph,com.microsoft.dataflow.Parameter@47c44f0c,
dummy derive(
) ~> derivedColumn1
DF-EXPR-012 - Parameter value for Status missing
我所做的工作
The data flow that I created takes the values from the copy activity as parameters and I supplied all the parameter values correctly such as PipelineStartTime, PipelineEndTime,Status, Errors etc. But the data flow is failing by giving this error. Before giving the errors variable as parameter it was working fine but after that it started to give such errors.
对于错误变量,我提供了这一数值:
@concat( " ,replace(substring(activity( Copy data1 ).output.errors[0].Message, 0,100 ),
|
|
, ), " )
如何解决这一问题?