-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
[bug] urllib3 breaks lightweight components in Vertex AI and kubeflow pipelines with 2.0.x #9326
Comments
Fixed in: #9323 |
This issue is resolved in the latest v1 and v2 releases: Preferred solution Alternative solutions
with
If for some reason you cannot use @dsl.component(packages_to_install=['urllib3<2.0'])
def identity(string: str) -> str:
return string |
Root Cause Impact
This is because Other component types (Containerized Python Components and Container Components) are unaffected. We recommend that production workloads use these component types (namely pre-built container images). Long Term Improvements |
Environment
kfp[all]==2.0.0b15 # Although the version seems to impact all kfp versions see issue 930
How do you deploy Kubeflow Pipelines (KFP)?
Vertex AI Pipelines
KFP version:
Vertex AI Pipelines
KFP SDK version:
kfp[all]==2.0.0b15
Steps to reproduce
I have created a repo that with the only dependency being:
kfp[all]==2.0.0b15
and run this component:This fails:
This is tracked in the repo: branch issue/compile
Now, pinning the urllib dependency:
Makes the pipeline compile. but then when running on vertex it fails :
With the same component.
Now technically all my pipelines are failing and the only solution we think with our team is to pin urllib in each lightweight component.
This is tracked in this repo (both logs, and the compiled yaml can be found) in here branch issue/running
Expected result
Pipeline run succesfully
Materials and reference
Resources: https://github.com/Davidnet/kubeflow_request_issue
Labels
/area backend
/area sdk
/area components
Impacted by this bug? Give it a 👍.
The text was updated successfully, but these errors were encountered: