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

   Flink-SQL: 
   
   ```
    //  {"order_id":1001,"customer_id":"C001","quantity":2,"price":25.50}
      CREATE TABLE orders_share_group (
         order_id BIGINT,
         customer_id STRING,
         quantity INT,
         price DECIMAL(10, 2)
     ) WITH (
         'connector' = 'kafka-sharegroup',
         'topic' = 'orders',
         'bootstrap.servers' = 'localhost:9092',
         'share-group-id' = 'flink-orders-sharegroup',
         'format' = 'json'
   
     );
   
     select * from orders_share_group;
   ```
   <img width="1190" height="267" alt="image" 
src="https://github.com/user-attachments/assets/4aaa706c-21e3-4883-8998-4f55916518d0";
 />
   


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