
org.apache.flink.runtime.metrics.TimerGauge 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.runtime.metrics;
import org.apache.flink.annotation.VisibleForTesting;
import org.apache.flink.metrics.Gauge;
import org.apache.flink.metrics.View;
import org.apache.flink.util.clock.Clock;
import org.apache.flink.util.clock.SystemClock;
/**
* {@link TimerGauge} measures how much time is spent in a given state, with entry into that state
* being signaled by {@link #markStart()}. Measuring is stopped by {@link #markEnd()}. This class in
* particularly takes care of the case, when {@link #update()} is called when some measurement
* started but has not yet finished. For example even if next {@link #markEnd()} call is expected to
* happen in a couple of hours, the returned value will account for this ongoing measurement.
*/
public class TimerGauge implements Gauge, View {
private final Clock clock;
private long previousCount;
private long currentCount;
private long currentMeasurementStartTS;
/**
* This differ from {@link #currentMeasurementStartTS} that {@link #currentUpdateTS} is bumped
* on every {@link #update()} call, while {@link #currentMeasurementStartTS} always marks the
* last {@link #markStart()} call.
*/
private long currentUpdateTS;
private long previousMaxSingleMeasurement;
private long currentMaxSingleMeasurement;
public TimerGauge() {
this(SystemClock.getInstance());
}
public TimerGauge(Clock clock) {
this.clock = clock;
}
public synchronized void markStart() {
if (currentMeasurementStartTS == 0) {
currentUpdateTS = clock.absoluteTimeMillis();
currentMeasurementStartTS = currentUpdateTS;
}
}
public synchronized void markEnd() {
if (currentMeasurementStartTS != 0) {
long currentMeasurement = clock.absoluteTimeMillis() - currentMeasurementStartTS;
currentCount += currentMeasurement;
currentMaxSingleMeasurement = Math.max(currentMaxSingleMeasurement, currentMeasurement);
currentUpdateTS = 0;
currentMeasurementStartTS = 0;
}
}
@Override
public synchronized void update() {
if (currentMeasurementStartTS != 0) {
long now = clock.absoluteTimeMillis();
// we adding to the current count only the time elapsed since last markStart or update
// call
currentCount += now - currentUpdateTS;
currentUpdateTS = now;
// on the other hand, max measurement has to be always checked against last markStart
// call
currentMaxSingleMeasurement =
Math.max(currentMaxSingleMeasurement, now - currentMeasurementStartTS);
}
previousCount = Math.max(Math.min(currentCount / UPDATE_INTERVAL_SECONDS, 1000), 0);
previousMaxSingleMeasurement = currentMaxSingleMeasurement;
currentCount = 0;
currentMaxSingleMeasurement = 0;
}
@Override
public synchronized Long getValue() {
return previousCount;
}
/**
* @return the longest marked period as measured by the given * TimerGauge. For example the
* longest consecutive back pressured period.
*/
public synchronized long getMaxSingleMeasurement() {
return previousMaxSingleMeasurement;
}
@VisibleForTesting
public synchronized long getCount() {
return currentCount;
}
@VisibleForTesting
public synchronized boolean isMeasuring() {
return currentMeasurementStartTS != 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy