-
Hi everyone! First, thank you for this awesome plugin :) I have a question regarding the execution of specific pipelines on VertexAI. Is there a way to accomplish this? For example, I would like to run my training pipeline at one time, and the predict pipeline at another. I tried building a Docker image that receives as input the name of the pipeline I want to execute. The part of the Dockerfile responsible for this is:
When I use this Dockerfile to build an image and run the pipeline, it always executes the whole pipeline. I'm not sure if there's an error in my code or if it's not supported by the plugin. Any help is very much appreciated :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
How are you invoking your pipeline? There is no need to change the |
Beta Was this translation helpful? Give feedback.
-
Indeed, I was simply using the |
Beta Was this translation helpful? Give feedback.
How are you invoking your pipeline? There is no need to change the
Dockerfile
to run different pipeline,just use
kedro vertexai run-once --pipeline=<name of your pipeline>