public class RoundRobinManualPartitioner extends Object implements ManualPartitioner
Assign partitions in a round robin fashion for all spouts, not just the ones that are alive. Because the parallelism of the spouts does not typically change while running this makes the assignments more stable in the face of crashing spouts.
Round Robin means that first spout of N spouts will get the first partition, and the N+1th partition… The second spout will get the second partition and N+2th partition etc.Constructor and Description |
---|
RoundRobinManualPartitioner() |
Modifier and Type | Method and Description |
---|---|
Set<org.apache.kafka.common.TopicPartition> |
getPartitionsForThisTask(List<org.apache.kafka.common.TopicPartition> allPartitionsSorted,
TopologyContext context)
Filter the list of all partitions handled by this set of spouts to get only the partitions assigned to this task.
|
public Set<org.apache.kafka.common.TopicPartition> getPartitionsForThisTask(List<org.apache.kafka.common.TopicPartition> allPartitionsSorted, TopologyContext context)
ManualPartitioner
Filter the list of all partitions handled by this set of spouts to get only the partitions assigned to this task.
getPartitionsForThisTask
in interface ManualPartitioner
allPartitionsSorted
- all of the partitions that the set of spouts want to subscribe to in a strict ordering that is consistent across taskscontext
- the context of the topologyCopyright © 2022 The Apache Software Foundation. All rights reserved.