|
@@ -0,0 +1,177 @@
|
|
|
+/**
|
|
|
+ * 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.mapred;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import org.apache.hadoop.metrics2.MetricsRecordBuilder;
|
|
|
+import static org.apache.hadoop.test.MetricsAsserts.*;
|
|
|
+
|
|
|
+import org.junit.Test;
|
|
|
+
|
|
|
+public class TestShuffleExceptionCount {
|
|
|
+
|
|
|
+ public static class TestMapOutputServlet extends TaskTracker.MapOutputServlet {
|
|
|
+
|
|
|
+ public void checkException(IOException ie, String exceptionMsgRegex,
|
|
|
+ String exceptionStackRegex, ShuffleServerInstrumentation shuffleMetrics) {
|
|
|
+ super.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Test
|
|
|
+ public void testCheckException() throws IOException, InterruptedException {
|
|
|
+ TestMapOutputServlet testServlet = new TestMapOutputServlet();
|
|
|
+ JobConf conf = new JobConf();
|
|
|
+ conf.setUser("testuser");
|
|
|
+ conf.setJobName("testJob");
|
|
|
+ conf.setSessionId("testSession");
|
|
|
+
|
|
|
+ TaskTracker tt = new TaskTracker();
|
|
|
+ tt.setConf(conf);
|
|
|
+ ShuffleServerInstrumentation shuffleMetrics =
|
|
|
+ ShuffleServerInstrumentation.create(tt);
|
|
|
+
|
|
|
+ // first test with only MsgRegex set but doesn't match
|
|
|
+ String exceptionMsgRegex = "Broken pipe";
|
|
|
+ String exceptionStackRegex = null;
|
|
|
+ IOException ie = new IOException("EOFException");
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ MetricsRecordBuilder rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 0, rb);
|
|
|
+
|
|
|
+ // test with only MsgRegex set that does match
|
|
|
+ ie = new IOException("Broken pipe");
|
|
|
+ exceptionStackRegex = null;
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 1, rb);
|
|
|
+
|
|
|
+ // test with neither set, make sure incremented
|
|
|
+ exceptionMsgRegex = null;
|
|
|
+ exceptionStackRegex = null;
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 2, rb);
|
|
|
+
|
|
|
+ // test with only StackRegex set doesn't match
|
|
|
+ exceptionMsgRegex = null;
|
|
|
+ exceptionStackRegex = ".*\\.doesnt\\$SelectSet\\.wakeup.*";
|
|
|
+ ie.setStackTrace(constructStackTrace());
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 2, rb);
|
|
|
+
|
|
|
+ // test with only StackRegex set does match
|
|
|
+ exceptionMsgRegex = null;
|
|
|
+ exceptionStackRegex = ".*\\.SelectorManager\\$SelectSet\\.wakeup.*";
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 3, rb);
|
|
|
+
|
|
|
+ // test with both regex set and matches
|
|
|
+ exceptionMsgRegex = "Broken pipe";
|
|
|
+ ie.setStackTrace(constructStackTraceTwo());
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 4, rb);
|
|
|
+
|
|
|
+ // test with both regex set and only msg matches
|
|
|
+ exceptionStackRegex = ".*[1-9]+BOGUSREGEX";
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 4, rb);
|
|
|
+
|
|
|
+ // test with both regex set and only stack matches
|
|
|
+ exceptionStackRegex = ".*\\.SelectorManager\\$SelectSet\\.wakeup.*";
|
|
|
+ exceptionMsgRegex = "EOFException";
|
|
|
+ testServlet.checkException(ie, exceptionMsgRegex, exceptionStackRegex,
|
|
|
+ shuffleMetrics);
|
|
|
+ rb = getMetrics(shuffleMetrics);
|
|
|
+ assertCounter("shuffle_exceptions_caught", 4, rb);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Construction exception like:
|
|
|
+ * java.io.IOException: Broken pipe at
|
|
|
+ * sun.nio.ch.EPollArrayWrapper.interrupt(Native Method) at
|
|
|
+ * sun.nio.ch.EPollArrayWrapper.interrupt(EPollArrayWrapper.java:256) at
|
|
|
+ * sun.nio.ch.EPollSelectorImpl.wakeup(EPollSelectorImpl.java:175) at
|
|
|
+ * org.mortbay.io.nio.SelectorManager$SelectSet.wakeup(SelectorManager.java:831) at
|
|
|
+ * org.mortbay.io.nio.SelectorManager$SelectSet.doSelect(SelectorManager.java:709) at
|
|
|
+ * org.mortbay.io.nio.SelectorManager.doSelect(SelectorManager.java:192) at
|
|
|
+ * org.mortbay.jetty.nio.SelectChannelConnector.accept(SelectChannelConnector.java:124) at
|
|
|
+ * org.mortbay.jetty.AbstractConnector$Acceptor.run(AbstractConnector.java:708) at
|
|
|
+ * org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
|
|
|
+ */
|
|
|
+ private StackTraceElement[] constructStackTrace() {
|
|
|
+ StackTraceElement[] stack = new StackTraceElement[9];
|
|
|
+ stack[0] = new StackTraceElement("sun.nio.ch.EPollArrayWrapper", "interrupt", "", -2);
|
|
|
+ stack[1] = new StackTraceElement("sun.nio.ch.EPollArrayWrapper", "interrupt", "EPollArrayWrapper.java", 256);
|
|
|
+ stack[2] = new StackTraceElement("sun.nio.ch.EPollSelectorImpl", "wakeup", "EPollSelectorImpl.java", 175);
|
|
|
+ stack[3] = new StackTraceElement("org.mortbay.io.nio.SelectorManager$SelectSet", "wakeup", "SelectorManager.java", 831);
|
|
|
+ stack[4] = new StackTraceElement("org.mortbay.io.nio.SelectorManager$SelectSet", "doSelect", "SelectorManager.java", 709);
|
|
|
+ stack[5] = new StackTraceElement("org.mortbay.io.nio.SelectorManager", "doSelect", "SelectorManager.java", 192);
|
|
|
+ stack[6] = new StackTraceElement("org.mortbay.jetty.nio.SelectChannelConnector", "accept", "SelectChannelConnector.java", 124);
|
|
|
+ stack[7] = new StackTraceElement("org.mortbay.jetty.AbstractConnector$Acceptor", "run", "AbstractConnector.java", 708);
|
|
|
+ stack[8] = new StackTraceElement("org.mortbay.thread.QueuedThreadPool$PoolThread", "run", "QueuedThreadPool.java", 582);
|
|
|
+
|
|
|
+ return stack;
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * java.io.IOException: Broken pipe at
|
|
|
+ * sun.nio.ch.EPollArrayWrapper.interrupt(Native Method) at
|
|
|
+ * sun.nio.ch.EPollArrayWrapper.interrupt(EPollArrayWrapper.java:256) at
|
|
|
+ * sun.nio.ch.EPollSelectorImpl.wakeup(EPollSelectorImpl.java:175) at
|
|
|
+ * org.mortbay.io.nio.SelectorManager$SelectSet.wakeup(SelectorManager.java:831) at
|
|
|
+ * org.mortbay.io.nio.SelectChannelEndPoint.updateKey(SelectChannelEndPoint.java:335) at
|
|
|
+ * org.mortbay.io.nio.SelectChannelEndPoint.blockWritable(SelectChannelEndPoint.java:278) at
|
|
|
+ * org.mortbay.jetty.AbstractGenerator$Output.blockForOutput(AbstractGenerator.java:545) at
|
|
|
+ * org.mortbay.jetty.AbstractGenerator$Output.flush(AbstractGenerator.java:572) at
|
|
|
+ * org.mortbay.jetty.HttpConnection$Output.flush(HttpConnection.java:1012) at
|
|
|
+ * org.mortbay.jetty.AbstractGenerator$Output.write(AbstractGenerator.java:651)at
|
|
|
+ * org.mortbay.jetty.AbstractGenerator$Output.write(AbstractGenerator.java:580) at
|
|
|
+ */
|
|
|
+ private StackTraceElement[] constructStackTraceTwo() {
|
|
|
+ StackTraceElement[] stack = new StackTraceElement[11];
|
|
|
+ stack[0] = new StackTraceElement("sun.nio.ch.EPollArrayWrapper", "interrupt", "", -2);
|
|
|
+ stack[1] = new StackTraceElement("sun.nio.ch.EPollArrayWrapper", "interrupt", "EPollArrayWrapper.java", 256);
|
|
|
+ stack[2] = new StackTraceElement("sun.nio.ch.EPollSelectorImpl", "wakeup", "EPollSelectorImpl.java", 175);
|
|
|
+ stack[3] = new StackTraceElement("org.mortbay.io.nio.SelectorManager$SelectSet", "wakeup", "SelectorManager.java", 831);
|
|
|
+ stack[4] = new StackTraceElement("org.mortbay.io.nio.SelectChannelEndPoint", "updateKey", "SelectChannelEndPoint.java", 335);
|
|
|
+ stack[5] = new StackTraceElement("org.mortbay.io.nio.SelectChannelEndPoint", "blockWritable", "SelectChannelEndPoint.java", 278);
|
|
|
+ stack[6] = new StackTraceElement("org.mortbay.jetty.AbstractGenerator$Output", "blockForOutput", "AbstractGenerator.java", 545);
|
|
|
+ stack[7] = new StackTraceElement("org.mortbay.jetty.AbstractGenerator$Output", "flush", "AbstractGenerator.java", 572);
|
|
|
+ stack[8] = new StackTraceElement("org.mortbay.jetty.HttpConnection$Output", "flush", "HttpConnection.java", 1012);
|
|
|
+ stack[9] = new StackTraceElement("org.mortbay.jetty.AbstractGenerator$Output", "write", "AbstractGenerator.java", 651);
|
|
|
+ stack[10] = new StackTraceElement("org.mortbay.jetty.AbstractGenerator$Output", "write", "AbstractGenerator.java", 580);
|
|
|
+
|
|
|
+ return stack;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|