Skip to content

Commit f8ec6fc

Browse files
committed
HBASE-24767 Change default to false for HBASE-15519 per-user metrics
Set hbase.regionserver.user.metrics.enabled default to false; i.e. off.
1 parent ce4e692 commit f8ec6fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MetricsUserAggregateFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private MetricsUserAggregateFactory() {
2828
}
2929

3030
public static final String METRIC_USER_ENABLED_CONF = "hbase.regionserver.user.metrics.enabled";
31-
public static final boolean DEFAULT_METRIC_USER_ENABLED_CONF = true;
31+
public static final boolean DEFAULT_METRIC_USER_ENABLED_CONF = false;
3232

3333
public static MetricsUserAggregate getMetricsUserAggregate(Configuration conf) {
3434
if (conf.getBoolean(METRIC_USER_ENABLED_CONF, DEFAULT_METRIC_USER_ENABLED_CONF)) {

0 commit comments

Comments
 (0)