Reputation: 1747
I have question about implementing broker.rack aware feature and rolling it back.
For some reason, I could not able to start a microservice after the rollback, which reads messages from a non rack-aware topic.
Is there anything specific to know about, while implementing rack-aware feature?
Upvotes: 1
Views: 201
Reputation: 26875
Enabling or disabling rack awareness does not impact existing topics, their assignment will stay the same.
Once rack awareness is enabled, new topic will be assigned replicas on as many racks as possible.
When enabling rack awaress, depending on the racks you set, you may want to reassign topics so they are all spread on as many racks as possible. If as said above it's not done automatically sp you have to do it yourself using the reassignment tools.
Upvotes: 1