Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

define topic retention period with kafka

avatar

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

1 ACCEPTED SOLUTION

avatar
Super Collaborator

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

View solution in original post

2 REPLIES 2

avatar
Super Collaborator

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

avatar

Thank you so much for the help