TLDR: When You Increase Kafka Partitions
Date: 2025-12-13 Source: https://arpitbhayani.me/blogs/kafka-partitions
Overview
Partitions sit right in the middle of how Kafka works. They define ordering, parallelism, and how far it can scale. But what actually happens when you need more of them?
Key Points
- the mechanics of adding partitions
- understand why existing data does not move
- explore the implications for key-based ordering, and
- Why Increase Partitions: Before diving into the mechanics, let us understand the scenarios that drive partition expansion.
- Mechanics of Adding Partitions: Kafka provides two primary methods for adding partitions to an existing topic.
- What Happens to Existing Data: When you add partitions to a Kafka topic, existing data does not move.