Jaehyeon Kim
10/25/2023, 9:58 PMSpecifying aDoes the timestamps from Kafka records indicate the timestamps that records are logged (created)? What if an IoT device gets offline and fails to send messages for a while. I guess it is safer to assign timestamps from record values if existing?is optional and in most cases you don’t actually want to specify one. For example, when using Kafka or Kinesis you would get timestamps directly from the Kafka/Kinesis records.TimestampAssigner
Oscar Westra van Holthe - Kind
10/26/2023, 6:32 AMProducerRecord
.Jaehyeon Kim
10/26/2023, 6:47 AMRootedLabs
10/27/2023, 7:21 PMOscar Westra van Holthe - Kind
10/27/2023, 7:34 PMRootedLabs
10/27/2023, 7:41 PMJaehyeon Kim
10/28/2023, 5:52 AMWatermarkStrategy
.<Tuple2<Long, String>>forBoundedOutOfOrderness(Duration.ofSeconds(20))
.withTimestampAssigner((event, timestamp) -> event.f0);
RootedLabs
11/04/2023, 5:32 PMJaehyeon Kim
11/05/2023, 5:33 AM