HADOOP-12452. Fix tracing documention reflecting the update to htrace-4 (Masatake Iwasaki via Colin P. McCabe)

This commit is contained in:
Colin Patrick Mccabe 2015-10-05 11:33:46 -07:00
parent f1c19b9365
commit 3e1752f9fb
2 changed files with 40 additions and 22 deletions

View File

@ -793,6 +793,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12446. Undeprecate createNonRecursive() (Ted Yu via kihwal) HADOOP-12446. Undeprecate createNonRecursive() (Ted Yu via kihwal)
HADOOP-12452. Fix tracing documention reflecting the update to htrace-4
(Masatake Iwasaki via Colin P. McCabe)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -22,6 +22,7 @@ Enabling Dapper-like Tracing in Hadoop
* [Dynamic update of tracing configuration](#Dynamic_update_of_tracing_configuration) * [Dynamic update of tracing configuration](#Dynamic_update_of_tracing_configuration)
* [Starting tracing spans by HTrace API](#Starting_tracing_spans_by_HTrace_API) * [Starting tracing spans by HTrace API](#Starting_tracing_spans_by_HTrace_API)
* [Sample code for tracing](#Sample_code_for_tracing) * [Sample code for tracing](#Sample_code_for_tracing)
* [Starting tracing spans by FileSystem Shell](#Starting_tracing_spans_by_FileSystem_Shell)
* [Starting tracing spans by configuration for HDFS client](#Starting_tracing_spans_by_configuration_for_HDFS_client) * [Starting tracing spans by configuration for HDFS client](#Starting_tracing_spans_by_configuration_for_HDFS_client)
@ -122,42 +123,56 @@ The `TracingFsShell.java` shown below is the wrapper of FsShell
which start tracing span before invoking HDFS shell command. which start tracing span before invoking HDFS shell command.
```java ```java
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FsShell; import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.hdfs.DFSConfigKeys;
import org.apache.hadoop.hdfs.HdfsConfiguration;
import org.apache.hadoop.tracing.TraceUtils; import org.apache.hadoop.tracing.TraceUtils;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner; import org.apache.hadoop.util.ToolRunner;
import org.apache.htrace.core.Trace; import org.apache.htrace.core.Tracer;
import org.apache.htrace.core.TraceScope; import org.apache.htrace.core.TraceScope;
public class TracingFsShell { public class Sample extends Configured implements Tool {
public static void main(String argv[]) throws Exception { @Override
Configuration conf = new HdfsConfiguration(); public int run(String argv[]) throws Exception {
FsShell shell = new FsShell(); FileSystem fs = FileSystem.get(getConf());
conf.setQuietMode(false); Tracer tracer = new Tracer.Builder("Sample").
shell.setConf(conf); conf(TraceUtils.wrapHadoopConf("sample.htrace.", getConf())).
Tracer tracer = new Tracer.Builder("TracingFsShell").
conf(TraceUtils.wrapHadoopConf("tracing.fs.shell.htrace.", conf)).
build(); build();
int res = 0; int res = 0;
TraceScope scope = tracer.newScope("FsShell"); try (TraceScope scope = tracer.newScope("sample")) {
try { Thread.sleep(1000);
res = ToolRunner.run(shell, argv); fs.listStatus(new Path("/"));
} finally {
scope.close();
shell.close();
} }
tracer.close(); tracer.close();
System.exit(res); return res;
}
public static void main(String argv[]) throws Exception {
ToolRunner.run(new Sample(), argv);
} }
} }
``` ```
You can compile and execute this code as shown below. You can compile and execute this code as shown below.
$ javac -cp `hadoop classpath` TracingFsShell.java $ javac -cp `hadoop classpath` Sample.java
$ java -cp .:`hadoop classpath` TracingFsShell -ls / $ java -cp .:`hadoop classpath` Sample \
-Dsample.htrace.span.receiver.classes=LocalFileSpanReceiver \
-Dsample.htrace.sampler.classes=AlwaysSampler
### Starting tracing spans by FileSystem Shell
The FileSystem Shell can enable tracing by configuration properties.
Configure the span receivers and samplers in `core-site.xml` or command line
by properties `fs.client.htrace.sampler.classes` and
`fs.client.htrace.spanreceiver.classes`.
$ hdfs dfs -Dfs.shell.htrace.span.receiver.classes=LocalFileSpanReceiver \
-Dfs.shell.htrace.sampler.classes=AlwaysSampler \
-ls /
### Starting tracing spans by configuration for HDFS client ### Starting tracing spans by configuration for HDFS client