HADOOP-12457. [JDK8] Fix a failure of compiling common by javadoc. Contributed by Akira AJISAKA.

This commit is contained in:
Tsuyoshi Ozawa 2015-10-27 10:57:45 +09:00
parent 8a68630dd1
commit ea6b183a1a
4 changed files with 6 additions and 3 deletions

View File

@ -1265,6 +1265,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12513. Dockerfile lacks initial 'apt-get update'. HADOOP-12513. Dockerfile lacks initial 'apt-get update'.
(Akihiro Suda via ozawa) (Akihiro Suda via ozawa)
HADOOP-12457. [JDK8] Fix a failure of compiling common by javadoc.
(Akira AJISAKA via ozawa)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-12051. ProtobufRpcEngine.invoke() should use Exception.toString() HADOOP-12051. ProtobufRpcEngine.invoke() should use Exception.toString()

View File

@ -179,7 +179,7 @@
* <p>When <tt>conf.get("otherdir")</tt> is called, then <tt>${<i>env.BASE_DIR</i>}</tt> * <p>When <tt>conf.get("otherdir")</tt> is called, then <tt>${<i>env.BASE_DIR</i>}</tt>
* will be resolved to the value of the <tt>${<i>BASE_DIR</i>}</tt> environment variable. * will be resolved to the value of the <tt>${<i>BASE_DIR</i>}</tt> environment variable.
* It supports <tt>${<i>env.NAME:-default</i>}</tt> and <tt>${<i>env.NAME-default</i>}</tt> notations. * It supports <tt>${<i>env.NAME:-default</i>}</tt> and <tt>${<i>env.NAME-default</i>}</tt> notations.
* The former is resolved to default if <tt>${<i>NAME</i>}</tt> environment variable is undefined * The former is resolved to "default" if <tt>${<i>NAME</i>}</tt> environment variable is undefined
* or its value is empty. * or its value is empty.
* The latter behaves the same way only if <tt>${<i>NAME</i>}</tt> is undefined. * The latter behaves the same way only if <tt>${<i>NAME</i>}</tt> is undefined.
* <p>By default, warnings will be given to any deprecated configuration * <p>By default, warnings will be given to any deprecated configuration

View File

@ -65,7 +65,7 @@ public static class Rm extends FsCommand {
"-[rR]: Recursively deletes directories.\n" + "-[rR]: Recursively deletes directories.\n" +
"-skipTrash: option bypasses trash, if enabled, and immediately " + "-skipTrash: option bypasses trash, if enabled, and immediately " +
"deletes <src>.\n" + "deletes <src>.\n" +
"-safely: option requires safety confirmationif enabled, " + "-safely: option requires safety confirmation, if enabled, " +
"requires confirmation before deleting large directory with more " + "requires confirmation before deleting large directory with more " +
"than <hadoop.shell.delete.limit.num.files> files. Delay is " + "than <hadoop.shell.delete.limit.num.files> files. Delay is " +
"expected when walking over large directory recursively to count " + "expected when walking over large directory recursively to count " +

View File

@ -416,7 +416,7 @@ protected void setLogSlowRPC(boolean logSlowRPCFlag) {
* if this request took too much time relative to other requests * if this request took too much time relative to other requests
* we consider that as a slow RPC. 3 is a magic number that comes * we consider that as a slow RPC. 3 is a magic number that comes
* from 3 sigma deviation. A very simple explanation can be found * from 3 sigma deviation. A very simple explanation can be found
* by searching for 689599.7 rule. We flag an RPC as slow RPC * by searching for 68-95-99.7 rule. We flag an RPC as slow RPC
* if and only if it falls above 99.7% of requests. We start this logic * if and only if it falls above 99.7% of requests. We start this logic
* only once we have enough sample size. * only once we have enough sample size.
*/ */