{{theTime}}

Search This Blog

Total Pageviews

Kafka Consumer Parallelism

Kafka Parallel Consumer Options:

Key-level parallelism:  Multiple threads process the messages from a single partition in parallel while maintaining the Kafka's key-based ordering.

Unordered Parallelism:  Multiple threads will process the messages from a single partition in an arbitrary order.

Partition-level parallelism:  Partition per topic provides the no of consumers that can be executed in parallel.


No comments:

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...