See this snippet from the Camel KafkaConsumer

if (endpoint.isAutoCommitEnable() != null && !endpoint.isAutoCommitEnable())
{
    if (processed >= endpoint.getBatchSize()) {
        consumer.commitSync();
        processed = 0;
    }
}

By my reading if enable.auto.commit is set to false, then it should not
perform this synch.

Yet this code does perform a commit

Is this a bug in the code? I am using version 2.17.1




--
View this message in context: 
http://camel.465427.n5.nabble.com/Kafka-Camel-Consumer-Ignores-enable-auto-commit-tp5789054.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to