如何获取每个分区的最新偏移量,然后仅消耗该偏移量?

时间:2019-12-03 23:30:25

标签: java apache-kafka kafka-consumer-api

我正在尝试检查接收大量数据的主题中是否缺少键。由于这项工作是按需运行的,因此它需要一些标准来知道何时搜索了它关心的所有记录。我们确定这将是作业启动时每个分区的最新偏移量。

我的问题首先是如何获取该主题的所有分区信息,而又不实际使用它(我需要使用它为每个分区创建单独的使用者,以跟踪其偏移量与最大偏移量之间的关系。) / p>

然后是第二个,如何在消费者看到达到最大偏移量后停止消费者。

编辑: 我找到了一种获取分区的方法,该方法是为单个使用者订阅该主题,进行虚拟poll,然后使用partitionsFor(...)。不确定这是否是“推荐”的方式。

1 个答案:

答案 0 :(得分:0)

您可以使用consumer.partitionsFor和consumer.endOffsets获取分区和上一个偏移量

分区

 /*Get metadata about the partitions for a given topic. This method will issue a remote call to the server if it does  not already have any metadata about the given topic.*/ 
    public java.util.List<PartitionInfo> partitionsFor(java.lang.String topic)

endOffsets

/*Get the last offset for the given partitions. The last offset of a partition is the offset of the upcoming message, i.e. the offset of the last available message + 1*/
public java.util.Map<TopicPartition,java.lang.Long> endOffsets(java.util.Collection<TopicPartition> partitions)

下面是示例代码

Properties consumerProperties = new Properties();
consumerProperties.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
consumerProperties.put(ConsumerConfig.GROUP_ID_CONFIG, "consumerid");
Consumer<String, byte[]> consumer = new KafkaConsumer<>(consumerProperties);    
List<PartitionInfo> parts = consumer.partitionsFor(topic);
consumer.assign(partitions);
Map<TopicPartition, Long> offsets = consumer.endOffsets(partitions);
for (TopicPartition tp : offsets.keySet()) {
    OffsetAndMetadata commitOffset = consumer.committed(new 
    TopicPartition(tp.topic(), tp.partition()));
    //Consumer offset for partition tp
    long offset=offsets.get(tp);
    //Consumed committed offset
    long consumedOffset=commitOffset.offset();
}