Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -24,10 +24,12 @@
@InterfaceAudience.Private
public class MetricsIO {

private static MetricsIO instance;
Copy link
Contributor

Choose a reason for hiding this comment

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

This probably should be volatile. Below in your new method, you should do synchronization if it's null so it only gets instantiated once. Example: https://github.com/apache/hbase/blob/master/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java#L87

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This probably should be volatile. Below in your new method, you should do synchronization if it's null so it only gets instantiated once. Example: https://github.com/apache/hbase/blob/master/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java#L87

Update the logic as per suggestion.

private final MetricsIOSource source;
private final MetricsIOWrapper wrapper;

public MetricsIO(MetricsIOWrapper wrapper) {
// visible for testing only
Copy link
Contributor

@Reidddddd Reidddddd Aug 2, 2023

Choose a reason for hiding this comment

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

could use the annotation @VisibleForTesting?

Copy link
Contributor Author

@NihalJain NihalJain Aug 2, 2023

Choose a reason for hiding this comment

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

I initially thought to add same but checked code and found this is banned now. See

hbase/pom.xml

Line 2535 in f6c5dbe

<bannedImport>org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting</bannedImport>

So added a comment "visible for testing only" as done at other places in code base. See https://github.com/search?q=repo%3Aapache%2Fhbase+%22visible+for+testing%22&type=code

Copy link
Contributor

Choose a reason for hiding this comment

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

Could use RestrictedApi to restrict the place where we can call this method. It will cause a compilation error if called from other places in the error prone check.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done with commit 0a7b561 and updated PR.

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 +39,17 @@ public MetricsIO(MetricsIOWrapper wrapper) {
this.wrapper = wrapper;
}

/**
* Get a static instance for the MetricsIO so that accessors access the same instance
*/
public static MetricsIO getInstance() {
if (instance != null) {
return instance;
}
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());
}
}