My Bad :-) Sorry.
We are using flink 1.2 dependencies . And I think this functionality is
only available from flink 1.3 API Version .
--
Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/
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 :
> Hi,
>
> I se
Hi,
I see that Flink Kafka consumer have ability to set specific offset to read
from
Map specificStartOffsets = new HashMap<>();
specificStartOffsets.put(new KafkaTopicPartition("topic", 0), 23L);
specificStartOffsets.put(new KafkaTopicPartition("topic", 1), 31L);
specificStartOffsets.put(new Ka