-
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
Add samples to manage Azure Databricks in Kubeflow Pipelines #2709
Add samples to manage Azure Databricks in Kubeflow Pipelines #2709
Conversation
azure-samples/kfp-azure-databricks folder contains a set of Ops which allow us to manage Azure Databricks resources directly from our Kubeflow Pipelines. These Ops leverage Azure Databricks Operator for Kubernetes to manage those resources. They wrap ResourceOp and abstract pipeline users from Kubernetes Operator details. Supported Ops: * CreateClusterOp, to create a cluster in Databricks. * DeleteClusterOp, to delete an existing cluster from Databricks. * CreateJobOp, to create a Spark Job in Databricks. * DeleteJobOp, to delete an existing Spark Job from Databricks. * SubmitRunOp, to submit a Job Run in Databricks. * DeleteRunOp, to delete an existing Run. azure-samples/databricks-pipelines folder contains several pipeline samples: * databricks_operator_*.py samples show how to use ResourceOp to manage Databricks resources using Azure Databricks Operator. * databricks_pkg_*.py samples show how to use Ops in kfp-azure-databricks package to do the same.
Hi @magencio. Thanks for your PR. I'm waiting for a kubeflow member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
samples/contrib/azure-samples/databricks-pipelines/compile_upload_run.sh
Outdated
Show resolved
Hide resolved
samples/contrib/azure-samples/databricks-pipelines/compile_upload_run.sh
Outdated
Show resolved
Hide resolved
samples/contrib/azure-samples/databricks-pipelines/databricks_operator_cluster_pipeline.py
Outdated
Show resolved
Hide resolved
samples/contrib/azure-samples/kfp-azure-databricks/databricks/_cluster_op.py
Show resolved
Hide resolved
samples/contrib/azure-samples/kfp-azure-databricks/databricks/_cluster_op.py
Show resolved
Hide resolved
samples/contrib/azure-samples/kfp-azure-databricks/databricks/_cluster_op.py
Outdated
Show resolved
Hide resolved
samples/contrib/azure-samples/kfp-azure-databricks/databricks/_job_op.py
Outdated
Show resolved
Hide resolved
samples/contrib/azure-samples/databricks-pipelines/pipeline_cli.py
Outdated
Show resolved
Hide resolved
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: numerology 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 |
…beflow#2709) Signed-off-by: Dan Sun <dsun20@bloomberg.net>
This PR adds the following to the samples/contrib folder:
azure-samples/kfp-azure-databricks folder contains a set of Ops which
allow us to manage Azure Databricks resources directly from our Kubeflow
Pipelines.
These Ops leverage Azure Databricks Operator for Kubernetes to manage
those resources. They wrap ResourceOp and abstract pipeline users from
Kubernetes Operator details.
Supported Ops:
azure-samples/databricks-pipelines folder contains several pipeline
samples:
manage Databricks resources using Azure Databricks Operator.
kfp-azure-databricks package to do the same.
Additional question to the reviewer:
This change is