cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How exactly do you pass parameters into a Pipeline Execute?

graham-onpoint
New Contributor II

The docs for Pipeline Execute say this about the input view:

Documents or binary data received on this view are sent to the child execution if the child Pipeline has an unlinked input view. The document or binary data can be used to specify Pipeline parameters for the child execution.

My question is โ€œhow exactly does this workโ€?

I would like to read some parameters out of an Excel file stored in Box and send those to a Child Pipeline that will read the files that this Excel file specifies.

In this case I want to read in test1.csv and test2.csv from this directory, and have this controlled from the parameters set in the Excel file.

image

Here are my parameters in the Excel file:

image

They are read into my Parent Pipeline as expected:

image

I then call Pipeline Execute (w/Reuse Executions ON as I only want this Pipeline executed once) sending it the output of the Excel Parser. This Pipeline gets a directory listing from the specified folder, filters them based on the specified match string, then reads the file from Box using another Pipeline Execute:

image

I can see in the Parent Pipeline where I would connect the Input Schema into the Parameters, but Iโ€™m not sure how to get it to read the value properly.

image

How can I get these parameter values from my Excel file into the Pipeline Execute?

1 REPLY 1

graham-onpoint
New Contributor II

I changed the format of the Excel file around to look like this:

image

Then I set up the Pipeline Execute like this:

image

Which gave me the desired output from the Pipeline Execute:

image

For what itโ€™s worth, the first file had rows with ABC, DEF, and GHI. The second file had rows with JKL, MNO, and PQR. Hereโ€™s the final output of the CSV Parser:

image

Iโ€™m sure other users wanting to do this would find it helpful to have a note about this in the Pipeline Execute documentation.