Kafka - Consumers
What is wrong with the following code snippet for committing offsets manually?
consumer.poll(Duration.ofMillis(1000)); consumer.commitAsync(); consumer.close();
