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

org.apache.flink.runtime.metrics.dump.MetricQueryService Maven / Gradle / Ivy

There is a newer version: 1.19.0
Show newest version
/*
 * 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.dump;

import org.apache.flink.api.common.time.Time;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.metrics.CharacterFilter;
import org.apache.flink.metrics.Counter;
import org.apache.flink.metrics.Gauge;
import org.apache.flink.metrics.Histogram;
import org.apache.flink.metrics.Meter;
import org.apache.flink.metrics.Metric;
import org.apache.flink.runtime.clusterframework.types.ResourceID;
import org.apache.flink.runtime.metrics.groups.AbstractMetricGroup;
import org.apache.flink.runtime.rpc.RpcEndpoint;
import org.apache.flink.runtime.rpc.RpcService;
import org.apache.flink.runtime.webmonitor.retriever.MetricQueryServiceGateway;
import org.apache.flink.util.TimeUtils;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.CompletableFuture;

import static org.apache.flink.runtime.metrics.dump.MetricDumpSerialization.MetricDumpSerializer;

/**
 * The MetricQueryService creates a key-value representation of all metrics currently registered
 * with Flink when queried.
 *
 * 

It is realized as an actor and can be notified of - an added metric by calling {@link * #addMetric(String, Metric, AbstractMetricGroup)} - a removed metric by calling {@link * #removeMetric(Metric)} - a metric dump request by calling {@link #queryMetrics(Time)} */ public class MetricQueryService extends RpcEndpoint implements MetricQueryServiceGateway { private static final Logger LOG = LoggerFactory.getLogger(MetricQueryService.class); public static final String METRIC_QUERY_SERVICE_NAME = "MetricQueryService"; private static final String SIZE_EXCEEDED_LOG_TEMPLATE = "{} will not be reported as the metric dump would exceed the maximum size of {} bytes."; private static final CharacterFilter FILTER = new CharacterFilter() { @Override public String filterCharacters(String input) { return replaceInvalidChars(input); } }; private final MetricDumpSerializer serializer = new MetricDumpSerializer(); private final Map, Tuple2> gauges = new HashMap<>(); private final Map> counters = new HashMap<>(); private final Map> histograms = new HashMap<>(); private final Map> meters = new HashMap<>(); private final long messageSizeLimit; public MetricQueryService(RpcService rpcService, String endpointId, long messageSizeLimit) { super(rpcService, endpointId); this.messageSizeLimit = messageSizeLimit; } @Override public CompletableFuture onStop() { serializer.close(); return CompletableFuture.completedFuture(null); } public void addMetric(String metricName, Metric metric, AbstractMetricGroup group) { runAsync( () -> { QueryScopeInfo info = group.getQueryServiceMetricInfo(FILTER); if (metric instanceof Counter) { counters.put( (Counter) metric, new Tuple2<>(info, FILTER.filterCharacters(metricName))); } else if (metric instanceof Gauge) { gauges.put( (Gauge) metric, new Tuple2<>(info, FILTER.filterCharacters(metricName))); } else if (metric instanceof Histogram) { histograms.put( (Histogram) metric, new Tuple2<>(info, FILTER.filterCharacters(metricName))); } else if (metric instanceof Meter) { meters.put( (Meter) metric, new Tuple2<>(info, FILTER.filterCharacters(metricName))); } }); } public void removeMetric(Metric metric) { runAsync( () -> { if (metric instanceof Counter) { this.counters.remove(metric); } else if (metric instanceof Gauge) { this.gauges.remove(metric); } else if (metric instanceof Histogram) { this.histograms.remove(metric); } else if (metric instanceof Meter) { this.meters.remove(metric); } }); } @Override public CompletableFuture queryMetrics( Time timeout) { return callAsync( () -> enforceSizeLimit(serializer.serialize(counters, gauges, histograms, meters)), TimeUtils.toDuration(timeout)); } private MetricDumpSerialization.MetricSerializationResult enforceSizeLimit( MetricDumpSerialization.MetricSerializationResult serializationResult) { int currentLength = 0; boolean hasExceededBefore = false; byte[] serializedCounters = serializationResult.serializedCounters; int numCounters = serializationResult.numCounters; if (exceedsMessageSizeLimit( currentLength + serializationResult.serializedCounters.length)) { logDumpSizeWouldExceedLimit("Counters", hasExceededBefore); hasExceededBefore = true; serializedCounters = new byte[0]; numCounters = 0; } else { currentLength += serializedCounters.length; } byte[] serializedMeters = serializationResult.serializedMeters; int numMeters = serializationResult.numMeters; if (exceedsMessageSizeLimit(currentLength + serializationResult.serializedMeters.length)) { logDumpSizeWouldExceedLimit("Meters", hasExceededBefore); hasExceededBefore = true; serializedMeters = new byte[0]; numMeters = 0; } else { currentLength += serializedMeters.length; } byte[] serializedGauges = serializationResult.serializedGauges; int numGauges = serializationResult.numGauges; if (exceedsMessageSizeLimit(currentLength + serializationResult.serializedGauges.length)) { logDumpSizeWouldExceedLimit("Gauges", hasExceededBefore); hasExceededBefore = true; serializedGauges = new byte[0]; numGauges = 0; } else { currentLength += serializedGauges.length; } byte[] serializedHistograms = serializationResult.serializedHistograms; int numHistograms = serializationResult.numHistograms; if (exceedsMessageSizeLimit( currentLength + serializationResult.serializedHistograms.length)) { logDumpSizeWouldExceedLimit("Histograms", hasExceededBefore); hasExceededBefore = true; serializedHistograms = new byte[0]; numHistograms = 0; } return new MetricDumpSerialization.MetricSerializationResult( serializedCounters, serializedGauges, serializedMeters, serializedHistograms, numCounters, numGauges, numMeters, numHistograms); } private boolean exceedsMessageSizeLimit(final int currentSize) { return currentSize > messageSizeLimit; } private void logDumpSizeWouldExceedLimit(final String metricType, boolean hasExceededBefore) { if (LOG.isDebugEnabled()) { LOG.debug(SIZE_EXCEEDED_LOG_TEMPLATE, metricType, messageSizeLimit); } else { if (!hasExceededBefore) { LOG.info(SIZE_EXCEEDED_LOG_TEMPLATE, "Some metrics", messageSizeLimit); } } } /** * Lightweight method to replace unsupported characters. If the string does not contain any * unsupported characters, this method creates no new string (and in fact no new objects at * all). * *

Replacements: * *

    *
  • {@code space : . ,} are replaced by {@code _} (underscore) *
*/ private static String replaceInvalidChars(String str) { char[] chars = null; final int strLen = str.length(); int pos = 0; for (int i = 0; i < strLen; i++) { final char c = str.charAt(i); switch (c) { case ' ': case '.': case ':': case ',': if (chars == null) { chars = str.toCharArray(); } chars[pos++] = '_'; break; default: if (chars != null) { chars[pos] = c; } pos++; } } return chars == null ? str : new String(chars, 0, pos); } /** * Starts the MetricQueryService actor in the given actor system. * * @param rpcService The rpcService running the MetricQueryService * @param resourceID resource ID to disambiguate the actor name * @return actor reference to the MetricQueryService */ public static MetricQueryService createMetricQueryService( RpcService rpcService, ResourceID resourceID, long maximumFrameSize) { String endpointId = resourceID == null ? METRIC_QUERY_SERVICE_NAME : METRIC_QUERY_SERVICE_NAME + "_" + resourceID.getResourceIdString(); return new MetricQueryService(rpcService, endpointId, maximumFrameSize); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy