Hello everyone, I am using Kedro to run two differ...
# questions
a
Hello everyone, I am using Kedro to run two different pipelines where the second depends on the first, so in the function
create_pipeline(**kwargs)->Pipeline
I have something of this kind:
return pipeline1 + pipeline2
. The problem is that
pipeline2
uses a dataset generated by
pipeline1
and when I try to run the pipelines locally it returns an error as if the dataset does not exist, i.e. the
pipeline1
is not executed at the moment of the execution of
pipeline2
. My question is, is there a way to ensure that
pipeline1
is run BEFORE
pipeline2
?
n
Can you share the stack trace?
is the pipeline connected? you can check with
kedro viz
the way Kedro execute pipeline depends of these input/output dependencies, if pipeline 2 depends on pipeline 1 , it's guaranteed that it will execute it first