Skip to content
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

Extend POSSIBLE_QUERY_OPTIONS in PinotConnection to all query level options #15179

Open
chrajeshbabu opened this issue Mar 4, 2025 · 0 comments

Comments

@chrajeshbabu
Copy link
Contributor

Currently Query options can set to Pinot connection are just null handling and multi stage engine but there are many options like timeout, usestartree etc which can be allowed to configure so extend below list to all available options.

protected static final String[] POSSIBLE_QUERY_OPTIONS = { QueryOptionKey.ENABLE_NULL_HANDLING, QueryOptionKey.USE_MULTISTAGE_ENGINE };

for (String possibleQueryOption: POSSIBLE_QUERY_OPTIONS) { Object property = properties.getProperty(possibleQueryOption); if (property != null) { _queryOptions.put(possibleQueryOption, parseOptionValue(property)); } }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants