Hi, it's there https://ci.apache.org/projects/flink/flink-docs- release-1.3/api/java/org/apache/flink/streaming/connectors/kafka/ FlinkKafkaConsumerBase.html#setStartFromSpecificOffsets-java.util.Map- just defined in FlinkKafkaConsumerBase
2017-08-30 16:34 GMT+02:00 sohimankotia <sohimanko...@gmail.com>: > Hi, > > I see that Flink Kafka consumer have ability to set specific offset to read > from > > Map<KafkaTopicPartition, Long> specificStartOffsets = new HashMap<>(); > specificStartOffsets.put(new KafkaTopicPartition("topic", 0), 23L); > specificStartOffsets.put(new KafkaTopicPartition("topic", 1), 31L); > specificStartOffsets.put(new KafkaTopicPartition("topic", 2), 43L); > > FlinkKafkaConsumer08<String> consumer = new FlinkKafkaConsumer08<>(...); > consumer.setStartFromSpecificOffsets(specificStartOffsets); > > > But there is no methods present in FlinkKafkaConsumer010 . > > > > -- > Sent from: http://apache-flink-user-mailing-list-archive.2336050. > n4.nabble.com/ >