Created 05-18-2018 08:27 AM
How to check each kafka topic retention period below command displaying only topic details.
/usr/hdp/current/kafka-broker/bin/kafka-topics.sh --zookeeper dblnetworl.sap.com:2181 --describe --topic network-files
output:
Topic: network-files Partition: 0 Leader: 1005 Replicas: 1005,1006,1001 Isr: 1005,1006,1001
Topic: network-files Partition: 1 Leader: 1006 Replicas: 1006,1001,1002 Isr: 1006,1002,1001
Created 05-19-2018 05:13 AM
The configs are on the top line. It will say "Configs: " if none are customized
$ kafka-topics --describe --topic $TOPIC --zookeeper $ZOOKEEPER Topic:******** PartitionCount:20 ReplicationFactor:3 Configs:retention.ms=10800000
Created 05-19-2018 05:13 AM
The configs are on the top line. It will say "Configs: " if none are customized
$ kafka-topics --describe --topic $TOPIC --zookeeper $ZOOKEEPER Topic:******** PartitionCount:20 ReplicationFactor:3 Configs:retention.ms=10800000
Created 05-21-2018 05:26 AM
Thank you so much for the help