MAPREDUCE-5713. InputFormat and JobConf JavaDoc Fixes (Chen He via jeagles)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1577240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e6111498f8
commit
eaf54d5a10
|
@ -19,6 +19,8 @@ Release 2.5.0 - UNRELEASED
|
|||
|
||||
MAPREDUCE-5765. Update hadoop-pipes examples README (Mit Desai via jeagles)
|
||||
|
||||
MAPREDUCE-5713. InputFormat and JobConf JavaDoc Fixes (Chen He via jeagles)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -54,7 +54,7 @@ import org.apache.hadoop.fs.FileSystem;
|
|||
* mapreduce.input.fileinputformat.split.minsize</a>.</p>
|
||||
*
|
||||
* <p>Clearly, logical splits based on input-size is insufficient for many
|
||||
* applications since record boundaries are to respected. In such cases, the
|
||||
* applications since record boundaries are to be respected. In such cases, the
|
||||
* application has to also implement a {@link RecordReader} on whom lies the
|
||||
* responsibilty to respect record-boundaries and present a record-oriented
|
||||
* view of the logical <code>InputSplit</code> to the individual task.
|
||||
|
|
|
@ -66,9 +66,10 @@ import org.apache.log4j.Level;
|
|||
* </li>
|
||||
* <li>
|
||||
* While some job parameters are straight-forward to set
|
||||
* (e.g. {@link #setNumReduceTasks(int)}), some parameters interact subtly
|
||||
* rest of the framework and/or job-configuration and is relatively more
|
||||
* complex for the user to control finely (e.g. {@link #setNumMapTasks(int)}).
|
||||
* (e.g. {@link #setNumReduceTasks(int)}), some parameters interact subtly
|
||||
* with the rest of the framework and/or job-configuration and is relatively
|
||||
* more complex for the user to control finely
|
||||
* (e.g. {@link #setNumMapTasks(int)}).
|
||||
* </li>
|
||||
* </ol></p>
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue