THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Code Block | ||
---|---|---|
| ||
# disable retries on failure errors.retry.timeout=0 # do not log the error and their contexts errors.log.enable=false # do not record errors in a dead letter queue topic errors.dlq.enable=false # Fail on first failureerror errors.toleranceallowed.rate.limitmax=0NONE |
Example 2: Record and Skip
...
Code Block | ||
---|---|---|
| ||
# retry for at most 10 minutes times waiting up to 30 seconds between consecutive failures errors.retry.timeout=600000 errors.retry.delay.max.ms=30000 # log error context along with application logs, but do not include configs and messages errors.log.enable=true errors.log.include.messages=false # produce error context into the Kafka topic errors.deadletterqueue.topic.name=my-connector-errors # Tolerate all errors. errors.toleranceallowed.rate.limit=-1 errors.tolerance.rate.duration.ms=60000max=ALL |
Compatibility, Deprecation, and Migration Plan
...