cbalci opened a new pull request, #10443:
URL: https://github.com/apache/pinot/pull/10443

   Adding Spark connector option for passing Pinot query options.
   
   Example:
   ```
   val data = spark.read
     .format("pinot")
     .option("table", "myTable")
     .option("tableType", "OFFLINE")
     .option("queryOptions", "enableNullHandling=true,maxExecutionThreads=1") 
// <- new
     .load()
   ```
   
   Also includes a bugfix which allows the Spark connector to return `null` 
values instead of their placeholders.
   
   **Testing**
   - Unit tests are updated
   - Ran the suite of integration tests (`ExampleSparkPinotConnectorTest`) 
against a Pinot cluster successfully 
   
   `feature` `bugfix`
   `release-notes` (Spark connector now accepts Pinot query options)


-- 
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