Has anyone worked on Kafka manual commit using Apache camel, we are not finding any clue to implement it, We are trying to do so using camel router as :
from("kafka:{{kafka.hostname}}:{{kafka.port}}?topic={{kafka.topic}}&groupId={{kafka.consumer.groupid}}&autoOffsetReset=none&autoCommitEnable=false&maxPollRecords=3").process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {.....}).end();
Kindly help us out in the issue,
Thanks.