Kafka scale ไปสู่ throughput มหาศาล (event หลายล้านต่อวินาที) ผ่าน partitioning, การเพิ่ม broker และ consumer และ การ tune การเข้าใจวิธีที่ Kafka scale มีความสำคัญต่อการ deploy ที่ volume สูง
Lever การ scale
✓ PARTITIONS → the primary scaling unit: more partitions → more parallelism (producer and
consumer) → distribute data and load across brokers and consumers
✓ BROKERS → add brokers to the cluster → more storage, throughput, and capacity (spread
partitions across more machines)
✓ CONSUMERS → add consumers to a group (up to partition count) → parallel consumption
✓ PRODUCERS → batching, compression, multiple producers → high write throughput
→ Kafka scales HORIZONTALLY (add partitions/brokers/consumers)
