I have a regular, non-namespaced pipeline followed...
# questions
g
I have a regular, non-namespaced pipeline followed by namespaced pipelines that depend on the outputs of the first one.
kedro run
runs everything fine but
kedro run --namespace xx
only executes the namespaced pipelines and skips the initial one, relying on outdated outputs. how to execute the initial one also when specifying the
--namespace
?
h
Hey @Gauthier Pierardi, I believe this is expected behavior —
kedro run --namespace
will only execute the nodes within that namespace, not the regular ones. As far as I know, there isn't currently a way to run both at the same time.
g
Ok, thanks for clarifying
np 1