We are seeing a steady growth in the persistent storage for Kafka, around 10% per day - effectively implying the configs are not tuned. There are 3 brokers and 5 topics. Retention was configured for 2 hours.
Following are the config parameters set -
Topic level :
retention.ms=7200000
delete.retention.ms=7200000
segment.ms=7200000
cleanup.policy=delete
file.delete.delay.ms=1
segment.bytes=150000
Broker Level:
"log.cleaner.delete.retention.ms": "7200000"
"log.retention.ms": "7200000"
Any help would be appreciated. Thanks in advance.