- Notifications
You must be signed in to change notification settings - Fork8
Technical solution to implement event processing prioritization with Apache Kafke using the concept of buckets.
License
build-on-aws/prioritizing-event-processing-with-apache-kafka
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Implement event processing prioritization inApache Kafka is often a hard task because Kafka doesn't support broker-level reordering of messages like some messaging technologies do. This is not necessarily a limitation, since Kafka is adistributed commit log. With this data structure, messages are immutable, and so their ordering is within partitions. But this doesn't change the fact the developers may need to implement event processing prioritization with Kafka, anyway.
This project addresses event processing prioritization via the bucket pattern. It groups partitions into simpler abstractions called buckets. Bigger buckets mean a higher priority, and smaller buckets mean less priority. The number of partitions associated with each bucket defines their size. The bucket pattern also addresses code simplicity by providing a way to do all of this without forcing developers to handle low-level code related to event partitioning and consumer assignment.
Let's understand how this works with an example.
Here we can see that the partitions were grouped into the bucketsPlatinum
andGold
. The Platinum bucket has a higher priority and therefore was configured to have70%
of the allocation, whereas the Gold bucket has lower priority and therefore was configured to have only30%
. This means that for a topic that contains6
partitions,4
of them will be associated with the Platinum bucket and2
will be associated with the Gold bucket. To implement the prioritization, there has to be a process that ensures that messages with higher priority will end up in one the partitions from the Platinum bucket and messages with lower priority will end up in one the partitions from the Gold bucket. Consumers need to subscribe to the topic knowing which buckets they need to be associated with. This means that developers can decide to execute more consumers for the Platinum bucket and fewer consumers for the Gold bucket to ensure that they process high priority messages faster.
To ensure that each message will end up in their respective bucket, use theBucketPriorityPartitioner
. This partitioner uses data in the message key to decide which bucket to use and therefore which partition from the bucket the message should be written. This partitioner distributes the messages within the bucket using a round robin algorithm to maximize consumption parallelism. On the consumer side, use theBucketPriorityAssignor
to ensure that the consumer will be assigned only to the partitions that represent the bucket they want to process.
With the bucket priority, you can implement event processing prioritization by having more consumers working on buckets with higher priorities, while buckets with less priority can have fewer consumers. Event processing prioritization can also be obtained by executing these consumers in an order that gives preference to processing high priority buckets before the less priority ones. While coordinating this execution may involve some extra coding from you (perhaps using some sort of scheduler) you don't have to implement low-level code to manage partition assignment and keep your consumers simple by leveraging the standardsubscribe()
andpoll()
methods.
You can read more about the bucket priority pattern in this blog post:https://www.buildon.aws/posts/prioritizing-event-processing-with-apache-kafka
The first thing you need to do to start using this partitioner is building it. In order to do that, you need to install the following dependencies:
After installing these dependencies, execute the following command:
mvn clean package
To use theBucketPriorityPartitioner
in your producer you need to register it in the configuration.
Properties configs = newProperties();configs.setProperty(ProducerConfig.PARTITIONER_CLASS_CONFIG,BucketPriorityPartitioner.class.getName());KafkaProducer<K, V> producer = new KafkaProducer<>(configs);
To work properly, you need to specify in the configuration which topic will have its partitions grouped into buckets. This is important because, in Kafka, topics are specified at a message level and not at a producer level. This means that the same producer can write messages on different topics, so the partitioner needs to know which topic will have their partitions grouped into buckets.
configs.setProperty(BucketPriorityConfig.TOPIC_CONFIG,"orders");
Finally, specify in the configuration which buckets will be configured and what is the partition allocation for each one of them. The partition allocation is specified in terms of percentage. Note that the usage of the symbol%
is optional.
configs.setProperty(BucketPriorityConfig.BUCKETS_CONFIG,"Platinum, Gold");configs.setProperty(BucketPriorityConfig.ALLOCATION_CONFIG,"70%, 30%");
The partitioner ensures that all partitions from the topic will be assigned to the buckets.In case of the allocation result in some partitions being left behind because the distribution is not even, the remaining partitions will be assigned to the buckets using a round robin algorithm over the buckets sorted by allocation.
In order to specify which bucket should be used, your producer need to provide this information on the message key. The partitioner will inspect each key in the attempt to understand in which bucket the message should be written. For this reason, the key must be an instance of ajava.lang.String and it needs to contain the bucket name either as one literal string or as the first part of a string separated by a delimiter. For example, to specify that the bucket isPlatinum
then following examples are valid:
- Key =
"Platinum"
- Key =
"Platinum-001"
- Key =
"Platinum-Group01-001"
The default delimiter is-
but you can change to something else:
configs.setProperty(BucketPriorityConfig.DELIMITER_CONFIG,"|");
Discarding any message that can't be sent to any of the buckets is also possible:
configs.setProperty(BucketPriorityConfig.FALLBACK_PARTITIONER_CONFIG,"code.buildon.aws.streaming.kafka.DiscardPartitioner");
To use theBucketPriorityAssignor
in your consumer you need to register it in the configuration.
Properties configs = newProperties();configs.setProperty(ConsumerConfig.PARTITION_ASSIGNMENT_STRATEGY_CONFIG,BucketPriorityAssignor.class.getName());KafkaConsumer<K, V> consumer = new KafkaConsumer<>(configs);
To work properly, you need to specify in the configuration which topic will have its partitions grouped into buckets. This is important because, in Kafka, consumers can subscribe to multiple topics. This means that the same consumer can read messages from different topics, so the assignor needs to know which topic will have their partitions grouped into buckets.
configs.setProperty(BucketPriorityConfig.TOPIC_CONFIG,"orders");
You also have to specify in the configuration which buckets will be configured and what is the partition allocation for each one of them.The partition allocation is specified in terms of percentage. Note that the usage of the symbol%
is optional. Ideally, the partition allocation configuration needs to be the same used in the producer.
configs.setProperty(BucketPriorityConfig.BUCKETS_CONFIG,"Platinum, Gold");configs.setProperty(BucketPriorityConfig.ALLOCATION_CONFIG,"70%, 30%");
The assignor ensures that all partitions from the topic will be assigned to the buckets.In case of the allocation result in some partitions being left behind because the distribution is not even, the remaining partitions will be assigned to the buckets using a round robin algorithm over the buckets sorted by allocation.
Finally you need to specify in the configuration which bucket the consumer will be associated.
configs.setProperty(BucketPriorityConfig.BUCKET_CONFIG,"Platinum");
In Kafka, a consumer can subscribe to multiple topics, allowing the same consumer to read messages from partitions belonging to different topics. Because of this, the assignor ensures that only the topic specified in the configuration will have its partitions assigned to the consumers using the bucket priority logic. The other topics will have their partitions assigned to consumers using a fallback assignor.
Here is an example of configuring the fallback assignor to round-robin:
configs.setProperty(BucketPriorityConfig.FALLBACK_ASSIGNOR_CONFIG,"org.apache.kafka.clients.consumer.RoundRobinAssignor");
If you don't configure a fallback assignor explicitly, Kafka's default assignor will be used.
SeeCONTRIBUTING for more information.
This project is licensed under the MIT-0 License. See theLICENSE file.
About
Technical solution to implement event processing prioritization with Apache Kafke using the concept of buckets.
Topics
Resources
License
Code of conduct
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.