Skip to content

Instantly share code, notes, and snippets.

@crccheck
Last active March 31, 2021 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crccheck/315830c1d8bea81a531c8ac1ecdf38cd to your computer and use it in GitHub Desktop.
Save crccheck/315830c1d8bea81a531c8ac1ecdf38cd to your computer and use it in GitHub Desktop.
Kafka Connect cheatsheet

Errors

Halt on all errors. Useful for debugging.

errors.tolerance=none
errors.log.include.messages=true
errors.log.enable=true

Keep going no matter what.

errors.tolerance=all
errors.log.include.messages=false
drop.invalid.message=true
errors.log.enable=false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment