steveloughran commented on a change in pull request #1611: HADOOP-16612 Track Azure Blob File System client-perceived latency URL: https://github.com/apache/hadoop/pull/1611#discussion_r341270142
########## File path: hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/services/TestAbfsPerfTracker.java ########## @@ -0,0 +1,399 @@ +/** + * 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.fs.azurebfs.services; + +import java.net.URL; +import java.time.Duration; +import java.time.Instant; +import java.util.ArrayList; +import java.util.List; +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; +import java.util.regex.Pattern; + +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import static org.assertj.core.api.Assertions.assertThat; + +/** + * Test the latency tracker for ABFS. + * + */ +public final class TestAbfsPerfTracker { + private static final Logger LOG = LoggerFactory.getLogger(TestAbfsPerfTracker.class); + private static ExecutorService executorService = null; + private static final int TEST_AGGREGATE_COUNT = 42; + private final String filesystemName = "bogusFilesystemName"; + private final String accountName = "bogusAccountName"; + private final URL url; + + public TestAbfsPerfTracker() throws Exception { + this.url = new URL("http", "www.microsoft.com", "/bogusFile"); + } + + @Before + public void setUp() throws Exception { + executorService = Executors.newCachedThreadPool(); + } + + @After + public void tearDown() throws Exception { + executorService.shutdown(); + } + + @Test + public void verifyDisablingOfTracker() throws Exception { + // verify that disabling of the tracker works + AbfsPerfTracker abfsPerfTracker = new AbfsPerfTracker(accountName, filesystemName, false); + + String latencyDetails = abfsPerfTracker.getClientLatency(); + assertThat(latencyDetails).describedAs("AbfsPerfTracker should be empty").isNull(); + + try (AbfsPerfInfo tracker = new AbfsPerfInfo(abfsPerfTracker, "disablingCaller", "disablingCallee")) { + tracker.registerResult(new AbfsHttpOperation(url, "GET", new ArrayList<>())).registerSuccess(true); + } + + latencyDetails = abfsPerfTracker.getClientLatency(); + assertThat(latencyDetails).describedAs("AbfsPerfTracker should return no record").isNull(); + } + + @Test + public void verifyTrackingForSingletonLatencyRecords() throws Exception { + // verify that tracking for singleton latency records works as expected + final int numTasks = 100; + AbfsPerfTracker abfsPerfTracker = new AbfsPerfTracker(accountName, filesystemName, true); + + String latencyDetails = abfsPerfTracker.getClientLatency(); + assertThat(latencyDetails).describedAs("AbfsPerfTracker should be empty").isNull(); + + List<Callable<Integer>> tasks = new ArrayList<>(); + AbfsHttpOperation httpOperation = new AbfsHttpOperation(url, "GET", new ArrayList<>()); + + for (int i=0; i < numTasks; i++) { + tasks.add(() -> { + try (AbfsPerfInfo tracker = new AbfsPerfInfo(abfsPerfTracker, "oneOperationCaller", "oneOperationCallee")) { + tracker.registerResult(httpOperation).registerSuccess(true); + return 0; + } + }); + } + + for (Future<Integer> fr: executorService.invokeAll(tasks)) { + fr.get(); + } + + for (int i=0; i < numTasks; i++) { + latencyDetails = abfsPerfTracker.getClientLatency(); + assertThat(latencyDetails).describedAs("AbfsPerfTracker should return non-null record").isNotNull(); + assertThat(Pattern.matches( + "h=[^ ]* t=[^ ]* a=bogusFilesystemName c=bogusAccountName cr=oneOperationCaller ce=oneOperationCallee r=Succeeded l=[0-9]+" Review comment: Actually assertJ has a special containsPattern() assertion which fails with meaningful text - see https://github.com/joel-costigliola/assertj-examples/blob/master/assertions-examples/src/test/java/org/assertj/examples/StringAssertionsExamples.java#L231 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
