From 2478d333a6dc3123f4e84d4bbb6991f1cbda1ea6 Mon Sep 17 00:00:00 2001 From: Masatake Iwasaki Date: Fri, 21 Jun 2019 14:33:41 +0900 Subject: [PATCH] HDFS-14135. TestWebHdfsTimeouts Fails intermittently in trunk. Contributed by Ayush Saxena. Signed-off-by: Masatake Iwasaki (cherry picked from commit 6b8107ad97251267253fa045ba03c4749f95f530) --- .../hadoop/hdfs/web/TestWebHdfsTimeouts.java | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHdfsTimeouts.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHdfsTimeouts.java index 7b445153884..a693ac3d5e9 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHdfsTimeouts.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/web/TestWebHdfsTimeouts.java @@ -35,6 +35,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; +import java.util.concurrent.TimeoutException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -47,6 +48,7 @@ import org.apache.hadoop.net.NetUtils; import org.apache.hadoop.security.authentication.client.ConnectionConfigurator; import org.apache.hadoop.test.GenericTestUtils; import org.junit.After; +import org.junit.AssumptionViolatedException; import org.junit.Before; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @@ -85,6 +87,7 @@ public class TestWebHdfsTimeouts { return conn; } }); + private volatile boolean failedToConsumeBacklog; public enum TimeoutSource { ConnectionFactory, Configuration }; @@ -123,6 +126,7 @@ public class TestWebHdfsTimeouts { clients = new ArrayList(); serverThread = null; + failedToConsumeBacklog = false; } @After @@ -213,6 +217,7 @@ public class TestWebHdfsTimeouts { fs.getFileChecksum(new Path("/file")); fail("expected timeout"); } catch (SocketTimeoutException e) { + assumeBacklogConsumed(); GenericTestUtils.assertExceptionContains( fs.getUri().getAuthority() + ": connect timed out", e); } @@ -246,6 +251,7 @@ public class TestWebHdfsTimeouts { os = fs.create(new Path("/file")); fail("expected timeout"); } catch (SocketTimeoutException e) { + assumeBacklogConsumed(); GenericTestUtils.assertExceptionContains( fs.getUri().getAuthority() + ": connect timed out", e); } finally { @@ -359,6 +365,28 @@ public class TestWebHdfsTimeouts { client.connect(nnHttpAddress); clients.add(client); } + try { + GenericTestUtils.waitFor(() -> { + try (SocketChannel c = SocketChannel.open()) { + c.socket().connect(nnHttpAddress, 100); + } catch (SocketTimeoutException e) { + return true; + } catch (IOException e) { + LOG.debug("unexpected exception: " + e); + } + return false; + }, 100, 10000); + } catch (TimeoutException | InterruptedException e) { + failedToConsumeBacklog = true; + assumeBacklogConsumed(); + } + } + + private void assumeBacklogConsumed() { + if (failedToConsumeBacklog) { + throw new AssumptionViolatedException( + "failed to fill up connection backlog."); + } } /**