Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

define topic retention period with kafka

avatar
Not applicable

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
Not applicable

Thank you so much for the help