-
|
What Does "Existing Partitions Are Moved to the New Brokers" Mean? When you add new brokers to the cluster, those brokers start empty — they host no partitions by default. So to use their capacity, Cruise Control will: Move replicas of existing partitions (from overloaded brokers) Assign them to the new brokers This spreads the load — especially disk usage, CPU, and network I/O — more evenly. How Cruise Control Moves Partitions to New Brokers Topic orders has 6 partitions Partition orders-3 currently has replicas on Brokers 101, 102, and 103 You added new Broker 104 Cruise Control might propose this: Move one replica of orders-3 from 101 to 104 So now the new assignment is: orders-3 → [104, 102, 103] Behind the Scenes: What Happens Syncing to ISR: Removing the old replica: This is seamless, and Kafka keeps serving reads/writes during this operation. Key Points |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi @kspmmitt, was there a question you wanted to discuss here? Or was this posted accidentally? |
Beta Was this translation helpful? Give feedback.
Yes, this is generally correct as well.