How can I get kedro to run all my nodes sequential...
# questions
j
How can I get kedro to run all my nodes sequentially?
d
they will automatically run in the order required by the different data inputs, i.e. ‘topologically’. You can pass unused data from one node to another to force a specific sort order
j
I need a specific node to run that will create a parameter yml file. the parameters in this file will then be ingested by the folllowing nodes.
d
Ooooh we don’t actually encourage that pattern since it breaks reproducibility
I guess you could do a
before_pipeline_run
hook to keep it sort of within kedro
j
I see. Thanks.