Kafka - Consumers
Given the following Kafka consumer configuration snippet, what will be the output behavior when consuming messages?
props.put("enable.auto.commit", "false");
props.put("auto.offset.reset", "earliest");
props.put("group.id", "my-group");Assuming this consumer starts fresh with no committed offsets, what happens?
