-
Notifications
You must be signed in to change notification settings - Fork 9
feat: make producer and consumer CLI arguments nicer #124
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
feat: make producer and consumer CLI arguments nicer #124
Conversation
|
I have run the commands in |
This PR changes the string that is given to select consumers and producers from being the respective class name to a shorter string. For example `--producer=DuckDBProdcuer` becomes `--producer=duckdb`. Signed-off-by: Ingo Müller <ingomueller@google.com>
9971b11 to
2df071f
Compare
Thanks! Were you able to get a new producer_results.csv and consumer_results.csv after running those commands? If so, you can just update those in this PR as well |
Signed-off-by: Ingo Müller <ingomueller@google.com>
Done! I hadn't understood that those were tracked in the repo but I added them now. It seems like quite a few results flipped from |
Ibis has had a bunch of updates/issues since this was last run, so I can't really speak about those results. As for isthmus...i think I was previously passing all the |
… and consumer parameters (#44727) ### Rationale for this change The nightly job for substrait integration is failing due to a change on the consumer-testing: - substrait-io/consumer-testing#124 ### What changes are included in this PR? Update to new parameter. ### Are these changes tested? Via archery ### Are there any user-facing changes? No * GitHub Issue: #44726 Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
… and consumer parameters (#44727) ### Rationale for this change The nightly job for substrait integration is failing due to a change on the consumer-testing: - substrait-io/consumer-testing#124 ### What changes are included in this PR? Update to new parameter. ### Are these changes tested? Via archery ### Are there any user-facing changes? No * GitHub Issue: #44726 Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
This PR changes the string that is given to select consumers and producers from being the respective class name to a shorter string. For example
--producer=DuckDBProdcuerbecomes--producer=duckdb.