Skip to content

Commit

Permalink
[FLINK-7300] Demote ERROR to WARN on Commit Failure in KafkaConsumer
Browse files Browse the repository at this point in the history
Committing the offset to Kafka can fail for various reasons, this is not
always an error because Flink will keep processing just fine.
  • Loading branch information
aljoscha committed Oct 26, 2017
1 parent a9743eb commit dfbf83f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ public void onSuccess() {

@Override
public void onException(Throwable cause) {
LOG.error("Async Kafka commit failed.", cause);
LOG.warn("Async Kafka commit failed.", cause);
failedCommits.inc();
}
};
Expand Down

0 comments on commit dfbf83f

Please sign in to comment.