All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.streaming.util.LatencyStats Maven / Gradle / Ivy

/*
 * 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.util;

import org.apache.flink.metrics.MetricGroup;
import org.apache.flink.runtime.jobgraph.OperatorID;
import org.apache.flink.runtime.metrics.DescriptiveStatisticsHistogram;
import org.apache.flink.streaming.runtime.streamrecord.LatencyMarker;

import java.util.HashMap;
import java.util.Map;

/**
 * The {@link LatencyStats} objects are used to track and report on the behavior of latencies across measurements.
 */
public class LatencyStats {
	private final Map latencyStats = new HashMap<>();
	private final MetricGroup metricGroup;
	private final int historySize;
	private final int subtaskIndex;
	private final OperatorID operatorId;
	private final Granularity granularity;

	public LatencyStats(
			MetricGroup metricGroup,
			int historySize,
			int subtaskIndex,
			OperatorID operatorID,
			Granularity granularity) {
		this.metricGroup = metricGroup;
		this.historySize = historySize;
		this.subtaskIndex = subtaskIndex;
		this.operatorId = operatorID;
		this.granularity = granularity;
	}

	public void reportLatency(LatencyMarker marker) {
		final String uniqueName = granularity.createUniqueHistogramName(marker, operatorId, subtaskIndex);

		DescriptiveStatisticsHistogram latencyHistogram = this.latencyStats.get(uniqueName);
		if (latencyHistogram == null) {
			latencyHistogram = new DescriptiveStatisticsHistogram(this.historySize);
			this.latencyStats.put(uniqueName, latencyHistogram);
			granularity.createSourceMetricGroups(metricGroup, marker, operatorId, subtaskIndex)
				.addGroup("operator_id", String.valueOf(operatorId))
				.addGroup("operator_subtask_index", String.valueOf(subtaskIndex))
				.histogram("latency", latencyHistogram);
		}

		long now = System.currentTimeMillis();
		latencyHistogram.update(now - marker.getMarkedTime());
	}

	/**
	 * Granularity for latency metrics.
	 */
	public enum Granularity {
		SINGLE {
			@Override
			String createUniqueHistogramName(LatencyMarker marker, OperatorID operatorId, int operatorSubtaskIndex) {
				return String.valueOf(operatorId) + operatorSubtaskIndex;
			}

			@Override
			MetricGroup createSourceMetricGroups(
					MetricGroup base,
					LatencyMarker marker,
					OperatorID operatorId,
					int operatorSubtaskIndex) {
				return base;
			}
		},
		OPERATOR {
			@Override
			String createUniqueHistogramName(LatencyMarker marker, OperatorID operatorId, int operatorSubtaskIndex) {
				return String.valueOf(marker.getOperatorId()) + operatorId + operatorSubtaskIndex;
			}

			@Override
			MetricGroup createSourceMetricGroups(
					MetricGroup base,
					LatencyMarker marker,
					OperatorID operatorId,
					int operatorSubtaskIndex) {
				return base
					.addGroup("source_id", String.valueOf(marker.getOperatorId()));
			}
		},
		SUBTASK {
			@Override
			String createUniqueHistogramName(LatencyMarker marker, OperatorID operatorId, int operatorSubtaskIndex) {
				return String.valueOf(marker.getOperatorId()) + marker.getSubtaskIndex() + operatorId + operatorSubtaskIndex;
			}

			@Override
			MetricGroup createSourceMetricGroups(
					MetricGroup base,
					LatencyMarker marker,
					OperatorID operatorId,
					int operatorSubtaskIndex) {
				return base
					.addGroup("source_id", String.valueOf(marker.getOperatorId()))
					.addGroup("source_subtask_index", String.valueOf(marker.getSubtaskIndex()));
			}
		};

		abstract String createUniqueHistogramName(LatencyMarker marker, OperatorID operatorId, int operatorSubtaskIndex);

		abstract MetricGroup createSourceMetricGroups(MetricGroup base, LatencyMarker marker, OperatorID operatorId, int operatorSubtaskIndex);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy