Is it possible to do `kedro run --namespace abc,&l...
# questions
m
Is it possible to do
kedro run --namespace abc,<__default__>
so that my base pipeline (not modular, without namespace - it produces input to my namespaced pipelines) runs as well as my modular pipeline marked with
abc
namespace?
n
Top of my head it’s not supported, is it possible to pass multiple namespace argument?
🫥 1
m
I don't think so, neither it is possible to point to the "default", right?
n
To point to the default, you simply don't pass the namespace argument?
m
Yeah, but wouldn’t it then run everything? (no namespace param = no filtering)
n
Ah I see you want to run pipelines without namespace only.
this 1
Would you share the structure of these pipeline? What are the namespace one and the non namespace one? There are definitely something we can do here but I feel that the problem may be more fundamental
m
1. I have data_processing pipeline from spaceflights starter = no namespaces 2. I have multiple, modular data_science pipelines = namespaced I want to run data_processing (w/o ns) + one of the data_science (with single ns)
👍🏼 1
n
So it’s a fork structure with the data processing pipeline being the parent and the namespace pipeline are independent branches?
this 1
Feel free to create an issue, or I can create one later.
I create the ticket here - feel free to supplement https://github.com/kedro-org/kedro/issues/3056
👍 1
m
Thx!