- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
define topic retention period with kafka
- Labels:
-
Apache Hadoop
-
Apache Kafka
Created ‎05-18-2018 08:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much for the help
