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

   This enables creation of `BYTES` columns containing Theta/HLL sketches 
during ingestion.
   
   Note I've added these in `pinot-core` as I didn't know if I should add the 
datasketches/clearspring dependencies to `pinot-common`
   
   Can be activated like so:
   
   ```json
   {
     "transformConfigs": [
       {
         "columnName": "players",
         "transformFunction": "DistinctCountRawThetaSketch(playerID)"
       },
       {
         "columnName": "names",
         "transformFunction": "DistinctCountRawHLL(playerName)"
       }
     ]
   }
   ```


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