clarification on topic operator and PV #4960
Replies: 1 comment 3 replies
-
The topic operator does a 3 way reconciliation. Between:
When you have existing cluster with existing topics, they will exist in all 3 places. But if you during the recovery don't recover all of them to the original state - in this case if the topic resources will be missing in Kubernetes but will be present in the other two places, the TO will see that as the topics being deleted and will proceed and delete them from Kafka. If the topics are not present in both the internal state and in Kubernetes, the TO will see it as new topics being added in Kafka and will proceed and create the KafkaTopic resources. |
Beta Was this translation helpful? Give feedback.
-
Hi @scholzj I have one doubt/confusion say we have kafka cluster configured with persistent volume and below is it's configuration
storage:
type: persistent-claim
size: 1Gi
class: kafka-storage-class
deleteClaim: true
entityOperator:
userOperator: {}
topicOperator: {}
In the above configuration when should we use deleteClaim:true and when should we use deleteClaim:false?
Here are the things for which I need clarification.
OR just redeploy my kafka cluster with kubectl apply command?
please can you clarify?
Beta Was this translation helpful? Give feedback.
All reactions