<How do I run a Kedro pipeline on a particular inp...
# questions-so
r
How do I run a Kedro pipeline on a particular input csv dataset that contains a list of requests that have to be evaluated My main input is a list of checks (in a csv file) that I have to evaluate on a huge dataset. In my main node, I parse the csv file, and for each row, I get the corresponding data from the catalog, extract the data, conduct my analysis and finally, if I have 5 rows in my input csv file, I append all 5 outputs (which is a lot of rows) vertically on top of each other (because the number of datasets my pipeline returns depends on the number of rows in the input csv file, and in Kedro you can only...