-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDK - Make it easier to compile and submit a pipeline run #1484
SDK - Make it easier to compile and submit a pipeline run #1484
Conversation
Adds the `Client.run_pipeline_func_on_kfp(func)` function that compiles the pipeline and submits it for execution on KFP-enabled cluster.
a2e6930
to
e2bd45b
Compare
In fact, I'm seeing too much benefits from this API because users still need to input many arguments. On the other hand, exposing more interfaces means more work for backward compatibility support. |
The users only need This function greatly reduces the common boilerplate everyone has to do especially when developing in notebook. Makoto had the same usability issue and had to write the same helper function. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Ark-kun The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Adds the
Client.run_pipeline_func_on_kfp(func)
function that compiles the pipeline and submits it for execution on KFP-enabled cluster.This change is