Update rabbitmq-v-kafka.md

This commit is contained in:
Imam Syahid Hudzaifah 2025-10-18 01:20:17 +00:00
parent 45adaa508b
commit 52bb88ca43

View File

@ -60,7 +60,7 @@ Perbandingan ini fokus pada analisis objektif antara RabbitMQ dan Apache Kafka u
| Aspek | RabbitMQ | Kafka | | Aspek | RabbitMQ | Kafka |
|-------|----------|-------| |-------|----------|-------|
| **Message Model** | Queue-based (FIFO) | Log-based (append-only) | | **Message Model** | Queue-based (FIFO) | Log-based (append-only) |
| **Delivery Guarantee** | At-least-once, Exactly-once* | At-least-once, Exactly-once | | **Delivery Guarantee** | At-most-once, At-least-once, Exactly-once* | At-least-once, Exactly-once |
| **Message Ordering** | Per queue | Per partition | | **Message Ordering** | Per queue | Per partition |
| **Message Retention** | Until consumed (deleted) | Time/Size-based (configurable) | | **Message Retention** | Until consumed (deleted) | Time/Size-based (configurable) |
| **Consumer Model** | Push (broker distributes) | Pull (consumer fetches) | | **Consumer Model** | Push (broker distributes) | Pull (consumer fetches) |