Batching (پیغامات کو گروپ کرنا) اور compression (ڈیٹا کو compress کرنا) Kafka کی اعلیٰ throughput کے لیے اہم تکنیکیں ہیں — فی پیغام overhead اور network/storage کی لاگت کو کم کرتے ہیں۔ ان کو سمجھنا Kafka کی اعلیٰ کارکردگی حاصل کرنے میں مدد دیتا ہے۔
Batching — پیغامات کو گروپ کریں
BATCHING → the producer groups multiple messages into a single BATCH before sending:
→ fewer, larger requests instead of many tiny ones → much higher THROUGHPUT (less
per-request overhead, fewer network round-trips)
→ controlled by: batch.size (batch size limit) + linger.ms (wait time to accumulate a batch)
→ trade-off: slightly higher LATENCY (waiting to batch) for much higher throughput
→ batching is essential for high-throughput producing
