HBASE-18420 Some methods of Admin don't use ColumnFamilyDescriptor
[hbase.git] / hbase-client / src / main / java / org / apache / hadoop / hbase / client / ServerStatisticTracker.java
blobf78ca41f3959fb0814f423fed21e7496f3071ea9
1 /**
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
18 package org.apache.hadoop.hbase.client;
20 import static org.apache.hadoop.hbase.util.CollectionUtils.computeIfAbsent;
22 import com.google.common.annotations.VisibleForTesting;
24 import java.util.concurrent.ConcurrentHashMap;
26 import org.apache.hadoop.conf.Configuration;
27 import org.apache.hadoop.hbase.HConstants;
28 import org.apache.hadoop.hbase.ServerName;
29 import org.apache.hadoop.hbase.classification.InterfaceAudience;
30 import org.apache.hadoop.hbase.client.backoff.ServerStatistics;
32 /**
33 * Tracks the statistics for multiple regions
35 @InterfaceAudience.Private
36 public class ServerStatisticTracker implements StatisticTrackable {
38 private final ConcurrentHashMap<ServerName, ServerStatistics> stats = new ConcurrentHashMap<>();
40 @Override
41 public void updateRegionStats(ServerName server, byte[] region, RegionLoadStats currentStats) {
42 computeIfAbsent(stats, server, ServerStatistics::new).update(region, currentStats);
45 public ServerStatistics getStats(ServerName server) {
46 return this.stats.get(server);
49 public static ServerStatisticTracker create(Configuration conf) {
50 if (!conf.getBoolean(HConstants.ENABLE_CLIENT_BACKPRESSURE,
51 HConstants.DEFAULT_ENABLE_CLIENT_BACKPRESSURE)) {
52 return null;
54 return new ServerStatisticTracker();
57 @VisibleForTesting
58 ServerStatistics getServerStatsForTesting(ServerName server) {
59 return stats.get(server);