/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.flink.streaming.connectors.kafka.internals; import org.apache.flink.streaming.api.functions.AssignerWithPeriodicWatermarks; import org.apache.flink.streaming.api.watermark.Watermark; /** * A special version of the per-kafka-partition-state that additionally holds * a periodic watermark generator (and timestamp extractor) per partition. * * @param <T> The type of records handled by the watermark generator * @param <KPH> The type of the Kafka partition descriptor, which varies across Kafka versions. */ public final class KafkaTopicPartitionStateWithPeriodicWatermarks<T, KPH> extends KafkaTopicPartitionState<KPH> { /** The timestamp assigner and watermark generator for the partition */ private final AssignerWithPeriodicWatermarks<T> timestampsAndWatermarks; /** The last watermark timestamp generated by this partition */ private long partitionWatermark; // ------------------------------------------------------------------------ public KafkaTopicPartitionStateWithPeriodicWatermarks( KafkaTopicPartition partition, KPH kafkaPartitionHandle, AssignerWithPeriodicWatermarks<T> timestampsAndWatermarks) { super(partition, kafkaPartitionHandle); this.timestampsAndWatermarks = timestampsAndWatermarks; this.partitionWatermark = Long.MIN_VALUE; } // ------------------------------------------------------------------------ public long getTimestampForRecord(T record, long kafkaEventTimestamp) { return timestampsAndWatermarks.extractTimestamp(record, kafkaEventTimestamp); } public long getCurrentWatermarkTimestamp() { Watermark wm = timestampsAndWatermarks.getCurrentWatermark(); if (wm != null) { partitionWatermark = Math.max(partitionWatermark, wm.getTimestamp()); } return partitionWatermark; } // ------------------------------------------------------------------------ @Override public String toString() { return "KafkaTopicPartitionStateWithPeriodicWatermarks: partition=" + getKafkaTopicPartition() + ", offset=" + getOffset() + ", watermark=" + partitionWatermark; } }