Hi,
I've a single Kafka node configured which receives data from telegraf agents and then it is passed to Influx Database.
I've a log retention set for 1h in kafka.server.properties file as - log.retention.hours=1
But Kafka is having log queues formed and log getting full in 24 hours of time:
kafka/bin/kafka-run-class.sh kafka.admin.ConsumerGroupCommand --bootstrap-server localhost:9101 --describe --group kafka_consumer --command-config admin.props | awk '/<topic>/{print $5}'
-20333796490
Is it because of the throughput when logs can grow more than for an hour if not consumed?
In another environment where the load is even more, this issue is not observed.
Any suggestion?