Hisoka-X commented on PR #8916:
URL: https://github.com/apache/seatunnel/pull/8916#issuecomment-2703248003

   > > Maybe fixing ClickHouse connector's sharding logic is a better option.
   > 
   > Could you please provide more details?
   > 
   > Currently the source using SQL to query data, if we try to implement 
parallelism, we must split the SQL.
   > 
   > For example:
   > 
   > ```
   > select * from table1;
   > select * from table1 limit 10;
   > select a ,count(1) as b from table1 group by a ;
   > select a, count(1) as b from table1 group by a limit 10;
   > select a ,count(1) as b from table1 group by a  having count(1) > 10;
   > select a ,count(1) as b from table1 group by a  having count(1) > 10 limit 
10;
   > ```
   > 
   > That would be more complex.
   
   Oh I get it. Maybe we can implement query table without sql in the future.


-- 
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: commits-unsubscr...@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to