Currently, I am using KafkaSource to get the records from multiple event streams. Each event stream is having one partition. I would like to check if rebalancing happens across the Flink app's having same consumer group.
Expectation: One Flink application would process the message while other one won’t get any message as they both are in the same consumer grp.
Actual: Both the app’s are getting the same message, even though the consumer group name is same.
Is this the expected behavior?