Skip to content

Instantly share code, notes, and snippets.

@corneliouzbett
Created April 1, 2019 12:23
Show Gist options
  • Save corneliouzbett/3ec5754d326bfad0fac60a75b32a8990 to your computer and use it in GitHub Desktop.
Save corneliouzbett/3ec5754d326bfad0fac60a75b32a8990 to your computer and use it in GitHub Desktop.
Defining kafka consumer properties
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