Shah
10/03/2025, 6:22 PMRavi Kumar Pilla
10/03/2025, 10:27 PM--namespace argument in kedro run command was removed in favour of --namespaces which accepts multiple namespaces. If you used the --namespace argument, you need to change it to --namespaces and pass a comma-separated list of namespaces.
Let us know if you need further information. Thank youShah
10/07/2025, 10:02 AMds_pipeline_1 = pipeline(
pipe=pipeline_instance,
inputs="presence_motion_co2_combined_cleaned_neg_removed",
namespace="active_modelling_pipeline",
)
ds_pipeline_2 = pipeline(
pipe=pipeline_instance,
inputs="presence_motion_co2_combined_cleaned_neg_zeroed",
namespace="disabled_modelling_pipeline",
)
return ds_pipeline_1 + ds_pipeline_2
However, it didn't work. Now, following the documentation that you've pointed.
In this case, the namespaces are defined in a different way, and seems its overlapping with the functionality of 'extending a base pipeline'. I mean, IMHO it seems as if namespaces do not have much utility if we are to extend base pipeline with new mapped parameters. I feel like, now, the better solution for me would be to define a base pipeline and extend it with two different pipelines.
Or may I still use namespace just to define one pipeline and execute it differently using different sets of parameters? Trying to figure this out.
Rearranging my code. Will write if I have any specific error.Shah
10/07/2025, 11:13 AMRashida Kanchwala
10/07/2025, 3:28 PMShah
10/07/2025, 3:42 PMnamespace_name. prefix, pointing to the same file. This broke the visualization flow, because the corresponding output item (the same file) was without that prefix. So, three items referring to the same file, but all detached.Shah
10/07/2025, 3:43 PM