Kafka topic data retention issue #4825
Unanswered
kmandal-volvo
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Strimzi does not do anything special about retention configuration. It is just running Kafka pretty much exactly as you would when running it outside of Kubernetes. You do not share the full configuration neither for the broker nor for the topic, so it is hard to understand how did you configured things. For example there is no |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Deployed Kafka using strimzi operator version 0.20. Kafka version used 2.6 I am facing an issue with data retention, it unable to persist data for more than 2 hours. The message disappears automatically from that broker, the topic for that partition and offset. when I add more data into the topic in the same partition it adding from the next offset from the last inserted offset location.
Data retention configuration used
log.message.format.version: "2.3"
log.retention.bytes: 107374182400
log.retention.check.interval.ms: 300000
log.retention.hours: 168
log.segment.bytes: 1073741824
Storage use persistence storage
storage:
type: persistent-claim
persistentVolumeReclaimPolicy: Retain
size: 30Gi
class: managed-premium-retain
deleteClaim: false
Beta Was this translation helpful? Give feedback.
All reactions