Fazil B. Topal
09/07/2023, 1:05 PMdefault
because names are not unique. Is recommended way to solve this using tags or namespaces? Or do i have to change the names to be unique manually?datajoely
09/07/2023, 1:17 PMFazil B. Topal
09/07/2023, 3:07 PMmodelA.orders: ...
modelB.orders: ...
modelC.orders: ...
modelA.pipeline: ...
modelB.pipeline: ...
modelC.pipeline: ...
So namespaces (when i pass to pipeline
function) creates/looks for the following entry in the catalog:
modelA.modelA.orders
which i solve by not being explicit but i have the following function
node(
func: ...
inputs={
modelA=modelA.pipeline,
modelB=modelB.pipeline,
modelC=modelC.pipeline,
}
)
How can pass this without being explicit? ๐คdatajoely
09/07/2023, 3:39 PMFazil B. Topal
09/07/2023, 3:41 PMnamespace
anywhere but explicityle created catalog/params with modelA/B/C prefix.datajoely
09/07/2023, 3:42 PMFazil B. Topal
09/07/2023, 3:42 PMdatajoely
09/07/2023, 3:43 PMds_pipeline_1 = pipeline(
pipe=pipeline_instance,
inputs="model_input_table",
namespace="active_modelling_pipeline",
)
Fazil B. Topal
09/07/2023, 3:44 PMdatajoely
09/07/2023, 3:46 PMFazil B. Topal
09/07/2023, 3:49 PMdrivingTime.modelPipeline#s3
datajoely
09/07/2023, 3:58 PMnamespace=
kwarg?Fazil B. Topal
09/07/2023, 4:00 PMmodelA.modelA.orders
so kind of double namespace issuedatajoely
09/07/2023, 4:01 PM.
since thatโs somewhat reservedFazil B. Topal
09/07/2023, 4:02 PM