HADOOP-7048. Wrong description of Block-Compressed SequenceFile Format in SequenceFile's javadoc. Contributed by Jingguo Yao.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1069677 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
223f651118
commit
ab611ed091
|
@ -68,6 +68,9 @@ Trunk (unreleased changes)
|
|||
|
||||
HADOOP-7129. Fix typo in method name getProtocolSigature (todd)
|
||||
|
||||
HADOOP-7048. Wrong description of Block-Compressed SequenceFile Format in
|
||||
SequenceFile's javadoc. (Jingguo Yao via tomwhite)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -165,6 +165,7 @@ import org.apache.hadoop.util.PriorityQueue;
|
|||
* <li>
|
||||
* Record <i>Block</i>
|
||||
* <ul>
|
||||
* <li>Uncompressed number of records in the block</li>
|
||||
* <li>Compressed key-lengths block-size</li>
|
||||
* <li>Compressed key-lengths block</li>
|
||||
* <li>Compressed keys block-size</li>
|
||||
|
@ -176,7 +177,7 @@ import org.apache.hadoop.util.PriorityQueue;
|
|||
* </ul>
|
||||
* </li>
|
||||
* <li>
|
||||
* A sync-marker every few <code>100</code> bytes or so.
|
||||
* A sync-marker every block.
|
||||
* </li>
|
||||
* </ul>
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue