HDFS-8063: Fix intermittent test failures in TestTracing (Masatake Iwasaki via Colin P. McCabe)

(cherry picked from commit 61dc2ea3fe)
This commit is contained in:
Colin Patrick Mccabe 2015-04-09 11:28:02 -07:00
parent ca12088253
commit 8dac245920
2 changed files with 45 additions and 83 deletions

View File

@ -1126,6 +1126,9 @@ Release 2.7.0 - UNRELEASED
HDFS-8025. Addendum fix for HDFS-3087 Decomissioning on NN restart can HDFS-8025. Addendum fix for HDFS-3087 Decomissioning on NN restart can
complete without blocks being replicated. (Ming Ma via wang) complete without blocks being replicated. (Ming Ma via wang)
HDFS-8063: Fix intermittent test failures in TestTracing (Masatake Iwasaki
via Colin P. McCabe)
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode HDFS-7720. Quota by Storage Type API, tools and ClientNameNode

View File

@ -31,7 +31,7 @@
import org.apache.htrace.SpanReceiver; import org.apache.htrace.SpanReceiver;
import org.apache.htrace.Trace; import org.apache.htrace.Trace;
import org.apache.htrace.TraceScope; import org.apache.htrace.TraceScope;
import org.junit.AfterClass; import org.junit.After;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Before; import org.junit.Before;
import org.junit.BeforeClass; import org.junit.BeforeClass;
@ -56,27 +56,26 @@ public class TestTracing {
private static SpanReceiverHost spanReceiverHost; private static SpanReceiverHost spanReceiverHost;
@Test @Test
public void testGetSpanReceiverHost() throws Exception { public void testTracing() throws Exception {
Configuration c = new Configuration();
// getting instance already loaded. // getting instance already loaded.
c.set(SpanReceiverHost.SPAN_RECEIVERS_CONF_KEY, ""); Assert.assertEquals(spanReceiverHost,
SpanReceiverHost s = SpanReceiverHost.getInstance(c); SpanReceiverHost.getInstance(new Configuration()));
Assert.assertEquals(spanReceiverHost, s);
// write and read without tracing started
String fileName = "testTracingDisabled.dat";
writeTestFile(fileName);
Assert.assertTrue(SetSpanReceiver.SetHolder.size() == 0);
readTestFile(fileName);
Assert.assertTrue(SetSpanReceiver.SetHolder.size() == 0);
writeWithTracing();
readWithTracing();
} }
@Test public void writeWithTracing() throws Exception {
public void testWriteTraceHooks() throws Exception {
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
TraceScope ts = Trace.startSpan("testWriteTraceHooks", Sampler.ALWAYS); TraceScope ts = Trace.startSpan("testWriteTraceHooks", Sampler.ALWAYS);
Path file = new Path("traceWriteTest.dat"); writeTestFile("testWriteTraceHooks.dat");
FSDataOutputStream stream = dfs.create(file);
for (int i = 0; i < 10; i++) {
byte[] data = RandomStringUtils.randomAlphabetic(102400).getBytes();
stream.write(data);
}
stream.hflush();
stream.close();
long endTime = System.currentTimeMillis(); long endTime = System.currentTimeMillis();
ts.close(); ts.close();
@ -125,55 +124,17 @@ public void testWriteTraceHooks() throws Exception {
Assert.assertEquals(ts.getSpan().getTraceId(), span.getTraceId()); Assert.assertEquals(ts.getSpan().getTraceId(), span.getTraceId());
} }
} }
SetSpanReceiver.SetHolder.spans.clear();
} }
@Test public void readWithTracing() throws Exception {
public void testWriteWithoutTraceHooks() throws Exception { String fileName = "testReadTraceHooks.dat";
Path file = new Path("withoutTraceWriteTest.dat"); writeTestFile(fileName);
FSDataOutputStream stream = dfs.create(file);
for (int i = 0; i < 10; i++) {
byte[] data = RandomStringUtils.randomAlphabetic(102400).getBytes();
stream.write(data);
}
stream.hflush();
stream.close();
Assert.assertTrue(SetSpanReceiver.SetHolder.size() == 0);
}
@Test
public void testReadTraceHooks() throws Exception {
String fileName = "traceReadTest.dat";
Path filePath = new Path(fileName);
// Create the file.
FSDataOutputStream ostream = dfs.create(filePath);
for (int i = 0; i < 50; i++) {
byte[] data = RandomStringUtils.randomAlphabetic(10240).getBytes();
ostream.write(data);
}
ostream.close();
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
TraceScope ts = Trace.startSpan("testReadTraceHooks", Sampler.ALWAYS); TraceScope ts = Trace.startSpan("testReadTraceHooks", Sampler.ALWAYS);
FSDataInputStream istream = dfs.open(filePath, 10240); readTestFile(fileName);
ByteBuffer buf = ByteBuffer.allocate(10240);
int count = 0;
try {
while (istream.read(buf) > 0) {
count += 1;
buf.clear();
istream.seek(istream.getPos() + 5);
}
} catch (IOException ioe) {
// Ignore this it's probably a seek after eof.
} finally {
istream.close();
}
ts.getSpan().addTimelineAnnotation("count: " + count);
long endTime = System.currentTimeMillis();
ts.close(); ts.close();
long endTime = System.currentTimeMillis();
String[] expectedSpanNames = { String[] expectedSpanNames = {
"testReadTraceHooks", "testReadTraceHooks",
@ -198,21 +159,22 @@ public void testReadTraceHooks() throws Exception {
for (Span span : SetSpanReceiver.SetHolder.spans.values()) { for (Span span : SetSpanReceiver.SetHolder.spans.values()) {
Assert.assertEquals(ts.getSpan().getTraceId(), span.getTraceId()); Assert.assertEquals(ts.getSpan().getTraceId(), span.getTraceId());
} }
SetSpanReceiver.SetHolder.spans.clear();
} }
@Test private void writeTestFile(String testFileName) throws Exception {
public void testReadWithoutTraceHooks() throws Exception { Path filePath = new Path(testFileName);
String fileName = "withoutTraceReadTest.dat"; FSDataOutputStream stream = dfs.create(filePath);
Path filePath = new Path(fileName); for (int i = 0; i < 10; i++) {
byte[] data = RandomStringUtils.randomAlphabetic(102400).getBytes();
// Create the file. stream.write(data);
FSDataOutputStream ostream = dfs.create(filePath);
for (int i = 0; i < 50; i++) {
byte[] data = RandomStringUtils.randomAlphabetic(10240).getBytes();
ostream.write(data);
} }
ostream.close(); stream.hsync();
stream.close();
}
private void readTestFile(String testFileName) throws Exception {
Path filePath = new Path(testFileName);
FSDataInputStream istream = dfs.open(filePath, 10240); FSDataInputStream istream = dfs.open(filePath, 10240);
ByteBuffer buf = ByteBuffer.allocate(10240); ByteBuffer buf = ByteBuffer.allocate(10240);
@ -228,32 +190,29 @@ public void testReadWithoutTraceHooks() throws Exception {
} finally { } finally {
istream.close(); istream.close();
} }
Assert.assertTrue(SetSpanReceiver.SetHolder.size() == 0);
}
@Before
public void cleanSet() {
SetSpanReceiver.SetHolder.spans.clear();
} }
@BeforeClass @BeforeClass
public static void setupCluster() throws IOException { public static void setup() throws IOException {
conf = new Configuration(); conf = new Configuration();
conf.setLong("dfs.blocksize", 100 * 1024); conf.setLong("dfs.blocksize", 100 * 1024);
conf.set(SpanReceiverHost.SPAN_RECEIVERS_CONF_KEY, conf.set(SpanReceiverHost.SPAN_RECEIVERS_CONF_KEY,
SetSpanReceiver.class.getName()); SetSpanReceiver.class.getName());
spanReceiverHost = SpanReceiverHost.getInstance(conf);
}
@Before
public void startCluster() throws IOException {
cluster = new MiniDFSCluster.Builder(conf) cluster = new MiniDFSCluster.Builder(conf)
.numDataNodes(3) .numDataNodes(3)
.build(); .build();
cluster.waitActive(); cluster.waitActive();
dfs = cluster.getFileSystem(); dfs = cluster.getFileSystem();
spanReceiverHost = SpanReceiverHost.getInstance(conf); SetSpanReceiver.SetHolder.spans.clear();
} }
@AfterClass @After
public static void shutDown() throws IOException { public void shutDown() throws IOException {
cluster.shutdown(); cluster.shutdown();
} }