We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The auto.commit.interval.ms is hardcoded to zero. I believe it means the Kafka client commits/ACKs after every poll() when auto commit is enabled.
auto.commit.interval.ms
https://github.com/morganstanley/modern-cpp-kafka/blob/a146d10bcf166f55299c7a55728abaaea52cb0e5/include/kafka/KafkaConsumer.h#L355C15-L355C15
The text was updated successfully, but these errors were encountered:
It's done on purpose, but not commit after the poll(), -- it would commit with the next poll().
commit after the poll()
commit with the next poll()
Sorry, something went wrong.
No branches or pull requests
The
auto.commit.interval.ms
is hardcoded to zero. I believe it means the Kafka client commits/ACKs after every poll() when auto commit is enabled.https://github.com/morganstanley/modern-cpp-kafka/blob/a146d10bcf166f55299c7a55728abaaea52cb0e5/include/kafka/KafkaConsumer.h#L355C15-L355C15
The text was updated successfully, but these errors were encountered: