Hey Team! :hand: I have multiple kedro pipelines ...
# questions
a
Hey Team! I have multiple kedro pipelines in my project. Each kedro pipeline is also namespaced by its own name. For example, a pipeline named
my_pipeline
is namespaced as
my_pipeline
to allow multiple benefits (separation of parameters, filtering of nodes using namespace + tags etc). But the following command fails:
Copy code
kedro run --namespace=my_pipeline
with the error:
Copy code
ValueError: Pipeline does not contain nodes with namespace 'my_pipeline'
But it works when I include the pipeline name
Copy code
kedro run --pipeline=my_pipeline --namespace=my_pipeline
But it fails if I pass it any other namespace (expected)
Copy code
kedro run --pipeline=my_pipeline --namespace=xyz
Can you help me where I am going wrong here? Seems like something very basic I am missing! Thanks! 🙂
Update: I think I know what is happening.
kedro run --namespace=my_pipeline
will search for nodes with namespace in the default pipeline and not across all pipelines.
K 1