Created
April 1, 2019 12:23
-
-
Save corneliouzbett/b57366956467734419663eee0711e05e to your computer and use it in GitHub Desktop.
Defining kafka consumer properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Properties consumerProperties = new Properties(); | |
consumerProperties.put("bootstrap.servers", kafkaBootstrapServers); | |
consumerProperties.put("group.id", zookeeperGroupId); | |
consumerProperties.put("zookeeper.session.timeout.ms", "6000"); | |
consumerProperties.put("zookeeper.sync.time.ms","2000"); | |
consumerProperties.put("auto.commit.enable", "false"); | |
consumerProperties.put("auto.commit.interval.ms", "1000"); | |
consumerProperties.put("consumer.timeout.ms", "-1"); | |
consumerProperties.put("max.poll.records", "1"); | |
consumerProperties.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); | |
consumerProperties.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment