-
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
Support inputs with multiple arguments #1933
Comments
is this feature planned to be implemented in the upcoming releases? It would be great to have it in KFP |
At this moment there we have no bandwidth for implementing this feature. It needs many places to change. What is the scenario where you might want this feature? |
Does anyone have a pattern to make something like this work? The only hacks I've thought of would be maybe something like a simple shell call that takes the values from TaskB-1...TaskB-N and concatenates them to a single string (json or just space deliminated) or maybe to lines in a file, then TaskC takes that concatenation as input and knows how to parse it Other ideas might be that TaskB-* concatenate their results somewhere central and TaskC grabs from there. So maybe TaskB-* write results to the same location, and TaskC grep's from there? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically closed because it has not had recent activity. Please comment "/reopen" to reopen it. |
Any news on this feature ? :) |
This feature request is closely related to #3412 |
* Add feature to use grpc Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Add custom grpc transformer example Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Add gRPC transformer example Signed-off-by: Dan Sun <dsun20@bloomberg.net> * add cifar image input file Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Add triton grpc transformer e2e test Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Add protocol arg for grpc Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Convert to list Signed-off-by: Dan Sun <dsun20@bloomberg.net> * Fix python test action Signed-off-by: Dan Sun <dsun20@bloomberg.net>
Closing this issue. No activity for more than a year. /close |
@rimolive: 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. |
Need to support variadic inputs in ComponentSpec, Lightweight components, load_component etc.
In command-line we can pass multiple inputs as repeated command-line parameters:
--a 1 --a 2
.In TaskSpec we can make argument a list:
arguments: {a: [1, 2]}
.In inputSpec we could add
repeated: true
orallowMultiple: true
property.In ContainerImplementation we could specify the command args as follows:
{map: {source: {inputValue: RepInput}, selector: [--a, {item}] }}
Related: #1901
The text was updated successfully, but these errors were encountered: