hadoop BlockReaderIoProvider 源码

  • 2022-10-20
  • 浏览 (219)

haddop BlockReaderIoProvider 代码

文件路径:/hadoop-hdfs-project/hadoop-hdfs-client/src/main/java/org/apache/hadoop/hdfs/client/impl/metrics/BlockReaderIoProvider.java

/**
 * 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.hadoop.hdfs.client.impl.metrics;

import org.apache.hadoop.hdfs.client.impl.DfsClientConf.ShortCircuitConf;
import org.apache.hadoop.util.Timer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.annotation.Nullable;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.util.concurrent.ThreadLocalRandom;

/**
 * Profiles {@link org.apache.hadoop.hdfs.client.impl.BlockReaderLocal} short
 * circuit read latencies when ShortCircuit read metrics is enabled through
 * {@link ShortCircuitConf#scrMetricsEnabled}.
 */
public class BlockReaderIoProvider {
  public static final Logger LOG = LoggerFactory.getLogger(
      BlockReaderIoProvider.class);

  private final BlockReaderLocalMetrics metrics;
  private final boolean isEnabled;
  private final int sampleRangeMax;
  private final Timer timer;

  // Threshold in milliseconds above which a warning should be flagged.
  private static final long SLOW_READ_WARNING_THRESHOLD_MS = 1000;
  private boolean isWarningLogged = false;

  public BlockReaderIoProvider(@Nullable ShortCircuitConf conf,
      BlockReaderLocalMetrics metrics, Timer timer) {
    if (conf != null) {
      isEnabled = conf.isScrMetricsEnabled();
      sampleRangeMax = (Integer.MAX_VALUE / 100) *
          conf.getScrMetricsSamplingPercentage();
      this.metrics = metrics;
      this.timer = timer;
    } else {
      this.isEnabled = false;
      this.sampleRangeMax = 0;
      this.metrics = null;
      this.timer = null;
    }
  }

  public int read(FileChannel dataIn, ByteBuffer dst, long position)
      throws IOException{
    final int nRead;
    if (isEnabled && (ThreadLocalRandom.current().nextInt() < sampleRangeMax)) {
      long begin = timer.monotonicNow();
      nRead = dataIn.read(dst, position);
      long latency = timer.monotonicNow() - begin;
      addLatency(latency);
    } else {
      nRead = dataIn.read(dst, position);
    }
    return nRead;
  }

  private void addLatency(long latency) {
    metrics.addShortCircuitReadLatency(latency);
    if (latency > SLOW_READ_WARNING_THRESHOLD_MS && !isWarningLogged) {
      LOG.warn(String.format("The Short Circuit Local Read latency, %d ms, " +
          "is higher then the threshold (%d ms). Suppressing further warnings" +
          " for this BlockReaderLocal.",
          latency, SLOW_READ_WARNING_THRESHOLD_MS));
      isWarningLogged = true;
    }
  }
}

相关信息

hadoop 源码目录

相关文章

hadoop BlockReaderLocalMetrics 源码

hadoop package-info 源码

0  赞