Re: Using Kafka 0.10.x timestamps as a record value in Flink Streaming
Posted by
rmetzger0 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Using-Kafka-0-10-x-timestamps-as-a-record-value-in-Flink-Streaming-tp13119p13125.html
Hi Jia,
The Kafka 0.10 connector internally relies on the Kafka09 fetcher, but it is extensible / pluggable so that also the Kafka 0.9 Fetcher can read the event timestamps from Kafka 10.
We don't expose the timestamp through the deserilaization API, because we set it internally in Flink. (there is a "hidden" field with each record containing the event time of the event)
With a custom operator you can access the event time of a record.