|
|
|
|
|
by slt2021
1004 days ago
|
|
kafka is not for latency, it is used for high throughput. By design kafka shines in high throughput workload due to consumer and producer concurrency (consumer group), broker concurrency (multiple nodes and partitions). for latency sensitive you will probably need redis pub/sub or something in-memory |
|