hadoop StorageStatisticsFromIOStatistics 源码
haddop StorageStatisticsFromIOStatistics 代码
文件路径:/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/statistics/impl/StorageStatisticsFromIOStatistics.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.fs.statistics.impl;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
import org.apache.hadoop.fs.StorageStatistics;
import org.apache.hadoop.fs.statistics.IOStatistics;
/**
* Returns all the counters of an IOStatistics instance as StorageStatistics.
* This is dynamic.
* The {@link #reset()} is downgraded to a no-op.
*/
public class StorageStatisticsFromIOStatistics
extends StorageStatistics
implements Iterable<StorageStatistics.LongStatistic> {
private final IOStatistics ioStatistics;
private final String scheme;
/**
* Instantiate.
* @param name storage statistics name.
* @param scheme FS scheme; may be null.
* @param ioStatistics IOStatistics source.
*/
public StorageStatisticsFromIOStatistics(
final String name,
final String scheme,
final IOStatistics ioStatistics) {
super(name);
this.scheme = scheme;
this.ioStatistics = ioStatistics;
}
@Override
public Iterator<LongStatistic> iterator() {
return getLongStatistics();
}
/**
* Take a snapshot of the current counter values
* and return an iterator over them.
* @return all the counter statistics.
*/
@Override
public Iterator<LongStatistic> getLongStatistics() {
final Set<Map.Entry<String, Long>> counters = counters()
.entrySet();
final Set<LongStatistic> statisticSet = counters.stream().map(
this::toLongStatistic)
.collect(Collectors.toSet());
// add the gauges
gauges().entrySet().forEach(entry ->
statisticSet.add(toLongStatistic(entry)));
return statisticSet.iterator();
}
/**
* Convert a counter/gauge entry to a long statistics.
* @param e entry
* @return statistic
*/
private LongStatistic toLongStatistic(final Map.Entry<String, Long> e) {
return new LongStatistic(e.getKey(), e.getValue());
}
private Map<String, Long> counters() {
return ioStatistics.counters();
}
private Map<String, Long> gauges() {
return ioStatistics.gauges();
}
@Override
public Long getLong(final String key) {
Long l = counters().get(key);
if (l == null) {
l = gauges().get(key);
}
return l;
}
@Override
public boolean isTracked(final String key) {
return counters().containsKey(key)
|| gauges().containsKey(key);
}
@Override
public void reset() {
/* no-op */
}
@Override
public String getScheme() {
return scheme;
}
}
相关信息
相关文章
hadoop AbstractIOStatisticsImpl 源码
hadoop DynamicIOStatisticsBuilder 源码
hadoop EmptyIOStatisticsContextImpl 源码
hadoop EmptyIOStatisticsStore 源码
hadoop EvaluatingStatisticsMap 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦