Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions config/connect-distributed.properties
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ status.storage.topic=connect-status
status.storage.replication.factor=1
#status.storage.partitions=5

# Topic to use for storing messages that result in an error when processed by this sink connector, or its transformations or converters.
# Kafka Connect will attempt to create the topic automatically when needed, but you can always manually create
# the topic before starting Kafka Connect if a specific topic configuration is needed.
# Most users will want to use the built-in default replication factor of 3 or in some cases even specify a larger value.
# Since this means there must be at least as many brokers as the maximum replication factor used, we'd like to be able
# to run this example on a single-broker cluster and so here we instead set the replication factor to 1.
errors.deadletterqueue.topic.name=connect-dlq
errors.deadletterqueue.topic.replication.factor=1
errors.deadletterqueue.context.headers.enable=true

# Flush much faster than normal, which is useful for testing/debugging
offset.flush.interval.ms=10000

Expand Down