# These are defaults. This file just demonstrates how to override some settings. #bootstrap.servers=10.0.0.1:9092,10.0.0.1:9093,10.0.0.1:9094 # The converters specify the format of data in Kafka and how to translate it into Connect data. Every Connect user will # need to configure these based on the format they want their data in when loaded from or stored into Kafka #key.converter=org.apache.kafka.connect.storage.StringConverter #value.converter=org.apache.kafka.connect.json.JsonConverter # Converter-specific settings can be passed in by prefixing the Converter's setting with the converter we want to apply # it to key.converter.schemas.enable=false value.converter.schemas.enable=false # The internal converter used for offsets and config data is configurable and must be specified, but most users will # always want to use the built-in default. Offset and config data is never visible outside of Kafka Connect in this format. internal.key.converter=org.apache.kafka.connect.json.JsonConverter internal.value.converter=org.apache.kafka.connect.json.JsonConverter internal.key.converter.schemas.enable=false internal.value.converter.schemas.enable=false #offset.storage.file.filename=/tmp/connect.offsets # Flush much faster than normal, which is useful for testing/debugging offset.flush.interval.ms=60000 #session.timeout.ms=45000 #Very high offset flush timeout? offset.flush.timeout.ms=50000 consumer.session.timeout.ms=300000 consumer.request.timeout.ms=310000 heartbeat.interval.ms= 60000 session.timeout.ms= 200000 key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=com.dexels.replication.kafka.converter.ReplicationMessageConverter # Topic to use for storing offsets. This topic should have many partitions and be replicated. # offset.storage.topic=connect-offsets # Topic to use for storing connector and task configurations; note that this should be a single partition, highly replicated topic. # You may need to manually create the topic to ensure single partition for the config topic as auto created topics may have multiple partitions. # config.storage.topic=connect-configs # Topic to use for storing statuses. This topic can have multiple partitions and should be replicated. # status.storage.topic=connect-status