HDFS-7963. Fix expected tracing spans in TestTracing. Contributed by Masatake Iwasaki.
This commit is contained in:
parent
2e9c690e90
commit
370c91461f
|
@ -932,6 +932,9 @@ Release 2.7.0 - UNRELEASED
|
|||
|
||||
HDFS-7977. NFS couldn't take percentile intervals (brandonli)
|
||||
|
||||
HDFS-7963. Fix expected tracing spans in TestTracing along with HDFS-7054.
|
||||
(Masatake Iwasaki via kihwal)
|
||||
|
||||
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
||||
|
|
|
@ -88,7 +88,10 @@ public class TestTracing {
|
|||
"ClientNamenodeProtocol#fsync",
|
||||
"org.apache.hadoop.hdfs.protocol.ClientProtocol.complete",
|
||||
"ClientNamenodeProtocol#complete",
|
||||
"DFSOutputStream",
|
||||
"newStreamForCreate",
|
||||
"DFSOutputStream#writeChunk",
|
||||
"DFSOutputStream#close",
|
||||
"dataStreamer",
|
||||
"OpWriteBlockProto",
|
||||
"org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock",
|
||||
"ClientNamenodeProtocol#addBlock"
|
||||
|
@ -102,12 +105,27 @@ public class TestTracing {
|
|||
long spanStart = s.getStartTimeMillis();
|
||||
long spanEnd = s.getStopTimeMillis();
|
||||
|
||||
// There should only be one trace id as it should all be homed in the
|
||||
// top trace.
|
||||
for (Span span : SetSpanReceiver.SetHolder.spans.values()) {
|
||||
// Spans homed in the top trace shoud have same trace id.
|
||||
// Spans having multiple parents (e.g. "dataStreamer" added by HDFS-7054)
|
||||
// and children of them are exception.
|
||||
String[] spansInTopTrace = {
|
||||
"testWriteTraceHooks",
|
||||
"org.apache.hadoop.hdfs.protocol.ClientProtocol.create",
|
||||
"ClientNamenodeProtocol#create",
|
||||
"org.apache.hadoop.hdfs.protocol.ClientProtocol.fsync",
|
||||
"ClientNamenodeProtocol#fsync",
|
||||
"org.apache.hadoop.hdfs.protocol.ClientProtocol.complete",
|
||||
"ClientNamenodeProtocol#complete",
|
||||
"newStreamForCreate",
|
||||
"DFSOutputStream#writeChunk",
|
||||
"DFSOutputStream#close",
|
||||
};
|
||||
for (String desc : spansInTopTrace) {
|
||||
for (Span span : map.get(desc)) {
|
||||
Assert.assertEquals(ts.getSpan().getTraceId(), span.getTraceId());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testWriteWithoutTraceHooks() throws Exception {
|
||||
|
|
Loading…
Reference in New Issue