You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2008/09/20 07:05:49 UTC

[Hadoop Wiki] Trivial Update of "SequenceFile" by SethFalcon

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The following page has been changed by SethFalcon:
http://wiki.apache.org/hadoop/SequenceFile

The comment on the change is:
typo fix

------------------------------------------------------------------------------
  There are 3 different !SequenceFile formats:
   1. Uncompressed key/value records.
   2. Record compressed key/value records - only 'values' are compressed here.
-  3. Block compressed key/value records - both keys are values are collected in 'blocks' separately and compressed.The size of the 'block' is configurable.
+  3. Block compressed key/value records - both keys and values are collected in 'blocks' separately and compressed. The size of the 'block' is configurable.
  
  The recommended way is to use the SequenceFile.createWriter methods to construct the 'preferred' writer implementation.