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
Even when the errors.tolerance=none param is set, RetryWithToleranceOperator returns a null and thereby drops the record silently in execAndRetry() fn
kafka/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/errors/RetryWithToleranceOperator.java
Line 190 in 54eff6a
do { try { attempt++; return operation.call(); } catch (RetriableException e) { log.trace("Caught a retriable exception while executing {} operation with {}", context.stage(), context.executingClass()); errorHandlingMetrics.recordFailure(); if (time.milliseconds() < deadline) { backoff(attempt, deadline); errorHandlingMetrics.recordRetry(); } else { log.trace("Can't retry. start={}, attempt={}, deadline={}", startTime, attempt, deadline); context.error(e); return null; } if (stopping) { log.trace("Shutdown has been scheduled. Marking operation as failed."); context.error(e); return null; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Even when the errors.tolerance=none param is set, RetryWithToleranceOperator returns a null and thereby drops the record silently in execAndRetry() fn
kafka/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/errors/RetryWithToleranceOperator.java
Line 190 in 54eff6a
The text was updated successfully, but these errors were encountered: