You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I feel the documentation is a little light around usage of kafka-gitops.
Can someone help answer the following questions?
Is it possible to increase the number of partitions on an existing topic? I tried it and it detected no changes.
Is it possible to decrease the number of partitions safely? what would happen if the topic contained records?
Is it possible to rename a topic? What is the default behaviour here? Seems like a dangerous operation since it deletes the old topic and creates the new one.
The text was updated successfully, but these errors were encountered:
I don't believe kafka-gitops natively supports increasing partitions counts via changing the value within the application. Changing the partition count of a topic is a one-way road (i.e. you can only increase the partition count of a topic).
As said above, in Kafka you can only ever increase the number of partitions.
In Kafka, you can't change the name of a topic. Once a topic is made, it's a done deal.
I feel the documentation is a little light around usage of kafka-gitops.
Can someone help answer the following questions?
Is it possible to increase the number of partitions on an existing topic? I tried it and it detected no changes.
Is it possible to decrease the number of partitions safely? what would happen if the topic contained records?
Is it possible to rename a topic? What is the default behaviour here? Seems like a dangerous operation since it deletes the old topic and creates the new one.
The text was updated successfully, but these errors were encountered: