diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java index 3cbf328b876..860d9093925 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java @@ -69,11 +69,12 @@ import org.apache.hadoop.mapreduce.lib.partition.TotalOrderPartitioner; /** * 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. + *

+ * Using this class as part of a MapReduce job is best done + * using {@link #configureIncrementalLoad(Job, HTable)}. * @see KeyValueSortReducer */ @InterfaceAudience.Public