Kafka - Consumer Groups
Given the following Kafka consumer code snippet, what will happen when two consumers with the same
group.id subscribe to the same topic with 4 partitions?consumer1 = KafkaConsumer('my-topic', group_id='group1')
consumer2 = KafkaConsumer('my-topic', group_id='group1')