-
Notifications
You must be signed in to change notification settings - Fork 89
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
[duckdb] Created a CLI tool to interact with DuckDBDaVinciRecordTransformer #1473
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Koorous! Left some comments to try and make this more widely usable...
...e-duckdb/src/main/java/com/linkedin/venice/duckdb/DuckDBDaVinciRecordTransformerExample.java
Outdated
Show resolved
Hide resolved
...e-duckdb/src/main/java/com/linkedin/venice/duckdb/DuckDBDaVinciRecordTransformerExample.java
Outdated
Show resolved
Hide resolved
...e-duckdb/src/main/java/com/linkedin/venice/duckdb/DuckDBDaVinciRecordTransformerExample.java
Outdated
Show resolved
Hide resolved
...e-duckdb/src/main/java/com/linkedin/venice/duckdb/DuckDBDaVinciRecordTransformerExample.java
Outdated
Show resolved
Hide resolved
|
||
Options parameterOptionsForHelp = new Options(); | ||
for (Object obj: options.getOptions()) { | ||
Option o = (Option) obj; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we use instanceOf to check whether the obj is an Option or we are pretty sure they are?
[duckdb] Created a CLI tool to interact with DuckDBDaVinciRecordTransformer
This PR creates a CLI tool to interact with DuckDBDaVinciRecordTransformer, similar to the AdminTool.
How was this PR tested?
I tested this locally pointed to a store that exists, but for the purpose of releasing this to OSS I generalized the variables.
Does this PR introduce any user-facing changes?