Process Flow - Disk I/O optimization
Start: Kafka Broker receives message
Write message to page cache
Batch multiple writes in memory
Flush batch to disk asynchronously
Disk writes complete
Acknowledge message write
End
Kafka batches messages in memory and writes them asynchronously to disk to reduce slow disk I/O operations.