You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2012/10/10 00:27:02 UTC

svn commit: r1396383 - /hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java

Author: stack
Date: Tue Oct  9 22:27:01 2012
New Revision: 1396383

URL: http://svn.apache.org/viewvc?rev=1396383&view=rev
Log:
HBASE-6953 Incorrect javadoc description of HFileOutputFormat regarding multiple column families

Modified:
    hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java

Modified: hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java?rev=1396383&r1=1396382&r2=1396383&view=diff
==============================================================================
--- hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java (original)
+++ hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java Tue Oct  9 22:27:01 2012
@@ -69,11 +69,12 @@ import org.apache.hadoop.mapreduce.lib.p
 
 /**
  * Writes HFiles. Passed KeyValues must arrive in order.
- * Currently, can only write files to a single column family at a
- * time.  Multiple column families requires coordinating keys cross family.
  * Writes current time as the sequence id for the file. Sets the major compacted
  * attribute on created hfiles. Calling write(null,null) will forceably roll
  * all HFiles being written.
+ * <p>
+ * Using this class as part of a MapReduce job is best done 
+ * using {@link #configureIncrementalLoad(Job, HTable)}.
  * @see KeyValueSortReducer
  */
 @InterfaceAudience.Public