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

org.apache.hadoop.fs.s3a.statistics.impl.BondedS3AStatisticsContext Maven / Gradle / Ivy

Go to download

This module contains code to support integration with Amazon Web Services. It also declares the dependencies needed to work with AWS services.

There is a newer version: 3.4.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.hadoop.fs.s3a.statistics.impl;

import javax.annotation.Nullable;

import java.time.Duration;

import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.s3a.S3AInstrumentation;
import org.apache.hadoop.fs.s3a.Statistic;
import org.apache.hadoop.fs.s3a.s3guard.MetastoreInstrumentation;
import org.apache.hadoop.fs.s3a.statistics.BlockOutputStreamStatistics;
import org.apache.hadoop.fs.s3a.statistics.CommitterStatistics;
import org.apache.hadoop.fs.s3a.statistics.DelegationTokenStatistics;
import org.apache.hadoop.fs.s3a.statistics.S3AInputStreamStatistics;
import org.apache.hadoop.fs.s3a.statistics.S3AMultipartUploaderStatistics;
import org.apache.hadoop.fs.s3a.statistics.S3AStatisticsContext;
import org.apache.hadoop.fs.s3a.statistics.StatisticsFromAwsSdk;
import org.apache.hadoop.fs.statistics.DurationTracker;

/**
 * An S3A statistics context which is bonded to a
 * S3AInstrumentation instance -inevitably that of an S3AFileSystem
 * instance.
 * 

* An interface is used to bind to the relevant fields, rather * than have them passed in the constructor because some * production code, specifically, DelegateToFileSystem, * patches the protected field after initialization. *

*

* All operations are passed through directly to that class. *

*

* If an instance of FileSystem.Statistics is passed in, it * will be used whenever input stream statistics are created - * However, Internally always increments the statistics in the * current thread. *

*

* As a result, cross-thread IO will under-report. *

* * This is addressed through the stream statistics classes * only updating the stats in the close() call. Provided * they are closed in the worker thread, all stats collected in * helper threads will be included. */ public class BondedS3AStatisticsContext implements S3AStatisticsContext { /** Source of statistics services. */ private final S3AFSStatisticsSource statisticsSource; /** * Instantiate. * @param statisticsSource integration binding */ public BondedS3AStatisticsContext( final S3AFSStatisticsSource statisticsSource) { this.statisticsSource = statisticsSource; } /** * Get the instrumentation from the FS integration. * @return instrumentation instance. */ private S3AInstrumentation getInstrumentation() { return statisticsSource.getInstrumentation(); } /** * The filesystem statistics: know this is thread-local. * @return FS statistics. */ private FileSystem.Statistics getInstanceStatistics() { return statisticsSource.getInstanceStatistics(); } /** * Get a MetastoreInstrumentation getInstrumentation() instance for this * context. * @return the S3Guard getInstrumentation() point. */ @Override public MetastoreInstrumentation getS3GuardInstrumentation() { return getInstrumentation().getS3GuardInstrumentation(); } /** * Create a stream input statistics instance. * The FileSystem.Statistics instance of the {@link #statisticsSource} * is used as the reference to FileSystem statistics to update * @return the new instance */ @Override public S3AInputStreamStatistics newInputStreamStatistics() { return getInstrumentation().newInputStreamStatistics( statisticsSource.getInstanceStatistics()); } /** * Create a new instance of the committer statistics. * @return a new committer statistics instance */ @Override public CommitterStatistics newCommitterStatistics() { return getInstrumentation().newCommitterStatistics(); } /** * Create a stream output statistics instance. * @return the new instance */ @Override public BlockOutputStreamStatistics newOutputStreamStatistics() { return getInstrumentation() .newOutputStreamStatistics(getInstanceStatistics()); } /** * Increment a specific counter. *

* No-op if not defined. * @param op operation * @param count increment value */ @Override public void incrementCounter(Statistic op, long count) { getInstrumentation().incrementCounter(op, count); } /** * Increment a specific gauge. *

* No-op if not defined. * @param op operation * @param count increment value * @throws ClassCastException if the metric is of the wrong type */ @Override public void incrementGauge(Statistic op, long count) { getInstrumentation().incrementGauge(op, count); } /** * Decrement a specific gauge. *

* No-op if not defined. * @param op operation * @param count increment value * @throws ClassCastException if the metric is of the wrong type */ @Override public void decrementGauge(Statistic op, long count) { getInstrumentation().decrementGauge(op, count); } /** * Add a value to a quantiles statistic. No-op if the quantile * isn't found. * @param op operation to look up. * @param value value to add. * @throws ClassCastException if the metric is not a Quantiles. */ @Override public void addValueToQuantiles(Statistic op, long value) { getInstrumentation().addValueToQuantiles(op, value); } @Override public void recordDuration(final Statistic op, final boolean success, final Duration duration) { getInstrumentation().recordDuration(op, success, duration); } /** * Create a delegation token statistics instance. * @return an instance of delegation token statistics */ @Override public DelegationTokenStatistics newDelegationTokenStatistics() { return getInstrumentation().newDelegationTokenStatistics(); } @Override public StatisticsFromAwsSdk newStatisticsFromAwsSdk() { return new StatisticsFromAwsSdkImpl(getInstrumentation()); } @Override public S3AMultipartUploaderStatistics createMultipartUploaderStatistics() { return new S3AMultipartUploaderStatisticsImpl(this::incrementCounter); } @Override public DurationTracker trackDuration(final String key, final long count) { return getInstrumentation().trackDuration(key, count); } /** * This is the interface which an integration source must implement * for the integration. * Note that the FileSystem.statistics field may be null for a class; */ public interface S3AFSStatisticsSource { /** * Get the S3A Instrumentation. * @return a non-null instrumentation instance */ S3AInstrumentation getInstrumentation(); /** * Get the statistics of the FS instance, shared across all threads. * @return filesystem statistics */ @Nullable FileSystem.Statistics getInstanceStatistics(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy