chrajeshbabu opened a new issue, #15179:
URL: https://github.com/apache/pinot/issues/15179

   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));
         }
       }
   `


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to