Replies: 1 comment 1 reply
-
|
Pipelines and components share the same YAML format, you can reuse and nest pipelines just like what you would do with components. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
KFPv2 introduced nested pipelines. Would it be possible to reuse a nested pipeline definition as we can with shared components?
Let me explain my scenario. In our project, we use Ray, so we have a number of simple pipelines that usually contain components to start a Ray cluster, execute a job, and remove the Ray cluster. These pipelines can also include other components/tasks.
Now, I would like to combine several of these simple pipelines into a single "super" pipeline. While I could create one large pipeline definition file with all the nested pipelines, the file would be huge, and I would prefer to reuse the existing simple pipeline definitions.
It would be ideal if we could create a nested pipeline from files (Python or YAML).
What do you think?
Beta Was this translation helpful? Give feedback.
All reactions