Is it possible to reduce the size after deploying kafka? #4920
shreyasarani23
started this conversation in
General
Replies: 1 comment 2 replies
-
Not easily. Kubernetes do not support shrinking of volumes. So you would need to do it manually at the infrastructure level. But keep in mind that Kafka is storage hugry. Even 1Gi storage is super small for Kafka unless you fine-tune all kind of parameters around log segments, retention etc. |
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
-
I have deployed kafka cluster with following configuration.
storage:
type: persistent-claim
size: 1Gi
class: kafka-storage-class
deleteClaim: true
And I want to reduce the size to 500MB
storage:
type: persistent-claim
size: 500Mi
class: kafka-storage-class
deleteClaim: true
Is it possible do it?
Beta Was this translation helpful? Give feedback.
All reactions