org.apache.hadoop.hbase.regionserver.MetricsUserAggregateSourceImpl Maven / Gradle / Ivy
The 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.hbase.regionserver;
import com.google.common.annotations.VisibleForTesting;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.metrics.BaseSourceImpl;
import org.apache.hadoop.metrics2.MetricsCollector;
import org.apache.hadoop.metrics2.MetricsRecordBuilder;
import org.apache.hadoop.metrics2.lib.Interns;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@InterfaceAudience.Private
public class MetricsUserAggregateSourceImpl extends BaseSourceImpl
implements MetricsUserAggregateSource {
private static final Logger LOG = LoggerFactory.getLogger(MetricsUserAggregateSourceImpl.class);
private final ConcurrentHashMap userSources =
new ConcurrentHashMap();
public MetricsUserAggregateSourceImpl() {
this(METRICS_NAME, METRICS_DESCRIPTION, METRICS_CONTEXT, METRICS_JMX_CONTEXT);
}
public MetricsUserAggregateSourceImpl(String metricsName,
String metricsDescription,
String metricsContext,
String metricsJmxContext) {
super(metricsName, metricsDescription, metricsContext, metricsJmxContext);
}
@Override
public MetricsUserSource getOrCreateMetricsUser(String user) {
MetricsUserSource source = userSources.get(user);
if (source != null) {
return source;
}
source = new MetricsUserSourceImpl(user, this);
MetricsUserSource prev = userSources.putIfAbsent(user, source);
if (prev != null) {
return prev;
} else {
// register the new metrics now
register(source);
}
return source;
}
public void register(MetricsUserSource source) {
synchronized (this) {
source.register();
}
}
@Override
public void deregister(MetricsUserSource toRemove) {
try {
synchronized (this) {
MetricsUserSource source = userSources.remove(toRemove.getUser());
if (source != null) {
source.deregister();
}
}
} catch (Exception e) {
// Ignored. If this errors out it means that someone is double
// closing the user source and the user metrics is already nulled out.
LOG.info("Error trying to remove " + toRemove + " from " + getClass().getSimpleName(), e);
}
}
@VisibleForTesting
public ConcurrentHashMap getUserSources() {
return userSources;
}
@Override
public void getMetrics(MetricsCollector collector, boolean all) {
MetricsRecordBuilder mrb = collector.addRecord(metricsName);
if (userSources != null) {
for (MetricsUserSource userMetricSource : userSources.values()) {
if (userMetricSource instanceof MetricsUserSourceImpl) {
((MetricsUserSourceImpl) userMetricSource).snapshot(mrb, all);
}
}
mrb.addGauge(Interns.info(NUM_USERS, NUMBER_OF_USERS_DESC), userSources.size());
metricsRegistry.snapshot(mrb, all);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy