Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,21 @@
*/
package org.apache.hadoop.hbase.io;

import com.google.errorprone.annotations.RestrictedApi;
import org.apache.hadoop.hbase.CompatibilitySingletonFactory;
import org.apache.hadoop.hbase.regionserver.MetricsRegionServerSourceFactory;
import org.apache.yetus.audience.InterfaceAudience;

@InterfaceAudience.Private
public class MetricsIO {

private static volatile MetricsIO instance;
private final MetricsIOSource source;
private final MetricsIOWrapper wrapper;

public MetricsIO(MetricsIOWrapper wrapper) {
@RestrictedApi(explanation = "Should only be called in TestMetricsIO", link = "",
allowedOnPath = ".*/(MetricsIO|TestMetricsIO).java")
MetricsIO(MetricsIOWrapper wrapper) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

weird here, here is implementing a singleton, but there is still a public constructor...

is it used somewhere? if not, could we just delete it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes it is being used in a test case, hence had to keep it and changed scope from public

this(CompatibilitySingletonFactory.getInstance(MetricsRegionServerSourceFactory.class)
.createIO(wrapper), wrapper);
}
Expand All @@ -37,6 +41,21 @@ public MetricsIO(MetricsIOWrapper wrapper) {
this.wrapper = wrapper;
}

/**
* Get a static instance for the MetricsIO so that accessors access the same instance. We want to
* lazy initialize so that correct process name is in place. See HBASE-27966 for more details.
*/
public static MetricsIO getInstance() {
if (instance == null) {
synchronized (MetricsIO.class) {
if (instance == null) {
instance = new MetricsIO(new MetricsIOWrapperImpl());
}
}
}
return instance;
}

public MetricsIOSource getMetricsSource() {
return source;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.io.FSDataInputStreamWrapper;
import org.apache.hadoop.hbase.io.MetricsIO;
import org.apache.hadoop.hbase.io.MetricsIOWrapperImpl;
import org.apache.hadoop.hbase.io.compress.Compression;
import org.apache.hadoop.hbase.io.encoding.DataBlockEncoding;
import org.apache.hadoop.hbase.io.hfile.ReaderContext.ReaderType;
Expand Down Expand Up @@ -168,9 +167,6 @@ public final class HFile {
// For tests. Gets incremented when we read a block whether from HDFS or from Cache.
public static final LongAdder DATABLOCK_READ_COUNT = new LongAdder();

/** Static instance for the metrics so that HFileReaders access the same instance */
static final MetricsIO metrics = new MetricsIO(new MetricsIOWrapperImpl());

/**
* Shutdown constructor.
*/
Expand All @@ -193,14 +189,14 @@ public static final long getChecksumFailuresCount() {

public static final void updateReadLatency(long latencyMillis, boolean pread) {
if (pread) {
metrics.updateFsPreadTime(latencyMillis);
MetricsIO.getInstance().updateFsPreadTime(latencyMillis);
} else {
metrics.updateFsReadTime(latencyMillis);
MetricsIO.getInstance().updateFsReadTime(latencyMillis);
}
}

public static final void updateWriteLatency(long latencyMillis) {
metrics.updateFsWriteTime(latencyMillis);
MetricsIO.getInstance().updateFsWriteTime(latencyMillis);
}

/** API required to write an {@link HFile} */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
/*
* 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 static junit.framework.TestCase.assertFalse;
import static junit.framework.TestCase.assertTrue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import java.net.HttpURLConnection;
import java.net.URL;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseClassTestRule;
import org.apache.hadoop.hbase.HBaseTestingUtil;
import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.testclassification.MetricsTests;
import org.apache.hadoop.hbase.testclassification.SmallTests;
import org.apache.hadoop.hbase.util.Pair;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.experimental.categories.Category;

@Category({ MetricsTests.class, SmallTests.class })
public class TestMetricsJvm {
@ClassRule
public static final HBaseClassTestRule CLASS_RULE =
HBaseClassTestRule.forClass(TestMetricsJvm.class);

private final static HBaseTestingUtil UTIL = new HBaseTestingUtil();
private static Configuration conf;

@BeforeClass
public static void before() throws Exception {
conf = UTIL.getConfiguration();
// The master info server does not run in tests by default.
// Set it to ephemeral port so that it will start
conf.setInt(HConstants.MASTER_INFO_PORT, 0);
UTIL.startMiniCluster();
}

@AfterClass
public static void after() throws Exception {
UTIL.shutdownMiniCluster();
}

@Test
public void testJvmMetrics() throws Exception {
final Pair<Integer, String> jmxPage = getJmxPage("?qry=Hadoop:service=HBase,name=JvmMetrics*");
assertNotNull(jmxPage);

final Integer responseCode = jmxPage.getFirst();
final String responseBody = jmxPage.getSecond();

assertEquals(HttpURLConnection.HTTP_OK, responseCode.intValue());
assertNotNull(responseBody);

assertNotFind("\"tag.ProcessName\"\\s*:\\s*\"IO\"", responseBody);
assertReFind("\"tag.ProcessName\"\\s*:\\s*\"Master\"", responseBody);
}

private Pair<Integer, String> getJmxPage(String query) throws Exception {
URL url = new URL("http://localhost:"
+ UTIL.getHBaseCluster().getMaster().getInfoServer().getPort() + "/jmx" + query);
return getUrlContent(url);
}

private Pair<Integer, String> getUrlContent(URL url) throws Exception {
try (CloseableHttpClient client = HttpClients.createDefault()) {
CloseableHttpResponse resp = client.execute(new HttpGet(url.toURI()));
int code = resp.getStatusLine().getStatusCode();
if (code == HttpURLConnection.HTTP_OK) {
return new Pair<>(code, EntityUtils.toString(resp.getEntity()));
}
return new Pair<>(code, null);
}
}

private void assertReFind(String re, String value) {
Pattern p = Pattern.compile(re);
Matcher m = p.matcher(value);
assertTrue("'" + p + "' does not match " + value, m.find());
}

private void assertNotFind(String re, String value) {
Pattern p = Pattern.compile(re);
Matcher m = p.matcher(value);
assertFalse("'" + p + "' should not match " + value, m.find());
}
}