Jackie-Jiang opened a new pull request, #14893:
URL: https://github.com/apache/pinot/pull/14893

   On top of #14797 
   Related to #14518 
   
   Added a new table hint:
   - `is_replicated` (boolean)
   
   Support local replicated join by configuring both side as local 
distribution, and also hint right table as replicated:
   ```
   SELECT /*+ joinOptions(left_distribution_type = 'local', 
right_distribution_type = 'local') */ a.col1, b.col2 FROM a JOIN b /*+ 
tableOptions(is_replicated='true') */ ON a.col1 = b.col1
   ```
   
   Also support parallelism for local exchange to increase the parallelism for 
intermediate stage with table hint `partition_parallelism`.


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