Shekharrajak commented on PR #189:
URL: 
https://github.com/apache/flink-connector-kafka/pull/189#issuecomment-3243845501

   Using Flink SQL, we can have some validation : 
   
   ```
   CREATE TABLE kafka_share_source (
         message STRING
     ) WITH (
         'connector' = 'kafka-sharegroup',
         'bootstrap.servers' = 'localhost:9092',
         'share-group-id' = 'flink-sql-test-group',
         'topic' = 'test-topic',
         'format' = 'raw',
         'source.parallelism' = '4'  -- 4 subtasks regardless of partition count
     );
    
   select * from kafka_share_source;
   
   ```
   
   <img width="2728" height="1146" alt="dafd0c9c-ec40-4af2-a929-ca27007076d8" 
src="https://github.com/user-attachments/assets/a65f823a-0d88-4ebe-8102-2b171ed1d690";
 />
   


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

Reply via email to