From 4992d78820a6d067768b946c9d249a6da458c059 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 9 Oct 2012 22:27:01 +0000 Subject: [PATCH] HBASE-6953 Incorrect javadoc description of HFileOutputFormat regarding multiple column families git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1396383 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/hadoop/hbase/mapreduce/HFileOutputFormat.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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