Kafka retry commit async on fail - why should I do so?
up vote
0
down vote
favorite
I use commit async with kafka (obviously without auto-commit).
Unfortunately, I came across the following exception:
error org.apache.kafka.clients.consumer.RetriableCommitFailedException: Offset commit failed with a retriable exception. You should retry committing the latest consumed offsets
After some investigation, I found out that even without committing offsets, the consumer keep on consuming messages from the topic.
After reading a little I saw that it is recommended to retry committing the offsets.
I don't understand why. The consumer is not threadsafe, therefore it is safe to assume that the retry already contains new offsets. And if so, wouldn't next commitAsync attempt suffice?
Regards,
Ido
apache-kafka kafka-consumer-api
add a comment |
up vote
0
down vote
favorite
I use commit async with kafka (obviously without auto-commit).
Unfortunately, I came across the following exception:
error org.apache.kafka.clients.consumer.RetriableCommitFailedException: Offset commit failed with a retriable exception. You should retry committing the latest consumed offsets
After some investigation, I found out that even without committing offsets, the consumer keep on consuming messages from the topic.
After reading a little I saw that it is recommended to retry committing the offsets.
I don't understand why. The consumer is not threadsafe, therefore it is safe to assume that the retry already contains new offsets. And if so, wouldn't next commitAsync attempt suffice?
Regards,
Ido
apache-kafka kafka-consumer-api
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I use commit async with kafka (obviously without auto-commit).
Unfortunately, I came across the following exception:
error org.apache.kafka.clients.consumer.RetriableCommitFailedException: Offset commit failed with a retriable exception. You should retry committing the latest consumed offsets
After some investigation, I found out that even without committing offsets, the consumer keep on consuming messages from the topic.
After reading a little I saw that it is recommended to retry committing the offsets.
I don't understand why. The consumer is not threadsafe, therefore it is safe to assume that the retry already contains new offsets. And if so, wouldn't next commitAsync attempt suffice?
Regards,
Ido
apache-kafka kafka-consumer-api
I use commit async with kafka (obviously without auto-commit).
Unfortunately, I came across the following exception:
error org.apache.kafka.clients.consumer.RetriableCommitFailedException: Offset commit failed with a retriable exception. You should retry committing the latest consumed offsets
After some investigation, I found out that even without committing offsets, the consumer keep on consuming messages from the topic.
After reading a little I saw that it is recommended to retry committing the offsets.
I don't understand why. The consumer is not threadsafe, therefore it is safe to assume that the retry already contains new offsets. And if so, wouldn't next commitAsync attempt suffice?
Regards,
Ido
apache-kafka kafka-consumer-api
apache-kafka kafka-consumer-api
edited Nov 22 at 15:19
asked Nov 22 at 15:11
Ido Barash
1,54162951
1,54162951
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40
add a comment |
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433827%2fkafka-retry-commit-async-on-fail-why-should-i-do-so%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It'll keep consuming, but if the consumer restarts, then you'll re-process uncommitted offsets
– cricket_007
Nov 22 at 17:40