Re: Help - Unable to read Key from Kafka messages in Flink SQL Client

2025-05-28 Thread Gunnar Morling
Hey Siva, Can you try adding the following to your table's configuration: 'value.fields-include' = 'EXCEPT_KEY' Best, --Gunnar On Wed, 28 May 2025 at 20:52, Siva Ram Gujju wrote: > Hello, > > I am new to Flink. Running into an issue to read Key from Kafka messages > in Flink SQL Client.

Help - Unable to read Key from Kafka messages in Flink SQL Client

2025-05-28 Thread Siva Ram Gujju
Hello, I am new to Flink. Running into an issue to read Key from Kafka messages in Flink SQL Client. I have an Order Kafka topic with below messages: Key: {"orderNumber":"1234"} Value: {"orderDate":"20250528","productId":"Product123"} I am able to get the key and value by using kafka-console-c