How can I get the pipeline name, while customizing my own component in TFX?
I checked if I customize BaseDriver, it is possible but not in some IR-based portable runner including KubeFlowDagRunner which is located in tfx/orchestration/portable/. And I also checked I can fetch run_id, pipeline_pb2.PipelineNode, or pipeline_pb2.PipelineInfo but not pipeline name.
Since itβs a custom component, you can customize the inputs. When you create the pipeline, can you add the pipeline name as an input parameter to the component?
I got it
Actually that was a first approach to get the name. I thought it may be possible since some pipeline informations can be accessed in the custom component.