MAPREDUCE-4791. Javadoc for KeyValueTextInputFormat should include default separator and how to change it (Akira AJISAKA via aw)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1617980 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Allen Wittenauer 2014-08-14 15:44:54 +00:00
parent 0cac0fafc3
commit eeb8ff9688
2 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,9 @@ Release 2.6.0 - UNRELEASED
MAPREDUCE-883. harchive: Document how to unarchive (Akira AJISAKA and
Koji Noguchi via aw)
MAPREDUCE-4791. Javadoc for KeyValueTextInputFormat should include default
separator and how to change it (Akira AJISAKA via aw)
OPTIMIZATIONS
BUG FIXES

View File

@ -38,6 +38,9 @@
* Either line feed or carriage-return are used to signal end of line.
* Each line is divided into key and value parts by a separator byte. If no
* such a byte exists, the key will be the entire line and value will be empty.
* The separator byte can be specified in config file under the attribute name
* mapreduce.input.keyvaluelinerecordreader.key.value.separator. The default
* is the tab character ('\t').
*/
@InterfaceAudience.Public
@InterfaceStability.Stable