-
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
input parameter for creating pipelines - does not allow camelCase #445
Comments
Seems you already have an experiment with this name. Experiment names have to be unique. From the error message: |
i did use a new name but it still throws a different error. once I removed the camel style in the input parameters, the problem goes away. I have verified with Sina Chavoshi from Google team during my EAP for Kubeflow Pipelines. |
I see. Can you please include the other error here to help us debug the issue? I'll re-open it for now, but please update the description since the error mentioned here is just a name conflict. |
The problem results from the DSL parameter sanitation while the python SDK does not. |
this is reasonable diagnosis. is there any solution or fix? thanks |
solved by this PR: #466 |
The next release will contain this fix. However, if you want, you could build the sdk yourself: the swagger and jdk are dependent softwares to build the sdk. |
/close |
@gaoning777: Closing this issue. In response to this:
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. |
1 similar comment
@gaoning777: Closing this issue. In response to this:
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. |
When creating a Kubeflow pipeline, the input parameter cannot allow camel case.
Example:
Accepted: params = {'mystate': 'abc.csv', 'myfile': 'gs://smartpipe/pipestate01.txt'}
Error: params = {'myState': 'abc.csv', 'myFile': 'gs://smartpipe/pipestate01.txt'}
is lack of support of camel case a restriction (e.g. argo restriction) or a software bug?
h1. Error message details
The text was updated successfully, but these errors were encountered: