0
votes

I am actually working with the Azure Data Factory, So my aim is to run the pipeline from the specified start and end date.

So for that, I am using the Tumbling Window trigger for triggering the pipeline.

Code:

(trigger().outputs.windowStartTime and trigger().outputs.windowEndTime),

enter image description here

Error:

enter image description here

The expression 'trigger().outputs.windowStartTime' cannot be evaluated because property 'windowStartTime' doesn't exist, available properties are 'headers, body'.

Question

How can I pass the Tumbling Window parameters to a Data Factory pipeline in the Data Factory UI?

1
Seems, this would help you - stackoverflow.com/questions/55455863/… - Arulmouzhi

1 Answers

1
votes

This is because you set trigger().outputs.windowStartTime and trigger().outputs.windowEndTime in the variable. In fact, you should set them in the parameter, like this:

enter image description here

Then you need to check your Trigger code, if there aren't these parameters, you need to add them.

enter image description here.

enter image description here